具有逆矩阵matlab的fft2函数

时间:2014-06-03 11:19:16

标签: matlab image-processing fft article

我正在阅读一篇文章'从图像序列中获取内在图像'。 我试图从文章中得到结果。

fnrfn:fn(x,y)=fnr(-x,-y).的反向过滤器 现在我使用傅立叶和伪逆来求解这个方程并找到

g : g*(sigma(fnr*fn)=delta

(西格玛超过n,' *'无处不在),

%% fnt_fn_conv=sigma(fnr*fn)
fftr = fft2(fnr_fn_conv); 

 % find g
 fftrp = pinv(fftr);
 G = delta_fft x fftrp; (matrix mul)
 g = ifft2(G);

我的问题是g*(sigma(fnr*fn) **!=** delta,所以g错了! 我该如何构建fnr? 是fnr=rot90(fn, 2)是否足够,或者我必须用零填充更改fnr的中心,以便更正常的函数可以正常工作?

更新:

过滤后的图像看起来很好......我使用了2个衍生滤镜(horizental和vertical)。

% given dx dy reconstruct image
% here we do the convolutions using FFT2


function [im,invKhat,k]=reconsEdge3(dx,dy,invKhat)



im=zeros(size(dx));
[sx,sy]=size(dx);
mxsize=max(sx,sy);

if ~exist('invKhat')
  [invK,k]=invDel2(2*mxsize);
  invKhat=fft2(invK);   %fourier for convolotion  G
end

%%
%% sigma fnr*r_n for 2 filters
imX=conv2(dx,fliplr([0 1 -1]),'same');
imY=conv2(dy,flipud([0;1;-1]),'same');

imS=imX+imY;  sigma

%%

imShat=fft2(imS,2*mxsize,2*mxsize);
im=real(ifft2(invKhat.*imShat));       %r
im=im(mxsize+1:mxsize+sx,mxsize+1:mxsize+sy);




function [invK,K]=invDel2(isize)

 %sigma(7) fnr*fn 
 K=zeros(isize);
 K(isize/2,isize/2)=-4;
 K(isize/2+1,isize/2)=1;
 K(isize/2,isize/2+1)=1;
 K(isize/2-1,isize/2)=1;
 K(isize/2,isize/2-1)=1;

 Khat=fft2(K);  %fourier for sigma(7)

 %add 1 to inverse without zeros
 I=find(Khat==0);   % find all zeros in Khat
 Khat(I)=1;     % put 1 where all zeros 
 invKhat=1./Khat;   % inverse
 invKhat(I)=0;  %dec the 1 added
 invK=ifft2(invKhat);
 invK=-real(invK);
 % invK and delta are not in the same dim, so we convolve
 % and then use transform fourier for invK in reconsEdge3
 invK=conv2(invK,[1 0 0;0 0 0;0 0 0],'same');

注意:conv2(invKhat,K)!= delta为什么?!

1 个答案:

答案 0 :(得分:0)

https://imgproc2014.github.io/shadow_removal/

实施了文章并完成了项目!

非常感谢...