Trailing white space first step
authorlaurentBerger <laurent.berger@univ-lemans.fr>
Mon, 4 May 2015 08:59:43 +0000 (10:59 +0200)
committerlaurentBerger <laurent.berger@univ-lemans.fr>
Mon, 4 May 2015 08:59:43 +0000 (10:59 +0200)
samples/cpp/matchmethod_orb_akaze_brisk.cpp

index be6bf35..9ec4342 100644 (file)
@@ -21,7 +21,7 @@ int main(int argc, char *argv[])
     vector<String> typeAlgoMatch;
     vector<String> 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> descriptorMatcher;
         // Match between img1 and img2
-        vector<DMatch> matches;                
-        // keypoint  for img1 and img2 
+        vector<DMatch> matches;
+        // keypoint  for img1 and img2
         vector<KeyPoint> keyImg1, keyImg2;
-        // Descriptor for img1 and img2 
-        Mat descImg1, descImg2;         
+        // Descriptor for img1 and img2
+        Mat descImg1, descImg2;
         vector<String>::iterator itMatcher = typeAlgoMatch.end();
         if (*itDesc == "AKAZE"){
             b = AKAZE::create();