Searched refs:num_inliers (Results 1 – 5 of 5) sorted by relevance
/external/opencv3/modules/cudalegacy/src/cuda/ |
D | calib3d.cu | 149 int num_inliers = 0; in computeHypothesisScoresKernel() local 162 ++num_inliers; in computeHypothesisScoresKernel() 166 reduce<BLOCK_SIZE>(s_num_inliers, num_inliers, threadIdx.x, plus<int>()); in computeHypothesisScoresKernel() 169 g_num_inliers[blockIdx.x] = num_inliers; in computeHypothesisScoresKernel()
|
/external/opencv3/modules/stitching/src/ |
D | matchers.cpp | 508 MatchesInfo::MatchesInfo() : src_img_idx(-1), dst_img_idx(-1), num_inliers(0), confidence(0) {} in MatchesInfo() 518 num_inliers = other.num_inliers; in operator =() 610 matches_info.num_inliers = 0; in match() 613 matches_info.num_inliers++; in match() 617 matches_info.confidence = matches_info.num_inliers / (8 + 0.3 * matches_info.matches.size()); in match() 624 if (matches_info.num_inliers < num_matches_thresh2_) in match() 628 src_points.create(1, matches_info.num_inliers, CV_32FC2); in match() 629 dst_points.create(1, matches_info.num_inliers, CV_32FC2); in match()
|
D | motion_estimators.cpp | 207 edges_[i].second].num_inliers); in estimate() 732 << ", Ni=" << pairwise_matches[pos].num_inliers in matchesGraphAsString() 825 float conf = static_cast<float>(pairwise_matches[i * num_images + j].num_inliers); in findMaxSpanningTree()
|
/external/opencv3/modules/cudalegacy/src/ |
D | calib3d.cpp | 256 int num_inliers = static_cast<int>(best_score); in solvePnPRansac() local 271 inliers->reserve(num_inliers); in solvePnPRansac()
|
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/ |
D | matchers.hpp | 170 int num_inliers; //!< Number of geometrically consistent matches member
|