Home | History | Annotate | Download | only in src

Lines Matching refs:MatchesInfo

67                    std::vector<MatchesInfo> &_pairwise_matches, std::vector<std::pair<int,int> > &_near_pairs)
102 std::vector<MatchesInfo> &pairwise_matches;
121 void match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo& matches_info);
132 void match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo& matches_info);
145 void CpuMatcher::match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo& matches_info)
213 void GpuMatcher::match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo& matches_info)
508 MatchesInfo::MatchesInfo() : src_img_idx(-1), dst_img_idx(-1), num_inliers(0), confidence(0) {}
510 MatchesInfo::MatchesInfo(const MatchesInfo &other) { *this = other; }
512 const MatchesInfo& MatchesInfo::operator =(const MatchesInfo &other)
527 void FeaturesMatcher::operator ()(const std::vector<ImageFeatures> &features, std::vector<MatchesInfo> &pairwise_matches,
578 MatchesInfo &matches_info)
667 void BestOf2NearestRangeMatcher::operator ()(const std::vector<ImageFeatures> &features, std::vector<MatchesInfo> &pairwise_matches,