feat(stitching): Add Sift support for the FeaturesFinder

This commit is contained in:
Pierre Jeambrun
2018-08-02 10:58:49 +03:00
parent b056ce33aa
commit 5131619a1a
3 changed files with 49 additions and 1 deletions

View File

@@ -137,6 +137,21 @@ private:
Ptr<Feature2D> surf;
};
/** @brief SIFT features finder.
@sa detail::FeaturesFinder, SIFT
*/
class CV_EXPORTS SiftFeaturesFinder : public FeaturesFinder
{
public:
SiftFeaturesFinder();
private:
void find(InputArray image, ImageFeatures &features) CV_OVERRIDE;
Ptr<Feature2D> sift;
};
/** @brief ORB features finder. :
@sa detail::FeaturesFinder, ORB