필터 지우기
필터 지우기

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일)
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