warnings under windows
authorAnatoly Baksheev <no@email>
Mon, 1 Oct 2012 18:28:34 +0000 (22:28 +0400)
committerAnatoly Baksheev <no@email>
Mon, 1 Oct 2012 19:57:37 +0000 (23:57 +0400)
modules/features2d/src/fast.cpp
modules/objdetect/include/opencv2/objdetect/objdetect.hpp

index 1d62f90..9fcc5b5 100644 (file)
@@ -54,6 +54,7 @@ void FAST_t(InputArray _img, std::vector<KeyPoint>& keypoints, int threshold, bo
     const int K = patternSize/2, N = patternSize + K + 1;
 #if CV_SSE2
     const int quarterPatternSize = patternSize/4;
+    (void)quarterPatternSize;
 #endif
     int i, j, k, pixel[25];
     makeOffsets(pixel, (int)img.step, patternSize);
@@ -64,6 +65,9 @@ void FAST_t(InputArray _img, std::vector<KeyPoint>& keypoints, int threshold, bo
 
 #if CV_SSE2
     __m128i delta = _mm_set1_epi8(-128), t = _mm_set1_epi8((char)threshold), K16 = _mm_set1_epi8((char)K);
+    (void)K16;
+    (void)delta;
+    (void)t;
 #endif
     uchar threshold_tab[512];
     for( i = -255; i <= 255; i++ )
index a39be74..b75798c 100644 (file)
@@ -411,7 +411,7 @@ protected:
     enum { DO_CANNY_PRUNING = 1, SCALE_IMAGE = 2,
            FIND_BIGGEST_OBJECT = 4, DO_ROUGH_SEARCH = 8 };
 
-    friend struct CascadeClassifierInvoker;
+    friend class CascadeClassifierInvoker;
 
     template<class FEval>
     friend int predictOrdered( CascadeClassifier& cascade, Ptr<FeatureEvaluator> &featureEvaluator, double& weight);