Image deblurring on Matlab
Im new to MatLab. Been playing around and reading through the help guide but i can't seem to solve this situation. I have removed the noise by using gaussian algorithm. That was successful but I've not managed to get the image to be clear, i've tried using Richardson-Lucy deblurring algorithm but it doesn't work. Any idea how can i solve this? Thnx in advance. Here's what i've done so far. image size = 21kb image dimension = 264 x 126 img = imread('car_plate.jpg') subplot(331); imshow(img), title('Original Image') PSF = fspecial('gaussian',15,15); blur = imfilter(img,PSF,'replicate'); subplot