MATLAB File Help: cv.DescriptorMatcher/match Index
cv.DescriptorMatcher/match

Finds the best match for each descriptor from a query set

matches = matcher.match(queryDescriptors, trainDescriptors)
matches = matcher.match(queryDescriptors)
[...] = matcher.match(..., 'OptionName', optionValue, ...)

Input

Output

Options

In the first variant of this method, the train descriptors are passed as an input argument. In the second variant of the method, train descriptors collection that was set by cv.DescriptorMatcher.add() is used. Optional mask (or masks) can be passed to specify which query and training descriptors can be matched. Namely, queryDescriptors(i,:) can be matched with trainDescriptors(j,:) only if mask(i,j) is non-zero.

See also
Method Details
Access public
Sealed false
Static false