PDA

查看完整版本 : 【求助】matlab与图像边缘检测


dz0603
2008-03-08, 13:00
给定一幅图像 用matlab进行边缘检测该怎么操作matlab??????:confused:

034100628
2008-03-15, 16:52
利用edge函数就可以了。

buding09
2009-04-27, 20:26
BW1 = edge(I,'sobel');
BW2 = edge(I,'prewitt');
BW3 = edge(I,'roberts');
BW4 = edge(I,'log');
BW5 = edge(I,'canny');

其中 I 为所要处理的图像。