Merge pull request #696 from znah:detect_method

This commit is contained in:
Roman Donchenko
2013-06-13 12:01:56 +04:00
committed by OpenCV Buildbot
2 changed files with 8 additions and 0 deletions

View File

@@ -206,6 +206,8 @@ public:
OutputArray descriptors,
bool useProvidedKeypoints=false ) const = 0;
CV_WRAP void compute( const Mat& image, CV_OUT CV_IN_OUT std::vector<KeyPoint>& keypoints, CV_OUT Mat& descriptors ) const;
// Create feature detector and descriptor extractor by name.
CV_WRAP static Ptr<Feature2D> create( const String& name );
};