|
|
@ -573,7 +573,7 @@ void BestOf2NearestMatcher::match(const ImageFeatures &features1, const ImageFea |
|
|
|
|
|
|
|
|
|
|
|
// Find pair-wise motion
|
|
|
|
// Find pair-wise motion
|
|
|
|
matches_info.H = findHomography(src_points, dst_points, matches_info.inliers_mask, CV_RANSAC); |
|
|
|
matches_info.H = findHomography(src_points, dst_points, matches_info.inliers_mask, CV_RANSAC); |
|
|
|
if (std::abs(determinant(matches_info.H)) < std::numeric_limits<double>::epsilon()) |
|
|
|
if (matches_info.H.empty() || std::abs(determinant(matches_info.H)) < std::numeric_limits<double>::epsilon()) |
|
|
|
return; |
|
|
|
return; |
|
|
|
|
|
|
|
|
|
|
|
// Find number of inliers
|
|
|
|
// Find number of inliers
|
|
|
|