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
commit b1a28a52fa

View File

@ -1234,7 +1234,7 @@ static bool IPPMorphOp(int op, InputArray _src, OutputArray _dst,
return false; return false;
} }
} }
for( x = 0; y < kernel.cols; x++ ) for( x = 0; x < kernel.cols; x++ )
{ {
if( kernel.at<uchar>(anchor.y, x) != 0 ) if( kernel.at<uchar>(anchor.y, x) != 0 )
continue; continue;