Class ImageCV

java.lang.Object
org.opencv.core.Mat
org.aoju.bus.image.nimble.opencv.ImageCV
All Implemented Interfaces:
AutoCloseable, ImageSize, PlanarImage

public class ImageCV extends org.opencv.core.Mat implements PlanarImage
Since:
Java 17+
Author:
Kimi Liu
  • Nested Class Summary

    Nested classes/interfaces inherited from class org.opencv.core.Mat

    org.opencv.core.Mat.Atable<T>, org.opencv.core.Mat.Tuple2<T>, org.opencv.core.Mat.Tuple3<T>, org.opencv.core.Mat.Tuple4<T>
  • Field Summary

    Fields inherited from class org.opencv.core.Mat

    nativeObj
  • Constructor Summary

    Constructors
    Constructor
    Description
     
    ImageCV(int rows, int cols, int type)
     
    ImageCV(int rows, int cols, int type, org.opencv.core.Scalar s)
     
    ImageCV(org.opencv.core.Mat m, org.opencv.core.Range rowRange)
     
    ImageCV(org.opencv.core.Mat m, org.opencv.core.Range rowRange, org.opencv.core.Range colRange)
     
    ImageCV(org.opencv.core.Mat m, org.opencv.core.Rect roi)
     
    ImageCV(org.opencv.core.Size size, int type)
     
    ImageCV(org.opencv.core.Size size, int type, org.opencv.core.Scalar s)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    long
     
     
    static ImageCV
    toImageCV(org.opencv.core.Mat source)
     
    org.opencv.core.Mat
     
    static org.opencv.core.Mat
     

    Methods inherited from class org.opencv.core.Mat

    adjustROI, assignTo, assignTo, at, at, channels, checkVector, checkVector, checkVector, clone, col, colRange, colRange, cols, convertTo, convertTo, convertTo, copySize, copyTo, copyTo, create, create, create, cross, dataAddr, depth, diag, diag, diag, dims, dot, dump, elemSize, elemSize1, empty, eye, eye, finalize, get, get, get, get, get, get, get, get, get, get, get, get, getNativeObjAddr, height, inv, inv, isContinuous, isSubmatrix, locateROI, matMul, mul, mul, ones, ones, ones, push_back, put, put, put, put, put, put, put, put, put, put, put, put, release, reshape, reshape, reshape, row, rowRange, rowRange, rows, setTo, setTo, setTo, setTo, size, size, step1, step1, submat, submat, submat, submat, t, toString, total, type, width, zeros, zeros, zeros

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, wait, wait, wait

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

    assignTo, channels, depth, dims, elemSize, elemSize1, get, get, get, get, get, get, height, release, size, type, width
  • Constructor Details

    • ImageCV

      public ImageCV()
    • ImageCV

      public ImageCV(int rows, int cols, int type)
    • ImageCV

      public ImageCV(org.opencv.core.Size size, int type, org.opencv.core.Scalar s)
    • ImageCV

      public ImageCV(int rows, int cols, int type, org.opencv.core.Scalar s)
    • ImageCV

      public ImageCV(org.opencv.core.Mat m, org.opencv.core.Range rowRange, org.opencv.core.Range colRange)
    • ImageCV

      public ImageCV(org.opencv.core.Mat m, org.opencv.core.Range rowRange)
    • ImageCV

      public ImageCV(org.opencv.core.Mat m, org.opencv.core.Rect roi)
    • ImageCV

      public ImageCV(org.opencv.core.Size size, int type)
  • Method Details