fixed compile errors on Ubuntu
authorVadim Pisarevsky <no@email>
Tue, 26 Apr 2011 15:38:32 +0000 (15:38 +0000)
committerVadim Pisarevsky <no@email>
Tue, 26 Apr 2011 15:38:32 +0000 (15:38 +0000)
modules/objdetect/src/cascadedetect.cpp

index 788784f..01987dc 100644 (file)
@@ -63,7 +63,7 @@ public:
 };    
     
 
-static void groupRectangles(vector<Rect>& rectList, int groupThreshold, double eps, vector<int>* weights, vector<double>* levelWeights)
+void groupRectangles(vector<Rect>& rectList, int groupThreshold, double eps, vector<int>* weights, vector<double>* levelWeights)
 {
     if( groupThreshold <= 0 || rectList.empty() )
     {