1.matlab进行二值化时,阈值thresh必须是【0,1】之间的数值。所以需要thresh/255;
2.imgElog=edge(imgbw,‘log‘);
边缘检测函数可多种参数
a1=edge(I,‘sobel‘);
a2=edge(I,‘prewitt‘);
a3=edge(I,‘roberts‘);
a4=edge(I,‘log‘);
a5=edge(I,‘canny‘);
3.matlab图像是左上角为第一个点,宽col,高row
时间: 2024-11-04 05:26:44