mirror of
https://github.com/opencv/opencv.git
synced 2024-12-13 16:09:23 +08:00
ef98c25d60
Features2d cleanup: Move several feature detectors and descriptors to opencv_contrib #25292 features2d cleanup: #24999 The PR moves KAZE, AKAZE, AgastFeatureDetector, BRISK and BOW to opencv_contrib/xfeatures2d. Related PR: opencv/opencv_contrib#3709
36 lines
793 B
C++
36 lines
793 B
C++
#ifndef __OPENCV_PERF_PRECOMP_HPP__
|
|
#define __OPENCV_PERF_PRECOMP_HPP__
|
|
|
|
#include "opencv2/ts.hpp"
|
|
#include "opencv2/stitching.hpp"
|
|
|
|
#ifdef HAVE_OPENCV_XFEATURES2D
|
|
#include "opencv2/xfeatures2d/nonfree.hpp"
|
|
#include "opencv2/xfeatures2d.hpp"
|
|
#endif
|
|
|
|
namespace cv
|
|
{
|
|
|
|
static inline Ptr<Feature2D> getFeatureFinder(const std::string& name)
|
|
{
|
|
if (name == "orb")
|
|
return ORB::create();
|
|
else if (name == "sift")
|
|
return SIFT::create();
|
|
#if defined(HAVE_OPENCV_XFEATURES2D) && defined(OPENCV_ENABLE_NONFREE)
|
|
else if (name == "surf")
|
|
return xfeatures2d::SURF::create();
|
|
#endif
|
|
#if defined(HAVE_OPENCV_XFEATURES2D)
|
|
else if (name == "akaze")
|
|
return xfeatures2d::AKAZE::create();
|
|
#endif
|
|
else
|
|
return Ptr<Feature2D>();
|
|
}
|
|
|
|
} // namespace cv
|
|
|
|
#endif
|