最終更新:2016-06-05 (日) 21:06:03 (2874d)  

FeatureDetector
Top / FeatureDetector

http://opencv.jp/opencv-2svn/cpp/common_interfaces_for_feature_detection_and_descriptor_extraction.html

派生クラス

  • FastFeatureDetector?
  • GoodFeaturesToTrackDetector?
  • StarFeatureDetector?
  • SiftFeatureDetector?
  • SurfFeatureDetector?

  • cv::Mat img = cv::imread("test.jpg");
    cv::Ptr<cv::FeatureDetector> detector = FeatureDetector::create("STAR");
    std::vector<cv::KeyPoint> keypoint;
    detector->detect(img, keypoint);

関連