1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Merge pull request #2693 from mvukad:bugfix_ippmorphop

This commit is contained in:
Alexander Alekhin
2014-05-07 13:15:07 +04:00
committed by OpenCV Buildbot
+1 -1
View File
@@ -1234,7 +1234,7 @@ static bool IPPMorphOp(int op, InputArray _src, OutputArray _dst,
return false;
}
}
for( x = 0; y < kernel.cols; x++ )
for( x = 0; x < kernel.cols; x++ )
{
if( kernel.at<uchar>(anchor.y, x) != 0 )
continue;