我在下面得到一张照片,但这张照片的边缘很难看。
我想用matlab编程来平滑图片的边缘,让它看起来更漂亮,有什么想法或方法有意义吗?
谢谢您!!!
最佳答案
下面是一个选项(已编辑):
I = im2double(imread('ht4Za.jpg'));
% Segment the object:
gs = rgb2gray(I);
Object=~im2bw(gs, graythresh(gs));
% Smoothen the mask:
BW = bwmorph(bwconvhull(Object), 'erode', 5);
Mask=repmat(BW,[1,1,3]);
% Iterate opening operation:
Interp=I;
for k=1:5
Interp=imopen(Interp, strel('disk',20));
end
% Keep original pixels, add the newly generated ones and smooth the output:
Interpolated(:,:,1)=medfilt2(imadd(I(:,:,1).*Object, Interp(:,:,1).*~(BW==Object)), [4 4]);
Interpolated(:,:,2)=medfilt2(imadd(I(:,:,2).*Object, Interp(:,:,2).*~(BW==Object)), [4 4]);
Interpolated(:,:,3)=medfilt2(imadd(I(:,:,3).*Object, Interp(:,:,3).*~(BW==Object)), [4 4]);
% Display the results:
Masked=imadd(Interpolated.*im2double(Mask), im2double(~Mask));
imshow(Masked);
结果:
这有点难,但这会给你一个开始您可以尝试修改迭代次数、圆形过滤器和中值过滤器的大小试着用平均值改变中位数,等等。