2 Nisan 2017 Pazar

OpenCV BRISK Sınıfı

Giriş
Şu satırı dahil ederiz.
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/features2d.hpp>
#include <opencv2/xfeatures2d.hpp>
Constructor
Şöyle yaparız.
cv::Mat img = ...;
cv::Ptr<cv::BRISK> briskDetector = cv::BRISK::create();
detect metodu
Şöyle yaparız.
std::vector<cv::KeyPoint> briskKeypoints;

briskDetector->detect(img, briskKeypoints);

Hiç yorum yok:

Yorum Gönder