可以将BFMatcher用于自创建描述符

时间:2012-06-07 07:41:35

标签: opencv

来自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()时会出现异常。

感谢

0 个答案:

没有答案