Uses of Class
org.opencv.core.MatOfByte
-
Packages that use MatOfByte Package Description org.opencv.core org.opencv.dnn org.opencv.features2d org.opencv.imgcodecs org.opencv.utils org.opencv.video -
-
Uses of MatOfByte in org.opencv.core
Methods in org.opencv.core that return MatOfByte Modifier and Type Method Description static MatOfByteMatOfByte. fromNativeAddr(long addr) -
Uses of MatOfByte in org.opencv.dnn
Methods in org.opencv.dnn with parameters of type MatOfByte Modifier and Type Method Description static NetNet. readFromModelOptimizer(MatOfByte bufferModelConfig, MatOfByte bufferWeights)Create a network from Intel's Model Optimizer in-memory buffers with intermediate representation (IR).static NetDnn. readNet(String framework, MatOfByte bufferModel)Read deep learning network represented in one of the supported formats.static NetDnn. readNet(String framework, MatOfByte bufferModel, MatOfByte bufferConfig)Read deep learning network represented in one of the supported formats.static NetDnn. readNetFromCaffe(MatOfByte bufferProto)Reads a network model stored in Caffe model in memory.static NetDnn. readNetFromCaffe(MatOfByte bufferProto, MatOfByte bufferModel)Reads a network model stored in Caffe model in memory.static NetDnn. readNetFromDarknet(MatOfByte bufferCfg)Reads a network model stored in <a href="https://pjreddie.com/darknet/">Darknet</a> model files.static NetDnn. readNetFromDarknet(MatOfByte bufferCfg, MatOfByte bufferModel)Reads a network model stored in <a href="https://pjreddie.com/darknet/">Darknet</a> model files.static NetDnn. readNetFromModelOptimizer(MatOfByte bufferModelConfig, MatOfByte bufferWeights)Load a network from Intel's Model Optimizer intermediate representation.static NetDnn. readNetFromONNX(MatOfByte buffer)Reads a network model from <a href="https://onnx.ai/">ONNX</a> in-memory buffer.static NetDnn. readNetFromTensorflow(MatOfByte bufferModel)Reads a network model stored in <a href="https://www.tensorflow.org/">TensorFlow</a> framework's format.static NetDnn. readNetFromTensorflow(MatOfByte bufferModel, MatOfByte bufferConfig)Reads a network model stored in <a href="https://www.tensorflow.org/">TensorFlow</a> framework's format. -
Uses of MatOfByte in org.opencv.features2d
Methods in org.opencv.features2d with parameters of type MatOfByte Modifier and Type Method Description static voidFeatures2d. drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg, int matchesThickness, Scalar matchColor, Scalar singlePointColor, MatOfByte matchesMask)static voidFeatures2d. drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg, int matchesThickness, Scalar matchColor, Scalar singlePointColor, MatOfByte matchesMask, int flags)static voidFeatures2d. drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor, MatOfByte matchesMask)Draws the found matches of keypoints from two images.static voidFeatures2d. drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor, MatOfByte matchesMask, int flags)Draws the found matches of keypoints from two images. -
Uses of MatOfByte in org.opencv.imgcodecs
Methods in org.opencv.imgcodecs with parameters of type MatOfByte Modifier and Type Method Description static booleanImgcodecs. imencode(String ext, Mat img, MatOfByte buf)Encodes an image into a memory buffer.static booleanImgcodecs. imencode(String ext, Mat img, MatOfByte buf, MatOfInt params)Encodes an image into a memory buffer. -
Uses of MatOfByte in org.opencv.utils
Method parameters in org.opencv.utils with type arguments of type MatOfByte Modifier and Type Method Description static MatConverters. vector_vector_char_to_Mat(List<MatOfByte> lvb, List<Mat> mats) -
Uses of MatOfByte in org.opencv.video
Methods in org.opencv.video with parameters of type MatOfByte Modifier and Type Method Description static voidVideo. calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err)Calculates an optical flow for a sparse feature set using the iterative Lucas-Kanade method with pyramids.static voidVideo. calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err, Size winSize)Calculates an optical flow for a sparse feature set using the iterative Lucas-Kanade method with pyramids.static voidVideo. calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err, Size winSize, int maxLevel)Calculates an optical flow for a sparse feature set using the iterative Lucas-Kanade method with pyramids.static voidVideo. calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err, Size winSize, int maxLevel, TermCriteria criteria)Calculates an optical flow for a sparse feature set using the iterative Lucas-Kanade method with pyramids.static voidVideo. calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err, Size winSize, int maxLevel, TermCriteria criteria, int flags)Calculates an optical flow for a sparse feature set using the iterative Lucas-Kanade method with pyramids.static voidVideo. calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err, Size winSize, int maxLevel, TermCriteria criteria, int flags, double minEigThreshold)Calculates an optical flow for a sparse feature set using the iterative Lucas-Kanade method with pyramids.
-