Fix IPP version ifdef
authorvbystricky <user@user-pc.(none)>
Mon, 7 Apr 2014 13:38:43 +0000 (17:38 +0400)
committervbystricky <user@user-pc.(none)>
Wed, 9 Apr 2014 10:49:37 +0000 (14:49 +0400)
modules/imgproc/src/moments.cpp

index 9d92e47..f57b07f 100644 (file)
@@ -466,7 +466,7 @@ cv::Moments cv::moments( InputArray _src, bool binary )
         if( cn > 1 )
             CV_Error( CV_StsBadArg, "Invalid image type (must be single-channel)" );
 
-#if defined HAVE_IPP && (IPP_VERSION_MAJOR >= 8) && (IPP_VERSION_MINOR >= 1)
+#if defined HAVE_IPP && (IPP_VERSION_MAJOR * 10 + IPP_VERSION_MINOR >= 81)
         if (!binary)
         {
             IppiSize roi = {mat.cols, mat.rows};