Info
此问题已关闭。 请重新打开它进行编辑或回答。
How to deblurr this image using any appropriate filter, I have removed the grain noise from the image and the filtered image looks blurred to me.
1 次查看(过去 30 天)
显示 更早的评论
![image.jpg](https://www.mathworks.com/matlabcentral/answers/uploaded_files/196421/image.jpeg)
clc;
clear all;
close all;
i = imread('image.jpg')
figure,
imshow(i)
grey_img = rgb2gray(i);
figure,
imshow(grey_img)
en_img = medfilt2(grey_img)
figure,
imshow(en_img)
0 个评论
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!