S.A.M 发表于 2009-10-9 21:55

区域滤波的小程序出错

这是我写的一个程序
需求是,载入这张图后
在图上交互做一个选区
然后对这个选区进行滤波
程序如下,我的掩模是BW
不过系统老是报错

I=(imread('D:\MATLAB\work\lena512color.tiff'));
imagesc(I);colormap();
figure,imshow(I);

BW=roipoly(I);
figure,imshow(BW);

J = roifilt2(h,I,BW);
h = fspecial('unsharp');
figure,imshow(J);

报错:
??? Undefined function or variable "h".
Error in ==> F2 at 8
J = roifilt2(h,I,BW);
要怎么解决呢?:@(

ChaChing 发表于 2009-10-9 23:00

回复 楼主 S.A.M 的帖子

图像处理这块个人门外汉
J = roifilt2(h,I,BW);
h = fspecial('unsharp');
是不是应该为
h = fspecial('unsharp'); J = roifilt2(h,I,BW);

S.A.M 发表于 2009-10-10 17:03

回复 沙发 ChaChing 的帖子

谢谢~搞定了~
刚学,犯了低级错误~:lol
页: [1]
查看完整版本: 区域滤波的小程序出错