Add IPP_VERSION_X100 define

This commit is contained in:
vbystricky
2014-04-08 12:43:57 +04:00
parent 7badc85b60
commit f23134ce01
8 changed files with 16 additions and 13 deletions

View File

@@ -1136,7 +1136,7 @@ private:
Scalar borderValue;
};
#if defined (HAVE_IPP) && (IPP_VERSION_MAJOR * 10 + IPP_VERSION_MINOR >= 81)
#if defined (HAVE_IPP) && (IPP_VERSION_X100 >= 801)
static bool IPPMorphReplicate(int op, const Mat &src, Mat &dst, const Mat &kernel,
const Size& ksize, const Point &anchor, bool rectKernel)
{
@@ -1459,7 +1459,7 @@ static void morphOp( int op, InputArray _src, OutputArray _dst,
Size ksize = kernel.data ? kernel.size() : Size(3,3);
anchor = normalizeAnchor(anchor, ksize);
#if defined (HAVE_IPP) && (IPP_VERSION_MAJOR * 10 + IPP_VERSION_MINOR >= 81)
#if defined (HAVE_IPP) && (IPP_VERSION_X100 >= 801)
if( IPPMorphOp(op, _src, _dst, kernel, anchor, iterations, borderType, borderValue) )
return;
#endif