Searched refs:features1 (Results 1 – 4 of 4) sorted by relevance
/external/opencv3/modules/stitching/src/ |
D | matchers.cpp | 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() argument 147 CV_Assert(features1.descriptors.type() == features2.descriptors.type()); in match() 151 if (tegra::useTegra() && tegra::match2nearest(features1, features2, matches_info, match_conf_)) 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 217 ensureSizeIsEnough(features1.descriptors.size(), features1.descriptors.type(), descriptors1_); in match() 220 descriptors1_.upload(features1.descriptors); in match() [all …]
|
D | motion_estimators.cpp | 363 const ImageFeatures& features1 = features_[i]; in calcError() local 383 Point2f p1 = features1.keypoints[m.queryIdx].pt; in calcError() 532 const ImageFeatures& features1 = features_[i]; in calcError() local 537 K1(0,0) = f1; K1(0,2) = features1.img_size.width * 0.5; in calcError() 538 K1(1,1) = f1; K1(1,2) = features1.img_size.height * 0.5; in calcError() 554 Point2f p1 = features1.keypoints[m.queryIdx].pt; in calcError()
|
/external/opencv3/modules/stitching/perf/ |
D | perf_stich.cpp | 129 detail::ImageFeatures features1, features2; in PERF_TEST_P() local 130 (*finder)(img1, features1); 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 185 (*finder)(img1, features1); 191 features.push_back(features1);
|
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/ |
D | matchers.hpp | 186 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…
|