在这个答案中,我了解“// 5. Validate match using RANSAC”之前的所有内容。
在我的代码中,除了 ransacTest 的部分之外,我使用该代码。我面临的问题是我得到了太多错误的“匹配”和/或有时我的代码找到的对象周围的矩形太扭曲了。
//Template image's corners
obj_corners[0] = cvPoint( 0, 0);
obj_corners[1] = cvPoint( best_img.cols, 0 );
obj_corners[2] = cvPoint( best_img.cols, best_img.rows );
obj_corners[3] = cvPoint( 0, best_img.rows );
obj.clear();
scene.clear();
for ( int i = 0; i < best_matches.size(); i++ )
{
//Get the keypoints from the good matches
obj.push_back( best_img_keypoints[ best_matches[i].queryIdx ].pt ); // Template image
scene.push_back( frame_keypoints[ best_matches[i].trainIdx ].pt ); // Frame
}
// -----Find homography----- //
std::vector<uchar> outlier_mask; //I don't use this line
cv::Mat H = findHomography( obj, scene, CV_RANSAC, reprojThres, outlier_mask);
cv::perspectiveTransform(obj_corners, scene_corners, H);
a) 如果我使用基本矩阵,我可以使用 findHomography 和 perspectiveTransform 吗?
b) 以上几行有什么问题吗?