Searched defs:near_pairs (Results 1 - 1 of 1) sorted by relevance

/external/opencv3/modules/stitching/src/
H A Dmatchers.cpp69 pairwise_matches(_pairwise_matches), near_pairs(_near_pairs) {}
76 int from = near_pairs[i].first;
77 int to = near_pairs[i].second;
103 std::vector<std::pair<int,int> > &near_pairs; member in struct:__anon16118::MatchPairsBody
537 std::vector<std::pair<int,int> > near_pairs; local
541 near_pairs.push_back(std::make_pair(i, j));
544 MatchPairsBody body(*this, features, pairwise_matches, near_pairs);
547 parallel_for_(Range(0, static_cast<int>(near_pairs.size())), body);
549 body(Range(0, static_cast<int>(near_pairs.size())));
677 std::vector<std::pair<int,int> > near_pairs; local
[all...]

Completed in 65 milliseconds