merged regression tests for FeatureDetector, DescriptorExtractor from branch .features2d;

renamed createDetector to createFeatureDetector
This commit is contained in:
Maria Dimashova
2010-09-17 11:26:58 +00:00
parent eab003d06e
commit 8ab3fdbcca
6 changed files with 340 additions and 6 deletions

View File

@@ -316,7 +316,7 @@ void SurfFeatureDetector::detectImpl( const Mat& image, const Mat& mask,
surf(image, mask, keypoints);
}
Ptr<FeatureDetector> createDetector( const string& detectorType )
Ptr<FeatureDetector> createFeatureDetector( const string& detectorType )
{
FeatureDetector* fd = 0;
if( !detectorType.compare( "FAST" ) )