Uses of Class
org.opencv.core.MatOfDMatch
-
Packages that use MatOfDMatch Package Description org.opencv.core org.opencv.features2d org.opencv.utils org.opencv.xfeatures2d -
-
Uses of MatOfDMatch in org.opencv.core
Methods in org.opencv.core that return MatOfDMatch Modifier and Type Method Description static MatOfDMatchMatOfDMatch. fromNativeAddr(long addr) -
Uses of MatOfDMatch in org.opencv.features2d
Methods in org.opencv.features2d with parameters of type MatOfDMatch Modifier and Type Method Description static voidFeatures2d. drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg)Draws the found matches of keypoints from two images.static voidFeatures2d. drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg, int matchesThickness)static voidFeatures2d. drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg, int matchesThickness, Scalar matchColor)static voidFeatures2d. drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg, int matchesThickness, Scalar matchColor, Scalar singlePointColor)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)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)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)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.voidDescriptorMatcher. match(Mat queryDescriptors, MatOfDMatch matches)voidDescriptorMatcher. match(Mat queryDescriptors, MatOfDMatch matches, List<Mat> masks)voidDescriptorMatcher. match(Mat queryDescriptors, Mat trainDescriptors, MatOfDMatch matches)Finds the best match for each descriptor from a query set.voidDescriptorMatcher. match(Mat queryDescriptors, Mat trainDescriptors, MatOfDMatch matches, Mat mask)Finds the best match for each descriptor from a query set.Method parameters in org.opencv.features2d with type arguments of type MatOfDMatch Modifier and Type Method Description static voidFeatures2d. drawMatchesKnn(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List<MatOfDMatch> matches1to2, Mat outImg)static voidFeatures2d. drawMatchesKnn(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List<MatOfDMatch> matches1to2, Mat outImg, Scalar matchColor)static voidFeatures2d. drawMatchesKnn(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List<MatOfDMatch> matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor)static voidFeatures2d. drawMatchesKnn(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List<MatOfDMatch> matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor, List<MatOfByte> matchesMask)static voidFeatures2d. drawMatchesKnn(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List<MatOfDMatch> matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor, List<MatOfByte> matchesMask, int flags)voidDescriptorMatcher. knnMatch(Mat queryDescriptors, List<MatOfDMatch> matches, int k)voidDescriptorMatcher. knnMatch(Mat queryDescriptors, List<MatOfDMatch> matches, int k, List<Mat> masks)voidDescriptorMatcher. knnMatch(Mat queryDescriptors, List<MatOfDMatch> matches, int k, List<Mat> masks, boolean compactResult)voidDescriptorMatcher. knnMatch(Mat queryDescriptors, Mat trainDescriptors, List<MatOfDMatch> matches, int k)Finds the k best matches for each descriptor from a query set.voidDescriptorMatcher. knnMatch(Mat queryDescriptors, Mat trainDescriptors, List<MatOfDMatch> matches, int k, Mat mask)Finds the k best matches for each descriptor from a query set.voidDescriptorMatcher. knnMatch(Mat queryDescriptors, Mat trainDescriptors, List<MatOfDMatch> matches, int k, Mat mask, boolean compactResult)Finds the k best matches for each descriptor from a query set.voidDescriptorMatcher. radiusMatch(Mat queryDescriptors, List<MatOfDMatch> matches, float maxDistance)voidDescriptorMatcher. radiusMatch(Mat queryDescriptors, List<MatOfDMatch> matches, float maxDistance, List<Mat> masks)voidDescriptorMatcher. radiusMatch(Mat queryDescriptors, List<MatOfDMatch> matches, float maxDistance, List<Mat> masks, boolean compactResult)voidDescriptorMatcher. radiusMatch(Mat queryDescriptors, Mat trainDescriptors, List<MatOfDMatch> matches, float maxDistance)For each query descriptor, finds the training descriptors not farther than the specified distance.voidDescriptorMatcher. radiusMatch(Mat queryDescriptors, Mat trainDescriptors, List<MatOfDMatch> matches, float maxDistance, Mat mask)For each query descriptor, finds the training descriptors not farther than the specified distance.voidDescriptorMatcher. radiusMatch(Mat queryDescriptors, Mat trainDescriptors, List<MatOfDMatch> matches, float maxDistance, Mat mask, boolean compactResult)For each query descriptor, finds the training descriptors not farther than the specified distance. -
Uses of MatOfDMatch in org.opencv.utils
Method parameters in org.opencv.utils with type arguments of type MatOfDMatch Modifier and Type Method Description static voidConverters. Mat_to_vector_vector_DMatch(Mat m, List<MatOfDMatch> lvdm)static MatConverters. vector_vector_DMatch_to_Mat(List<MatOfDMatch> lvdm, List<Mat> mats) -
Uses of MatOfDMatch in org.opencv.xfeatures2d
Methods in org.opencv.xfeatures2d with parameters of type MatOfDMatch Modifier and Type Method Description static voidXfeatures2d. matchGMS(Size size1, Size size2, MatOfKeyPoint keypoints1, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, MatOfDMatch matchesGMS)GMS (Grid-based Motion Statistics) feature matching strategy described in CITE: Bian2017gms .static voidXfeatures2d. matchGMS(Size size1, Size size2, MatOfKeyPoint keypoints1, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, MatOfDMatch matchesGMS, boolean withRotation)GMS (Grid-based Motion Statistics) feature matching strategy described in CITE: Bian2017gms .static voidXfeatures2d. matchGMS(Size size1, Size size2, MatOfKeyPoint keypoints1, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, MatOfDMatch matchesGMS, boolean withRotation, boolean withScale)GMS (Grid-based Motion Statistics) feature matching strategy described in CITE: Bian2017gms .static voidXfeatures2d. matchGMS(Size size1, Size size2, MatOfKeyPoint keypoints1, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, MatOfDMatch matchesGMS, boolean withRotation, boolean withScale, double thresholdFactor)GMS (Grid-based Motion Statistics) feature matching strategy described in CITE: Bian2017gms .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 .
-