Fix a typo error
authorPierre Moulon <pmoulon@gmail.com>
Fri, 14 Feb 2014 11:21:35 +0000 (12:21 +0100)
committerDikay900 <dark900@xyz.de>
Sat, 25 Apr 2015 13:07:17 +0000 (15:07 +0200)
Fix a typo error
Conflicts:
modules/features2d/include/opencv2/features2d.hpp

modules/features2d/include/opencv2/features2d/features2d.hpp
samples/cpp/freak_demo.cpp

index 9769431..e4e796f 100644 (file)
@@ -879,7 +879,7 @@ CV_EXPORTS Mat windowedMatchingMask( const vector<KeyPoint>& keypoints1, const v
 /*
  * OpponentColorDescriptorExtractor
  *
- * Adapts a descriptor extractor to compute descripors in Opponent Color Space
+ * Adapts a descriptor extractor to compute descriptors in Opponent Color Space
  * (refer to van de Sande et al., CGIV 2008 "Color Descriptors for Object Category Recognition").
  * Input RGB image is transformed in Opponent Color Space. Then unadapted descriptor extractor
  * (set in constructor) computes descriptors on each of the three channel and concatenate
index fd4eea4..6dbd921 100644 (file)
@@ -87,7 +87,7 @@ int main( int argc, char** argv ) {
 
     // DESCRIPTOR
     // Our proposed FREAK descriptor
-    // (roation invariance, scale invariance, pattern radius corresponding to SMALLEST_KP_SIZE,
+    // (rotation invariance, scale invariance, pattern radius corresponding to SMALLEST_KP_SIZE,
     // number of octaves, optional vector containing the selected pairs)
     // FREAK extractor(true, true, 22, 4, std::vector<int>());
     FREAK extractor;