Solving the Mystery of Hologram Interference Image

  • Thread starter Thread starter fargoth
  • Start date Start date
  • Tags Tags
    Hologram
AI Thread Summary
After extensive experimentation with digital holography, an interference image was produced showing the object in two locations instead of one. The setup involved splitting a laser beam to illuminate the object and capturing the interference with a digital camera. The issue was identified as stemming from the nature of the interference equation, which results in the cosine function reflecting both positive and negative phase differences. This means that the same amplitude can appear in multiple locations within the image. The discussion also touched on potential causes, such as the use of non-front-surface mirrors leading to multiple reflections.
fargoth
Messages
318
Reaction score
6
after many experiments with digital holography i finally got the best interference image i could...

but after analyzing it, i got my object in two locations!
it was supposed to be on the lower right side of the image, but i got it on the upper right side too...

any idea why it happened?

if you need more info, i can explain the setup i used to get the image:
(without getting into detail about how i control the intensity of each beam and make sure there are no distubances):
first i split the laser beam, and light my object with one beam (the object beam), the second beam is reflected by glass from (almost) behind the object, and a digital camera without it's lenses pictures the interference of the two rays.

after i got my image, i use MATLAB to construct the image back - i simulate a beam with the same wavelength of the original beam that light through the image - it's pretty easy actually, i only need to use inverse Fourier transform on my image multiplied by something which holds the info about the distance of the camera and the focal length i want to use for my simulated eye.

the script is very strait forward, so if anyone want it, i can post it here.

anyway, i just can't figure out why i got the second object...
 
Physics news on Phys.org
Just a wild guess, but maybe you need to use a single-sided transform. Is the reflection backwards? Could it be a reflection about the zero spatial frequency axis in the transform?
 
i don't think it's backwards... here, i'll post it:

the default ifft function in MATLAB is nonsymetric, so i don't think that's the reason...

any other ideas?
 

Attachments

  • hologram1.jpg
    hologram1.jpg
    5.4 KB · Views: 412
  • hologram2.jpg
    hologram2.jpg
    10.6 KB · Views: 432
Last edited:
just to make sure it's not the fault of my script, i'll post it here, so you can take a look:

Code:
I=imread('img.tif');
I=I(750:1773, 1:1024);

C=complex(I);
C=double(C);
lam = 632.817e-9;
%lam is the wavelength
d=1.128;

%d is the distance of the camera from my object
dx=6.8e-6;
%dx is the pixel separation of my camera

j=1:1024;
K= -i*pi/lam/d*(j.^2*dx.^2)';
L= -i*pi/lam/d*(j.^2*dx.^2);
KL=exp(K)*exp(L);
C=KL.*C;D=ifft2(C);
%inverse FFT
F=abs(D);F1=F(1:512,1:512);
F2=F(1:512,513:1024);
F3=F(513:1024,1:512);
F4=F(513:1024,513:1024);
F=[F4,F3;F2,F1];
clear F4 F3 F2 F1 D KL K L j 

F=F.^0.5;
%making the faded image of my hologram brighter.

imshow(F)
 
I found the cause!

when i picture the interference i get I=O^2+R^2+2ORcos(\Delta \phi)
where R is the reference beam's amplitude, and O is the object beam's.
so i don't really get the phase difference of the two - i get the cosine of it, and the cosine have the same value for positive phase differences as for negative ones.
 
Good to hear that you sorted it out, fargoth. My thought was that you might not be using front-surface mirrors, and thus getting muliple reflections.
 
Thread 'Question about pressure of a liquid'
I am looking at pressure in liquids and I am testing my idea. The vertical tube is 100m, the contraption is filled with water. The vertical tube is very thin(maybe 1mm^2 cross section). The area of the base is ~100m^2. Will he top half be launched in the air if suddenly it cracked?- assuming its light enough. I want to test my idea that if I had a thin long ruber tube that I lifted up, then the pressure at "red lines" will be high and that the $force = pressure * area$ would be massive...
I feel it should be solvable we just need to find a perfect pattern, and there will be a general pattern since the forces acting are based on a single function, so..... you can't actually say it is unsolvable right? Cause imaging 3 bodies actually existed somwhere in this universe then nature isn't gonna wait till we predict it! And yea I have checked in many places that tiny changes cause large changes so it becomes chaos........ but still I just can't accept that it is impossible to solve...
Back
Top