フィルターのクリア

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.

2 ビュー (過去 30 日間)
Hamza Zaheer
Hamza Zaheer 2018 年 11 月 24 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
image.jpg
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 件)

この質問は閉じられています。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by