Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

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 visualizaciones (últimos 30 días)
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)

Respuestas (0)

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by