Fix compile warnings

This commit is contained in:
vbystricky 2014-04-21 15:02:38 +04:00
parent f52126725f
commit d9ef5bb5a7

View File

@ -193,7 +193,8 @@ namespace cv
static bool IPPDerivScharr(InputArray _src, OutputArray _dst, int ddepth, int dx, int dy, double scale, double delta, int borderType)
{
#if defined(HAVE_IPP_ICV_ONLY)
return false;
_src; _dst; ddepth; dx; dy; scale; delta; borderType;
return false;
#else
if ((0 > dx) || (0 > dy) || (1 != dx + dy))
return false;