From 341de5d53fc16da9f4a55faa1ea6a57819f66ebb Mon Sep 17 00:00:00 2001 From: laurentBerger Date: Sun, 3 May 2015 12:04:19 +0200 Subject: [PATCH] trailing whitespace --- samples/cpp/matchmethod_orb_akaze_brisk.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/cpp/matchmethod_orb_akaze_brisk.cpp b/samples/cpp/matchmethod_orb_akaze_brisk.cpp index dcad48a74f..f5a0a25fb4 100644 --- a/samples/cpp/matchmethod_orb_akaze_brisk.cpp +++ b/samples/cpp/matchmethod_orb_akaze_brisk.cpp @@ -54,13 +54,13 @@ int main(void) for (itMatcher = typeAlgoMatch.begin(); itMatcher != typeAlgoMatch.end(); itMatcher++){ descriptorMatcher = DescriptorMatcher::create(*itMatcher); descriptorMatcher->match(descImg1, descImg2, matches, Mat()); - // Keep best matches only to have a nice drawing + // Keep best matches only to have a nice drawing Mat index; Mat tab(matches.size(), 1, CV_32F); for (int i = 0; i(i, 0) = matches[i].distance; sortIdx(tab, index, SORT_EVERY_COLUMN + SORT_ASCENDING); - vector bestMatches; /* bestMatches; for (int i = 0; i<30; i++) bestMatches.push_back(matches[index.at(i, 0)]); Mat result;