clear all
I=imread(‘coins.png’); %灰度图像
subplot(2,4,1);imshow(I);
xlabel(‘(a)默认算子);
%默认算子
BW1=edge(I);
subplot(2,4,2);imshow(BW1);
xlabel(‘(b)默认算子‘);
%Sobel算子
BW2=edge(I,’sobel’);
subplot(2,4,3);imshow(BW2);
xlabel(‘(c)Sobel算子‘);
谁能帮我看看这个程序直接打在matlab上为什么不能运行?