fixed compile error
authorMaria Dimashova <no@email>
Wed, 12 Jan 2011 12:46:26 +0000 (12:46 +0000)
committerMaria Dimashova <no@email>
Wed, 12 Jan 2011 12:46:26 +0000 (12:46 +0000)
modules/features2d/src/matchers.cpp

index 825ce2d..506f3d1 100755 (executable)
@@ -1119,7 +1119,7 @@ void FernDescriptorMatcher::knnMatchImpl( const Mat& queryImage, vector<KeyPoint
 
             if( bestMatch.trainIdx == -1 )
                 break;
-            signature[best_ci] = -std:numeric_limits<float>::max();
+            signature[best_ci] = -std::numeric_limits<float>::max();
             matches[queryIdx].push_back( bestMatch );
         }
     }