OpenCV 2.2.0 中的旧 BruteForceMatcher 可用于自创描述符。OpenCV2.4.1 的 BFMatcher 是否支持任何维度描述符?
BFMatcher descriptorMatcher12(NORM_L1), descriptorMatcher21(NORM_L1);
vector<DMatch> matches12, matches21;
descriptorMatcher12.match(feature1, feature2, matches12);
descriptorMatcher21.match(feature2, feature1, matches21);
执行时出现异常descriptorMatcher12.match()
。
谢谢