Answers for "cv::Dmatch use"

0

cv::Dmatch use

1

cv::DMatch is the class that holds the results of a matcher.
Given a bunch of training descriptors and another bunch of query descriptors, DMatch tells you what the best match was for each query descriptor.

For each found match, DMatch will tell you the: query descriptor index, the train descriptor index, train image index (each image generates multiple training descriptors), and distance between these query and training descriptors.

See this example for more detailed usage.
Posted by: Guest on August-02-2020

Browse Popular Code Answers by Language