Home
last modified time | relevance | path

Searched refs:matches_info (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/stitching/src/
Dmatchers.cpp121 …d match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo& matches_info);
132 …d match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo& matches_info);
145 …r::match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo& matches_info) in match() argument
151 if (tegra::useTegra() && tegra::match2nearest(features1, features2, matches_info, match_conf_)) in match()
155 matches_info.matches.clear(); in match()
190 matches_info.matches.push_back(m0); in match()
194 LOG("\n1->2 matches: " << matches_info.matches.size() << endl); in match()
207 matches_info.matches.push_back(DMatch(m0.trainIdx, m0.queryIdx, m0.distance)); in match()
209 LOG("1->2 & 2->1 matches: " << matches_info.matches.size() << endl); in match()
213 …r::match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo& matches_info) in match() argument
[all …]
Dmotion_estimators.cpp197 const MatchesInfo& matches_info = pairwise_matches_[i * num_images_ + j]; in estimate() local
198 if (matches_info.confidence > conf_thresh_) in estimate()
365 const MatchesInfo& matches_info = pairwise_matches_[i * num_images_ + j]; in calcError() local
377 for (size_t k = 0; k < matches_info.matches.size(); ++k) in calcError()
379 if (!matches_info.inliers_mask[k]) in calcError()
382 const DMatch& m = matches_info.matches[k]; in calcError()
534 const MatchesInfo& matches_info = pairwise_matches_[i * num_images_ + j]; in calcError() local
547 for (size_t k = 0; k < matches_info.matches.size(); ++k) in calcError()
549 if (!matches_info.inliers_mask[k]) in calcError()
552 const DMatch& m = matches_info.matches[k]; in calcError()
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dmatchers.hpp187 MatchesInfo& matches_info) { match(features1, features2, matches_info); } in operator ()() argument
221 MatchesInfo& matches_info) = 0;
249 …d match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo &matches_info);