Home
last modified time | relevance | path

Searched refs:MatchesInfo (Results 1 – 9 of 9) sorted by relevance

/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dmatchers.hpp161 struct CV_EXPORTS MatchesInfo struct
163 MatchesInfo();
164 MatchesInfo(const MatchesInfo &other);
165 const MatchesInfo& operator =(const MatchesInfo &other);
187 MatchesInfo& matches_info) { match(features1, features2, matches_info); } in operator ()()
199 …void operator ()(const std::vector<ImageFeatures> &features, std::vector<MatchesInfo> &pairwise_ma…
221 MatchesInfo& matches_info) = 0;
249 …void match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo &matches_in…
262 …void operator ()(const std::vector<ImageFeatures> &features, std::vector<MatchesInfo> &pairwise_ma…
Dmotion_estimators.hpp78 const std::vector<MatchesInfo> &pairwise_matches, in operator ()()
92 const std::vector<MatchesInfo> &pairwise_matches,
106 const std::vector<MatchesInfo> &pairwise_matches,
147 const std::vector<MatchesInfo> &pairwise_matches,
182 const MatchesInfo *pairwise_matches_;
257 String CV_EXPORTS matchesGraphAsString(std::vector<String> &pathes, std::vector<MatchesInfo> &pairw…
262 std::vector<MatchesInfo> &pairwise_matches,
266 int num_images, const std::vector<MatchesInfo> &pairwise_matches,
Dautocalib.hpp76 const std::vector<MatchesInfo> &pairwise_matches,
/external/opencv3/modules/stitching/src/
Dmatchers.cpp67 … std::vector<MatchesInfo> &_pairwise_matches, std::vector<std::pair<int,int> > &_near_pairs) in MatchPairsBody()
102 std::vector<MatchesInfo> &pairwise_matches;
121 …void match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo& matches_in…
132 …void match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo& matches_in…
145 void CpuMatcher::match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo&… in match()
213 void GpuMatcher::match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo&… in match()
508 MatchesInfo::MatchesInfo() : src_img_idx(-1), dst_img_idx(-1), num_inliers(0), confidence(0) {} in MatchesInfo() function in cv::detail::MatchesInfo
510 MatchesInfo::MatchesInfo(const MatchesInfo &other) { *this = other; } in MatchesInfo() function in cv::detail::MatchesInfo
512 const MatchesInfo& MatchesInfo::operator =(const MatchesInfo &other) in operator =()
527 …r::operator ()(const std::vector<ImageFeatures> &features, std::vector<MatchesInfo> &pairwise_matc… in operator ()()
[all …]
Dmotion_estimators.cpp62 …CalcRotation(int _num_images, const std::vector<MatchesInfo> &_pairwise_matches, std::vector<Camer… in CalcRotation()
86 const MatchesInfo* pairwise_matches;
107 const std::vector<MatchesInfo> &pairwise_matches, in estimate()
177 const std::vector<MatchesInfo> &pairwise_matches, in estimate()
197 const MatchesInfo& matches_info = pairwise_matches_[i * num_images_ + j]; in estimate()
365 const MatchesInfo& matches_info = pairwise_matches_[i * num_images_ + j]; in calcError()
534 const MatchesInfo& matches_info = pairwise_matches_[i * num_images_ + j]; in calcError()
687 String matchesGraphAsString(std::vector<String> &pathes, std::vector<MatchesInfo> &pairwise_matches, in matchesGraphAsString()
753 …aveBiggestComponent(std::vector<ImageFeatures> &features, std::vector<MatchesInfo> &pairwise_matc… in leaveBiggestComponent()
783 std::vector<MatchesInfo> pairwise_matches_subset; in leaveBiggestComponent()
[all …]
Dautocalib.cpp97 void estimateFocal(const std::vector<ImageFeatures> &features, const std::vector<MatchesInfo> &pair… in estimateFocal()
109 const MatchesInfo &m = pairwise_matches[i*num_images + j]; in estimateFocal()
/external/opencv3/modules/stitching/perf/
Dperf_stich.cpp133 detail::MatchesInfo pairwise_matches; in PERF_TEST_P()
188 vector<detail::MatchesInfo> pairwise_matches;
/external/opencv3/modules/stitching/include/opencv2/
Dstitching.hpp241 std::vector<detail::MatchesInfo> pairwise_matches_;
/external/opencv3/samples/cpp/
Dstitching_detailed.cpp460 vector<MatchesInfo> pairwise_matches; in main()