Home
last modified time | relevance | path

Searched refs:features2 (Results 1 – 4 of 4) sorted by relevance

/external/opencv3/modules/stitching/src/
Dmatchers.cpp121 …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() argument
147 CV_Assert(features1.descriptors.type() == features2.descriptors.type()); in match()
148 CV_Assert(features2.descriptors.depth() == CV_8U || features2.descriptors.depth() == CV_32F); in match()
151 if (tegra::useTegra() && tegra::match2nearest(features1, features2, matches_info, match_conf_)) in match()
169 if (features2.descriptors.depth() == CV_8U) in match()
181 matcher->knnMatch(features1.descriptors, features2.descriptors, pair_matches, 2); in match()
198 matcher->knnMatch(features2.descriptors, features1.descriptors, pair_matches, 2); in match()
213 void GpuMatcher::match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo&… in match() argument
[all …]
Dmotion_estimators.cpp364 const ImageFeatures& features2 = features_[j]; in calcError() local
384 Point2f p2 = features2.keypoints[m.trainIdx].pt; in calcError()
533 const ImageFeatures& features2 = features_[j]; in calcError() local
541 K2(0,0) = f2; K2(0,2) = features2.img_size.width * 0.5; in calcError()
542 K2(1,1) = f2; K2(1,2) = features2.img_size.height * 0.5; in calcError()
561 Point2f p2 = features2.keypoints[m.trainIdx].pt; in calcError()
/external/opencv3/modules/stitching/perf/
Dperf_stich.cpp129 detail::ImageFeatures features1, features2; in PERF_TEST_P() local
131 (*finder)(img2, features2); in PERF_TEST_P()
135 declare.in(features1.descriptors, features2.descriptors); in PERF_TEST_P()
141 (*matcher)(features1, features2, pairwise_matches); in PERF_TEST_P()
184 detail::ImageFeatures features1, features2; variable
186 (*finder)(img2, features2);
192 features.push_back(features2);
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dmatchers.hpp186 void operator ()(const ImageFeatures &features1, const ImageFeatures &features2, in operator ()() argument
187 MatchesInfo& matches_info) { match(features1, features2, matches_info); } in operator ()()
220 virtual void match(const ImageFeatures &features1, const ImageFeatures &features2,
249 …void match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo &matches_in…