MATLAB: How to restore the image blur into a crystal clear image , of motion blur of the image is not clear to blur and to clear again

displayImage Processing Toolbox

Help me

Best Answer

You can blur the image with conv2() or imfilter(). For example
windowSize = 15;
psf = ones(windowSize)/windowSize^2; % Uniform box blur
blurryImage = conv2(double(grayImage), psf, 'same');
imshow(blurryImage, []);
Related Question