Uses of Class
org.opencv.core.MatOfInt
-
Packages that use MatOfInt Package Description org.opencv.aruco org.opencv.core org.opencv.dnn org.opencv.face org.opencv.features2d org.opencv.imgcodecs org.opencv.imgproc org.opencv.objdetect org.opencv.videoio org.opencv.xfeatures2d -
-
Uses of MatOfInt in org.opencv.aruco
Methods in org.opencv.aruco that return MatOfInt Modifier and Type Method Description MatOfIntBoard. get_ids()Methods in org.opencv.aruco with parameters of type MatOfInt Modifier and Type Method Description voidBoard. set_ids(MatOfInt ids) -
Uses of MatOfInt in org.opencv.core
Methods in org.opencv.core that return MatOfInt Modifier and Type Method Description static MatOfIntMatOfInt. fromNativeAddr(long addr)Methods in org.opencv.core with parameters of type MatOfInt Modifier and Type Method Description static voidCore. mixChannels(List<Mat> src, List<Mat> dst, MatOfInt fromTo) -
Uses of MatOfInt in org.opencv.dnn
Methods in org.opencv.dnn that return MatOfInt Modifier and Type Method Description MatOfIntNet. getUnconnectedOutLayers()Returns indexes of layers with unconnected outputs.Methods in org.opencv.dnn with parameters of type MatOfInt 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.longNet. getFLOPS(int layerId, MatOfInt netInputShape)longNet. getFLOPS(MatOfInt netInputShape)voidNet. getMemoryConsumption(int layerId, MatOfInt netInputShape, long[] weights, long[] blobs)voidNet. getMemoryConsumption(MatOfInt netInputShape, long[] weights, long[] blobs)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)voidNet. setInputShape(String inputName, MatOfInt shape)Specify shape of network input.Method parameters in org.opencv.dnn with type arguments of type MatOfInt Modifier and Type Method Description longNet. getFLOPS(int layerId, List<MatOfInt> netInputShapes)longNet. getFLOPS(List<MatOfInt> netInputShapes)Computes FLOP for whole loaded model with specified input shapes.voidNet. getMemoryConsumption(int layerId, List<MatOfInt> netInputShapes, long[] weights, long[] blobs) -
Uses of MatOfInt in org.opencv.face
Methods in org.opencv.face that return MatOfInt Modifier and Type Method Description MatOfIntFaceRecognizer. getLabelsByString(String str)Gets vector of labels by string. -
Uses of MatOfInt in org.opencv.features2d
Methods in org.opencv.features2d with parameters of type MatOfInt 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 pattern -
Uses of MatOfInt in org.opencv.imgcodecs
Methods in org.opencv.imgcodecs with parameters of type MatOfInt Modifier and Type Method Description static booleanImgcodecs. imencode(String ext, Mat img, MatOfByte buf, MatOfInt params)Encodes an image into a memory buffer.static booleanImgcodecs. imwrite(String filename, Mat img, MatOfInt params)Saves an image to a specified file.static booleanImgcodecs. imwritemulti(String filename, List<Mat> img, MatOfInt params) -
Uses of MatOfInt in org.opencv.imgproc
Methods in org.opencv.imgproc with parameters of type MatOfInt 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)static voidImgproc. convexHull(MatOfPoint points, MatOfInt hull)Finds the convex hull of a point set.static voidImgproc. convexHull(MatOfPoint points, MatOfInt hull, boolean clockwise)Finds the convex hull of a point set.static voidImgproc. convexityDefects(MatOfPoint contour, MatOfInt convexhull, MatOfInt4 convexityDefects)Finds the convexity defects of a contour.voidSubdiv2D. getLeadingEdgeList(MatOfInt leadingEdgeList)Returns a list of the leading edge ID connected to each triangle.voidSubdiv2D. getVoronoiFacetList(MatOfInt idx, List<MatOfPoint2f> facetList, MatOfPoint2f facetCenters)Returns a list of all Voronoi facets. -
Uses of MatOfInt in org.opencv.objdetect
Methods in org.opencv.objdetect with parameters of type MatOfInt Modifier and Type Method Description voidCascadeClassifier. detectMultiScale2(Mat image, MatOfRect objects, MatOfInt numDetections)voidCascadeClassifier. detectMultiScale2(Mat image, MatOfRect objects, MatOfInt numDetections, double scaleFactor)voidCascadeClassifier. detectMultiScale2(Mat image, MatOfRect objects, MatOfInt numDetections, double scaleFactor, int minNeighbors)voidCascadeClassifier. detectMultiScale2(Mat image, MatOfRect objects, MatOfInt numDetections, double scaleFactor, int minNeighbors, int flags)voidCascadeClassifier. detectMultiScale2(Mat image, MatOfRect objects, MatOfInt numDetections, double scaleFactor, int minNeighbors, int flags, Size minSize)voidCascadeClassifier. detectMultiScale2(Mat image, MatOfRect objects, MatOfInt numDetections, double scaleFactor, int minNeighbors, int flags, Size minSize, Size maxSize)voidCascadeClassifier. detectMultiScale3(Mat image, MatOfRect objects, MatOfInt rejectLevels, MatOfDouble levelWeights)This function allows you to retrieve the final stage decision certainty of classification.voidCascadeClassifier. detectMultiScale3(Mat image, MatOfRect objects, MatOfInt rejectLevels, MatOfDouble levelWeights, double scaleFactor)This function allows you to retrieve the final stage decision certainty of classification.voidCascadeClassifier. detectMultiScale3(Mat image, MatOfRect objects, MatOfInt rejectLevels, MatOfDouble levelWeights, double scaleFactor, int minNeighbors)This function allows you to retrieve the final stage decision certainty of classification.voidCascadeClassifier. detectMultiScale3(Mat image, MatOfRect objects, MatOfInt rejectLevels, MatOfDouble levelWeights, double scaleFactor, int minNeighbors, int flags)This function allows you to retrieve the final stage decision certainty of classification.voidCascadeClassifier. detectMultiScale3(Mat image, MatOfRect objects, MatOfInt rejectLevels, MatOfDouble levelWeights, double scaleFactor, int minNeighbors, int flags, Size minSize)This function allows you to retrieve the final stage decision certainty of classification.voidCascadeClassifier. detectMultiScale3(Mat image, MatOfRect objects, MatOfInt rejectLevels, MatOfDouble levelWeights, double scaleFactor, int minNeighbors, int flags, Size minSize, Size maxSize)This function allows you to retrieve the final stage decision certainty of classification.voidCascadeClassifier. detectMultiScale3(Mat image, MatOfRect objects, MatOfInt rejectLevels, MatOfDouble levelWeights, double scaleFactor, int minNeighbors, int flags, Size minSize, Size maxSize, boolean outputRejectLevels)This function allows you to retrieve the final stage decision certainty of classification.static voidObjdetect. groupRectangles(MatOfRect rectList, MatOfInt weights, int groupThreshold)static voidObjdetect. groupRectangles(MatOfRect rectList, MatOfInt weights, int groupThreshold, double eps) -
Uses of MatOfInt in org.opencv.videoio
Methods in org.opencv.videoio with parameters of type MatOfInt Modifier and Type Method Description booleanVideoCapture. open(int index, int apiPreference, MatOfInt params)Returns true if video capturing has been initialized already.booleanVideoCapture. open(String filename, int apiPreference, MatOfInt params)Opens a camera for video capturing Theparamsparameter allows to specify extra parameters encoded as pairs(paramId_1, paramValue_1, paramId_2, paramValue_2, ...).booleanVideoWriter. open(String filename, int fourcc, double fps, Size frameSize, MatOfInt params)booleanVideoWriter. open(String filename, int apiPreference, int fourcc, double fps, Size frameSize, MatOfInt params)Constructors in org.opencv.videoio with parameters of type MatOfInt Constructor Description VideoCapture(int index, int apiPreference, MatOfInt params)Opens a camera for video capturing with API Preference and parameters Theparamsparameter allows to specify extra parameters encoded as pairs(paramId_1, paramValue_1, paramId_2, paramValue_2, ...).VideoCapture(String filename, int apiPreference, MatOfInt params)Opens a video file or a capturing device or an IP video stream for video capturing with API Preference and parameters Theparamsparameter allows to specify extra parameters encoded as pairs(paramId_1, paramValue_1, paramId_2, paramValue_2, ...).VideoWriter(String filename, int fourcc, double fps, Size frameSize, MatOfInt params)Theparamsparameter allows to specify extra encoder parameters encoded as pairs (paramId_1, paramValue_1, paramId_2, paramValue_2, ...VideoWriter(String filename, int apiPreference, int fourcc, double fps, Size frameSize, MatOfInt params) -
Uses of MatOfInt in org.opencv.xfeatures2d
Methods in org.opencv.xfeatures2d that return MatOfInt Modifier and Type Method Description MatOfIntPCTSignatures. getInitSeedIndexes()Initial seeds (initial number of clusters) for the k-means algorithm.Methods in org.opencv.xfeatures2d with parameters of type MatOfInt Modifier and Type Method Description static FREAKFREAK. create(boolean orientationNormalized, boolean scaleNormalized, float patternScale, int nOctaves, MatOfInt selectedPairs)static PCTSignaturesPCTSignatures. create(MatOfPoint2f initSamplingPoints, MatOfInt initClusterSeedIndexes)Creates PCTSignatures algorithm using pre-generated sampling points and clusterization seeds indexes.static voidXfeatures2d. matchLOGOS(MatOfKeyPoint keypoints1, MatOfKeyPoint keypoints2, MatOfInt nn1, MatOfInt nn2, MatOfDMatch matches1to2)LOGOS (Local geometric support for high-outlier spatial verification) feature matching strategy described in CITE: Lowry2018LOGOSLG .voidPCTSignatures. setInitSeedIndexes(MatOfInt initSeedIndexes)Initial seed indexes for the k-means algorithm.
-