cv.Canny()

void cv.Canny(InputArray src,OutputArray dst,double threshold1,double threshold2,
									int apertureSize=3,bool L2gradient = false )
/*
threshold1:低阈值
threshold2:高阈值
apertureSize:使用的Sobel核的大小,默认3X3
L2gradient:代表计算边缘强度时使用的计算方式。true:平方和开方,false:绝对值
*/

你可能感兴趣的:(opencv,c++)