Change all 'ippStsNoErr==' to '0<=', and all 'ippStsNoErr!=' to '0>'

This commit is contained in:
vbystricky
2014-04-07 10:51:22 +04:00
parent 67484e027b
commit 38913bf5f6
5 changed files with 43 additions and 43 deletions

View File

@@ -389,7 +389,7 @@ void cv::integral( InputArray _src, OutputArray _sum, OutputArray _sqsum, Output
status = ippiIntegral_8u32s_C1R( (const Ipp8u*)src.data, (int)src.step, (Ipp32s*)sum.data, (int)sum.step, srcRoiSize, 0 );
}
}
if (ippStsNoErr == status)
if (0 <= status)
return;
}
#endif