Added matching mask into pairwise matcher from stitching module

This commit is contained in:
Alexey Spizhevoy
2011-09-26 09:24:45 +00:00
parent 551113292b
commit b053a3b486
4 changed files with 21 additions and 4 deletions

View File

@@ -165,7 +165,7 @@ Stitcher::Status Stitcher::matchImages()
LOG("Pairwise matching");
t = getTickCount();
(*features_matcher_)(features_, pairwise_matches_);
(*features_matcher_)(features_, pairwise_matches_, matching_mask_);
features_matcher_->collectGarbage();
LOGLN("Pairwise matching, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec");