@@ -42,7 +42,7 @@ TracksBuilder::TracksBuilder() { _d.reset(new TracksBuilderData()); }
4242
4343TracksBuilder::~TracksBuilder () = default ;
4444
45- void TracksBuilder::build (const PairwiseMatches& pairwiseMatches)
45+ void TracksBuilder::build (const matching:: PairwiseMatches& pairwiseMatches)
4646{
4747 typedef std::set<IndexedFeaturePair> SetIndexedPair;
4848
@@ -54,14 +54,14 @@ void TracksBuilder::build(const PairwiseMatches& pairwiseMatches)
5454 {
5555 const std::size_t & I = matchesPerDescIt.first .first ;
5656 const std::size_t & J = matchesPerDescIt.first .second ;
57- const MatchesPerDescType& matchesPerDesc = matchesPerDescIt.second ;
57+ const matching:: MatchesPerDescType& matchesPerDesc = matchesPerDescIt.second ;
5858
5959 for (const auto & matchesIt : matchesPerDesc)
6060 {
6161 const feature::EImageDescriberType descType = matchesIt.first ;
62- const IndMatches& matches = matchesIt.second ;
62+ const matching:: IndMatches& matches = matchesIt.second ;
6363 // we have correspondences between I and J image index.
64- for (const IndMatch& m : matches)
64+ for (const matching:: IndMatch& m : matches)
6565 {
6666 IndexedFeaturePair pairI (I, KeypointId (descType, m._i ));
6767 IndexedFeaturePair pairJ (J, KeypointId (descType, m._j ));
@@ -97,14 +97,14 @@ void TracksBuilder::build(const PairwiseMatches& pairwiseMatches)
9797 {
9898 const std::size_t & I = matchesPerDescIt.first .first ;
9999 const std::size_t & J = matchesPerDescIt.first .second ;
100- const MatchesPerDescType& matchesPerDesc = matchesPerDescIt.second ;
100+ const matching:: MatchesPerDescType& matchesPerDesc = matchesPerDescIt.second ;
101101
102102 for (const auto & matchesIt : matchesPerDesc)
103103 {
104104 const feature::EImageDescriberType descType = matchesIt.first ;
105- const IndMatches& matches = matchesIt.second ;
105+ const matching:: IndMatches& matches = matchesIt.second ;
106106 // we have correspondences between I and J image index.
107- for (const IndMatch& m : matches)
107+ for (const matching:: IndMatch& m : matches)
108108 {
109109 IndexedFeaturePair pairI (I, KeypointId (descType, m._i ));
110110 IndexedFeaturePair pairJ (J, KeypointId (descType, m._j ));
0 commit comments