Speeded up BruteForceMatcher using matrix multiplication

This commit is contained in:
Ilya Lysenkov
2010-06-30 14:37:42 +00:00
parent 2f4d396506
commit 0154b18a3d
2 changed files with 48 additions and 0 deletions

View File

@@ -1872,6 +1872,9 @@ void BruteForceMatcher<Distance>::matchImpl( const Mat& descriptors_1, const Mat
}
}
template<>
void BruteForceMatcher<L2<float> >::matchImpl( const Mat& descriptors_1, const Mat& descriptors_2,
const Mat& mask, vector<int>& matches ) const;
CV_EXPORTS DescriptorMatcher* createDescriptorMatcher( const string& descriptorMatcherType );