Package org.aoju.bus.image.nimble.opencv
Interface PlanarImage
- All Superinterfaces:
AutoCloseable,ImageSize
- All Known Implementing Classes:
ImageCV
- Since:
- Java 17+
- Author:
- Kimi Liu
-
Method Summary
Modifier and TypeMethodDescriptionvoidassignTo(org.opencv.core.Mat dstImg) intchannels()voidclose()intdepth()intdims()longelemSize()longdouble[]get(int row, int column) intget(int i, int j, byte[] pixelData) intget(int i, int j, double[] data) intget(int i, int j, float[] data) intget(int i, int j, int[] data) intget(int i, int j, short[] data) intheight()voidrelease()org.opencv.core.Sizesize()org.opencv.core.MattoMat()inttype()intwidth()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:
closein interfaceAutoCloseable
-