我正试图使用以下代码使用高斯滤镜盲目解开图像 但我知道每当滤波器包含零时我都会遇到问题,所以我想知道是否有其他解卷积方法但使用FFT
function [ out ] = imblur( file)
img = im2double(imread(file));
h = fspecial('gaussian', [15 15], 3);
img_red = img(:,:,1);
img_blue = img(:,:,2);
img_green = img(:,:,3);
[m,n] = size(img_red);
[mb,nb] = size(h);
% output size
mm = m + mb - 1;
nn = n + nb - 1;
x1(:,:,1) = (ifft2(fft2(img_red,mm,nn)./ fft2(h,mm,nn)));
x2(:,:,2) = (ifft2(fft2(img_blue,mm,nn)./ fft2(h,mm,nn)));
x3(:,:,3) = (ifft2(fft2(img_green,mm,nn)./ fft2(h,mm,nn)));
out = cat(3, x1(:,:,1), x2(:,:,2), x3(:,:,3));
imshow(out);
答案 0 :(得分:0)
用epsilon替换零工作得很好。