HomeSort by relevance Sort by last modified time
    Searched defs:MatchesInfo (Results 1 - 2 of 2) sorted by null

  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
matchers.hpp 161 struct CV_EXPORTS MatchesInfo
163 MatchesInfo();
164 MatchesInfo(const MatchesInfo &other);
165 const MatchesInfo& operator =(const MatchesInfo &other);
187 MatchesInfo& matches_info) { match(features1, features2, matches_info); }
197 @sa detail::MatchesInfo
199 void operator ()(const std::vector<ImageFeatures> &features, std::vector<MatchesInfo> &pairwise_matches,
221 MatchesInfo& matches_info) = 0
    [all...]
  /external/opencv3/modules/stitching/src/
matchers.cpp 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;
    [all...]

Completed in 74 milliseconds