mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 04:00:30 +08:00
Merge pull request #3093 from asmorkalov:ocv_array_bound_fix
This commit is contained in:
commit
988555a5d9
@ -470,6 +470,12 @@ cvFloodFill( CvArr* arr, CvPoint seed_point,
|
|||||||
depth = CV_MAT_DEPTH(type);
|
depth = CV_MAT_DEPTH(type);
|
||||||
cn = CV_MAT_CN(type);
|
cn = CV_MAT_CN(type);
|
||||||
|
|
||||||
|
if ( (cn != 1) && (cn != 3) )
|
||||||
|
{
|
||||||
|
CV_Error( CV_StsBadArg, "Number of channels in input image must be 1 or 3" );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if( connectivity == 0 )
|
if( connectivity == 0 )
|
||||||
connectivity = 4;
|
connectivity = 4;
|
||||||
else if( connectivity != 4 && connectivity != 8 )
|
else if( connectivity != 4 && connectivity != 8 )
|
||||||
|
Loading…
Reference in New Issue
Block a user