Interface PlanarImage

All Superinterfaces:
AutoCloseable, ImageSize
All Known Implementing Classes:
ImageCV

public interface PlanarImage extends ImageSize, AutoCloseable
Since:
Java 17+
Author:
Kimi Liu
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    assignTo(org.opencv.core.Mat dstImg)
     
    int
     
    void
     
    int
     
    int
     
    long
     
    long
     
    double[]
    get(int row, int column)
     
    int
    get(int i, int j, byte[] pixelData)
     
    int
    get(int i, int j, double[] data)
     
    int
    get(int i, int j, float[] data)
     
    int
    get(int i, int j, int[] data)
     
    int
    get(int i, int j, short[] data)
     
    int
     
    void
     
    org.opencv.core.Size
     
     
    org.opencv.core.Mat
     
    int
     
    int
     

    Methods inherited from interface org.aoju.bus.image.nimble.opencv.ImageSize

    physicalBytes
  • Method Details

    • channels

      int channels()
    • dims

      int dims()
    • depth

      int depth()
    • elemSize

      long elemSize()
    • elemSize1

      long elemSize1()
    • release

      void release()
    • size

      org.opencv.core.Size size()
    • type

      int type()
    • height

      int height()
    • width

      int width()
    • get

      double[] get(int row, int column)
    • get

      int get(int i, int j, byte[] pixelData)
    • get

      int get(int i, int j, short[] data)
    • get

      int get(int i, int j, int[] data)
    • get

      int get(int i, int j, float[] data)
    • get

      int get(int i, int j, double[] data)
    • assignTo

      void assignTo(org.opencv.core.Mat dstImg)
    • toMat

      org.opencv.core.Mat toMat()
    • toImageCV

      ImageCV toImageCV()
    • close

      void close()
      Specified by:
      close in interface AutoCloseable