Хотите обнаружить функции и сопоставить функцию в 2 разных кадрах - PullRequest
0 голосов
/ 02 июля 2018

В настоящее время я использую OpenCV 3.4.0, c ++ в QT creator. Я пробовал пример кода на этой странице https://docs.opencv.org/2.4/doc/tutorials/features2d/feature_description/feature_description.html

int minHessian = 400;
cv::xfeatures2d::SurfFeatureDetector detector(minHessian);
vector<KeyPoint> keypoints1, keypoints2;
detector.detect(img1, keypoints1);
detector.detect(img2, keypoints2);

// computing descriptors
cv::xfeatures2d::SurfDescriptorExtractor extractor;
Mat descriptors1, descriptors2;
extractor.compute(img1, keypoints1, descriptors1);
extractor.compute(img2, keypoints2, descriptors2);

// matching descriptors
BFMatcher matcher(NORM_L2);
vector<DMatch> matches;
matcher.match(descriptors1, descriptors2, matches);

// drawing the results
namedWindow("matches", 1);
Mat img_matches;
drawMatches(img1, keypoints1, img2, keypoints2, matches, img_matches);
imshow("matches", img_matches);
waitKey(0);

но код продолжал возвращать ошибку

no matching function for call to 'cv::xfeatures2d::SURF::SURF(int&)(2nd line)

cannot declare variable 'detector' to be of abstract type 'cv::xfeatures2d::SURF'(2nd line)

cannot declare variable 'extractor' to be of astract type 'cv::xfeatures2d::SURF'(7th line)

Я импортировал все необходимые модули, включая xfeatures2d

.

В чем проблема?

И есть ли другие примеры кодов, которые я могу попробовать?

1 Ответ

0 голосов
/ 02 июля 2018

Ваша кодировка отражает более старую версию OpenCV, которая не совместима с OpenCV 3.4.0. Вы можете попробовать так. Лучше преобразовать изображение шаблона в изображение в градациях серого для лучшего соответствия:

cv::Ptr<Feature2D> detector = cv::xfeatures2d::SurfFeatureDetector::create();
detector->detect(img1, keypoints1);

cv::Ptr<DescriptorExtractor> extractor = cv::xfeatures2d::SurfFeatureDetector::create();
extractor->compute(img1, keypoints1, descriptors1);
...