Fix name of parameter to have proper documentation.
authorMathieu Barnachon <mathieu.barnachon@gmail.com>
Sun, 24 Nov 2013 14:45:05 +0000 (15:45 +0100)
committerMathieu Barnachon <mathieu.barnachon@gmail.com>
Sun, 24 Nov 2013 14:45:05 +0000 (15:45 +0100)
modules/features2d/src/bagofwords.cpp

index 8416ebd..5eb1dd5 100644 (file)
@@ -170,7 +170,7 @@ int BOWImgDescriptorExtractor::descriptorType() const
     return CV_32FC1;
 }
 
-void BOWImgDescriptorExtractor::compute( const Mat& descriptors, Mat& imgDescriptor, std::vector<std::vector<int> >* pointIdxsOfClusters )
+void BOWImgDescriptorExtractor::compute( const Mat& keypointDescriptors, Mat& imgDescriptor, std::vector<std::vector<int> >* pointIdxsOfClusters )
 {
     CV_Assert( vocabulary.empty() != false );