The interference patterns in this post visualization of light waves superposition in matlab for an inline point-source hologram that would be captured by a CCD. I tried reconstructing backwards using convolution theorem, but i am not getting any image of the point.
I have seen so many different reconstruction schemes. One of the basic principles is a convolution, which is implemented as an inverse Fourier transform of the product of the Fourier transforms of the hologram and a convolution kernel. The Convolution kernel could be the Point Spread Function(PSF) of the imaging system being simulated. I have tried this but cant get any sensible images. Here is the code:
%the fourier transform of the hologram, the hologram code is in the other post
fourier_h = fft2(int_im);
% the kernel
l = 635*10^(-9);
N = 1600;
M = 1200;
z = 10;
fourier_k = PSF(N,M,l,z);
function G=PSF(N,M, lambda, z)
%generates the FT of point spread function of NxM size;
%wavelength lambda at a distance z
tx=(1:N)-floor(N/2);
%define number of columns
ty=(1:M)-floor(M/2);
%define number of rows
tx=lambda/(2*pi*N)*tx;
%define the sqrt termx
ty=lambda/(2*pi*M)*ty';
%define the sqrt termy
Tx=(ones(N,1)*tx);
%x-direction spatial frequency
Ty=(ty*ones(1,M));
%y-direction spatial frequency
k_z=(2*pi/lambda)*sqrt(1-Tx.^2-Ty.^2);
%z-component of the wave number vector
fourier_k = fft2(fourier_k);
im = ifft2(holo_f.*fourier_f);
figure
imshow(angle(im),[])
figure
imshow(abs(im)/max(max(abs(im))),[])
Something I am doing wrong?