MATLAB File Help: cv.evaluateFeatureDetector Index
cv.evaluateFeatureDetector

Evaluates a feature detector

[repeatability, correspCount] = cv.evaluateFeatureDetector(img1, img2, H1to2, keypoints1, keypoints2)
[...] = cv.evaluateFeatureDetector(..., 'OptionName',optionValue, ...)

Input

Output

Options

Example:

detector = cv.FeatureDetector('SURF');
kp1 = detector.detect(img1)
kp2 = detector.detect(img2)
[rep,corresp] = cv.evaluateFeatureDetector(img1, img2, H1to2, kp1, kp2)
See also