diff --git a/samples/cpp/matchmethod_orb_akaze_brisk.cpp b/samples/cpp/matchmethod_orb_akaze_brisk.cpp index be6bf3553c..9ec4342692 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();