Uses of Class
org.opencv.core.MatOfFloat
-
Packages that use MatOfFloat Package Description org.opencv.core org.opencv.dnn org.opencv.features2d org.opencv.imgproc org.opencv.objdetect org.opencv.photo org.opencv.text org.opencv.video org.opencv.xfeatures2d -
-
Uses of MatOfFloat in org.opencv.core
Methods in org.opencv.core that return MatOfFloat Modifier and Type Method Description static MatOfFloatMatOfFloat. fromNativeAddr(long addr) -
Uses of MatOfFloat in org.opencv.dnn
Methods in org.opencv.dnn with parameters of type MatOfFloat Modifier and Type Method Description voidDetectionModel. detect(Mat frame, MatOfInt classIds, MatOfFloat confidences, MatOfRect boxes)Given theinputframe, create input blob, run net and return result detections.voidDetectionModel. detect(Mat frame, MatOfInt classIds, MatOfFloat confidences, MatOfRect boxes, float confThreshold)Given theinputframe, create input blob, run net and return result detections.voidDetectionModel. detect(Mat frame, MatOfInt classIds, MatOfFloat confidences, MatOfRect boxes, float confThreshold, float nmsThreshold)Given theinputframe, create input blob, run net and return result detections.voidTextDetectionModel. detect(Mat frame, List<MatOfPoint> detections, MatOfFloat confidences)Performs detection Given the inputframe, prepare network input, run network inference, post-process network output and return result detections.voidTextDetectionModel. detectTextRectangles(Mat frame, MatOfRotatedRect detections, MatOfFloat confidences)Performs detection Given the inputframe, prepare network input, run network inference, post-process network output and return result detections.static voidDnn. NMSBoxes(MatOfRect2d bboxes, MatOfFloat scores, float score_threshold, float nms_threshold, MatOfInt indices)Performs non maximum suppression given boxes and corresponding scores.static voidDnn. NMSBoxes(MatOfRect2d bboxes, MatOfFloat scores, float score_threshold, float nms_threshold, MatOfInt indices, float eta)Performs non maximum suppression given boxes and corresponding scores.static voidDnn. NMSBoxes(MatOfRect2d bboxes, MatOfFloat scores, float score_threshold, float nms_threshold, MatOfInt indices, float eta, int top_k)Performs non maximum suppression given boxes and corresponding scores.static voidDnn. NMSBoxesRotated(MatOfRotatedRect bboxes, MatOfFloat scores, float score_threshold, float nms_threshold, MatOfInt indices)static voidDnn. NMSBoxesRotated(MatOfRotatedRect bboxes, MatOfFloat scores, float score_threshold, float nms_threshold, MatOfInt indices, float eta)static voidDnn. NMSBoxesRotated(MatOfRotatedRect bboxes, MatOfFloat scores, float score_threshold, float nms_threshold, MatOfInt indices, float eta, int top_k) -
Uses of MatOfFloat in org.opencv.features2d
Methods in org.opencv.features2d with parameters of type MatOfFloat Modifier and Type Method Description static BRISKBRISK. create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList)The BRISK constructor for a custom pattern, detection threshold and octavesstatic BRISKBRISK. create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax)The BRISK constructor for a custom pattern, detection threshold and octavesstatic BRISKBRISK. create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin)The BRISK constructor for a custom pattern, detection threshold and octavesstatic BRISKBRISK. create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin, MatOfInt indexChange)The BRISK constructor for a custom pattern, detection threshold and octavesstatic BRISKBRISK. create(MatOfFloat radiusList, MatOfInt numberList)The BRISK constructor for a custom patternstatic BRISKBRISK. create(MatOfFloat radiusList, MatOfInt numberList, float dMax)The BRISK constructor for a custom patternstatic BRISKBRISK. create(MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin)The BRISK constructor for a custom patternstatic BRISKBRISK. create(MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin, MatOfInt indexChange)The BRISK constructor for a custom patternvoidAffineFeature. getViewParams(MatOfFloat tilts, MatOfFloat rolls)voidAffineFeature. setViewParams(MatOfFloat tilts, MatOfFloat rolls) -
Uses of MatOfFloat in org.opencv.imgproc
Methods in org.opencv.imgproc with parameters of type MatOfFloat Modifier and Type Method Description static voidImgproc. calcBackProject(List<Mat> images, MatOfInt channels, Mat hist, Mat dst, MatOfFloat ranges, double scale)static voidImgproc. calcHist(List<Mat> images, MatOfInt channels, Mat mask, Mat hist, MatOfInt histSize, MatOfFloat ranges)static voidImgproc. calcHist(List<Mat> images, MatOfInt channels, Mat mask, Mat hist, MatOfInt histSize, MatOfFloat ranges, boolean accumulate) -
Uses of MatOfFloat in org.opencv.objdetect
Methods in org.opencv.objdetect that return MatOfFloat Modifier and Type Method Description MatOfFloatHOGDescriptor. get_svmDetector()static MatOfFloatHOGDescriptor. getDaimlerPeopleDetector()Returns coefficients of the classifier trained for people detection (for 48x96 windows).static MatOfFloatHOGDescriptor. getDefaultPeopleDetector()Returns coefficients of the classifier trained for people detection (for 64x128 windows).Methods in org.opencv.objdetect with parameters of type MatOfFloat Modifier and Type Method Description voidHOGDescriptor. compute(Mat img, MatOfFloat descriptors)Computes HOG descriptors of given image.voidHOGDescriptor. compute(Mat img, MatOfFloat descriptors, Size winStride)Computes HOG descriptors of given image.voidHOGDescriptor. compute(Mat img, MatOfFloat descriptors, Size winStride, Size padding)Computes HOG descriptors of given image.voidHOGDescriptor. compute(Mat img, MatOfFloat descriptors, Size winStride, Size padding, MatOfPoint locations)Computes HOG descriptors of given image. -
Uses of MatOfFloat in org.opencv.photo
Methods in org.opencv.photo with parameters of type MatOfFloat Modifier and Type Method Description static voidPhoto. fastNlMeansDenoising(Mat src, Mat dst, MatOfFloat h)Perform image denoising using Non-local Means Denoising algorithm <http://www.ipol.im/pub/algo/bcm_non_local_means_denoising/> with several computational optimizations.static voidPhoto. fastNlMeansDenoising(Mat src, Mat dst, MatOfFloat h, int templateWindowSize)Perform image denoising using Non-local Means Denoising algorithm <http://www.ipol.im/pub/algo/bcm_non_local_means_denoising/> with several computational optimizations.static voidPhoto. fastNlMeansDenoising(Mat src, Mat dst, MatOfFloat h, int templateWindowSize, int searchWindowSize)Perform image denoising using Non-local Means Denoising algorithm <http://www.ipol.im/pub/algo/bcm_non_local_means_denoising/> with several computational optimizations.static voidPhoto. fastNlMeansDenoising(Mat src, Mat dst, MatOfFloat h, int templateWindowSize, int searchWindowSize, int normType)Perform image denoising using Non-local Means Denoising algorithm <http://www.ipol.im/pub/algo/bcm_non_local_means_denoising/> with several computational optimizations.static voidPhoto. fastNlMeansDenoisingMulti(List<Mat> srcImgs, Mat dst, int imgToDenoiseIndex, int temporalWindowSize, MatOfFloat h)Modification of fastNlMeansDenoising function for images sequence where consecutive images have been captured in small period of time.static voidPhoto. fastNlMeansDenoisingMulti(List<Mat> srcImgs, Mat dst, int imgToDenoiseIndex, int temporalWindowSize, MatOfFloat h, int templateWindowSize)Modification of fastNlMeansDenoising function for images sequence where consecutive images have been captured in small period of time.static voidPhoto. fastNlMeansDenoisingMulti(List<Mat> srcImgs, Mat dst, int imgToDenoiseIndex, int temporalWindowSize, MatOfFloat h, int templateWindowSize, int searchWindowSize)Modification of fastNlMeansDenoising function for images sequence where consecutive images have been captured in small period of time.static voidPhoto. fastNlMeansDenoisingMulti(List<Mat> srcImgs, Mat dst, int imgToDenoiseIndex, int temporalWindowSize, MatOfFloat h, int templateWindowSize, int searchWindowSize, int normType)Modification of fastNlMeansDenoising function for images sequence where consecutive images have been captured in small period of time. -
Uses of MatOfFloat in org.opencv.text
Methods in org.opencv.text with parameters of type MatOfFloat Modifier and Type Method Description voidTextDetector. detect(Mat inputImage, MatOfRect Bbox, MatOfFloat confidence)Method that provides a quick and simple interface to detect text inside an imagevoidTextDetectorCNN. detect(Mat inputImage, MatOfRect Bbox, MatOfFloat confidence) -
Uses of MatOfFloat in org.opencv.video
Methods in org.opencv.video with parameters of type MatOfFloat 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. -
Uses of MatOfFloat in org.opencv.xfeatures2d
Methods in org.opencv.xfeatures2d with parameters of type MatOfFloat Modifier and Type Method Description voidPCTSignaturesSQFD. computeQuadraticFormDistances(Mat sourceSignature, List<Mat> imageSignatures, MatOfFloat distances)Computes Signature Quadratic Form Distance between the reference signature and each of the other image signatures.voidPCTSignatures. setTranslations(MatOfFloat translations)Translations of the individual axes of the feature space.voidPCTSignatures. setWeights(MatOfFloat weights)Weights (multiplicative constants) that linearly stretch individual axes of the feature space.
-