From 09930938e8e45416f8ce0cb607505908e027db65 Mon Sep 17 00:00:00 2001 From: laurentBerger Date: Mon, 4 May 2015 10:59:43 +0200 Subject: [PATCH] Trailing white space first step --- samples/cpp/matchmethod_orb_akaze_brisk.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/samples/cpp/matchmethod_orb_akaze_brisk.cpp b/samples/cpp/matchmethod_orb_akaze_brisk.cpp index be6bf3553..9ec434269 100644 --- a/samples/cpp/matchmethod_orb_akaze_brisk.cpp +++ b/samples/cpp/matchmethod_orb_akaze_brisk.cpp @@ -21,7 +21,7 @@ int main(int argc, char *argv[]) vector typeAlgoMatch; vector fileName; help(); - // This descriptor are going to be detect and compute + // This descriptor are going to be detect and compute typeDesc.push_back("AKAZE"); // see http://docs.opencv.org/trunk/d8/d30/classcv_1_1AKAZE.html typeDesc.push_back("ORB"); // see http://docs.opencv.org/trunk/de/dbf/classcv_1_1BRISK.html typeDesc.push_back("BRISK"); // see http://docs.opencv.org/trunk/db/d95/classcv_1_1ORB.html @@ -67,11 +67,11 @@ int main(int argc, char *argv[]) { Ptr descriptorMatcher; // Match between img1 and img2 - vector matches; - // keypoint for img1 and img2 + vector matches; + // keypoint for img1 and img2 vector keyImg1, keyImg2; - // Descriptor for img1 and img2 - Mat descImg1, descImg2; + // Descriptor for img1 and img2 + Mat descImg1, descImg2; vector::iterator itMatcher = typeAlgoMatch.end(); if (*itDesc == "AKAZE"){ b = AKAZE::create();