Home
last modified time | relevance | path

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

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