4
템플릿 이미지에서 찾은 특징 지점을 비디오 피드에 표시된 것과 일치시키는 프로그램이 있습니다. 나는이 프로그램을 실행하면 나는 다음과 같은 오류가 점점 오전 : 나는 문제가 함께 할 것입니다 생각 읽은 바로는OpenCV - SURF 포인트와 일치하는 런타임 오류
drawMatches(img_1, templateKeypoints, frames, keypoints_1, good_matches, img_matches, cv::Scalar::all(-1), cv::Scalar::all(-1), std::vector<char>(), cv::DrawMatchesFlags::NOT_DRAW_SINGLE_POINTS);
:
OpenCV Error: Assertion failed (i1 >= 0 && i1 < static_cast<int>(keypoints1.size())) in drawMatches, file bin/opencv-2.4.7/modules/features2d/src/draw.cpp, line 207
terminate called after throwing an instance of 'cv::Exception'
what(): bin/opencv-2.4.7/modules/features2d/src/draw.cpp:207: error: (-215) i1 >= 0 && i1 < static_cast<int>(keypoints1.size()) in function drawMatches
Aborted
을이 위에 언급 한 기능 drawMatches
입니다 비디오에서 발견 된 특징 포인트가 템플릿 이미지의 특징 포인트와 일치하지 않으면 프로그램이 중단됩니다.
min_dist = 100;
for(int i = 0; i < img_descriptors_1.rows; i++) {
if(matches[i].distance <= 3 * min_dist) {
good_matches.push_back(matches[i]);
}
}
일치하는 항목이 없어도 동영상을 계속해서 검색하고 싶습니다.
편집 : 그냥 다음 후
OpenCV Error: Assertion failed (npoints >= 0 && points2.checkVector(2) == npoints && points1.type() == points2.type()) in findHomography, file /home/colin/bin/opencv-2.4.7/modules/calib3d/src/fundam.cpp, line 1074
terminate called after throwing an instance of 'cv::Exception'
what(): /home/colin/bin/opencv-2.4.7/modules/calib3d/src/fundam.cpp:1074: error: (-215) npoints >= 0 && points2.checkVector(2) == npoints && points1.type() == points2.type() in function findHomography
Aborted
나는 이미 문제를 해결하고 같은 해결책을 찾았습니다. 나는 같은 문제를 가진 미래의 사람들에 대한 당신의 대답을 받아 들였습니다. – Colin747