Change of phase, Electrical Engineering

Assignment Help:

Write an m-file "myfourier.m" which takes two images, computes FFT, phase and amplitude and swaps the amplitudes between two images.

function myfourier
im1=imread('cameraman.png');
imd1=double(im1); 
im2=imread('class_f.png');
imd2=double(im2);

FI1=fft2(imd1);
phase1=angle(FI1);
amplitude1=abs(FI1);

FI2=fft2(imd2);
phase2=angle(FI2);
amplitude2=abs(FI2);

NFI1=amplitude1.*exp(i*phase1);
NFI2=amplitude2.*exp(i*phase2);
RI1=ifft2((NFI1));
RI2=ifft2((NFI2));

figure;imshow(real(RI1),[]);
figure;imshow(real(RI2),[]);

NFI1=amplitude1.*exp(i*phase2);
NFI2=amplitude2.*exp(i*phase1);
RI1=ifft2((NFI1));
RI2=ifft2((NFI2));
figure;imshow(real(RI1),[]);
figure;imshow(real(RI2),[]);

What information is encoded in the amplitude and phase?
How the change of phase and amplitude affects the transformed image?


Related Discussions:- Change of phase

How is 8255 programmable peripheral interface configured, How is 8255 (Prog...

How is 8255 (Programmable Peripheral Interface) configured if its control registercomprises 9B h.  Ans 9BH => 1001 1011 =>    b6b5=00-> Mode0    b4=0-> Port A as

Determine the self inductance of the two coils, Determine the self inductan...

Determine the self inductance of the two coils: Two coils with a coefficient of coupling of 0.6 between them are connected in series so as to magnetize (i) in the same directi

Quantizer, Q. When the quantum step size δv and the step size of f (t) are ...

Q. When the quantum step size δv and the step size of f (t) are the same as in , the quantizer is said to have a gain of unity. If, on the other hand, the quantizer has a gain of K

Heterodyne wave analyzer, Q.   What is a wave analyzer? Explain any one tec...

Q.   What is a wave analyzer? Explain any one technique of wave analyzer giving its application also. OR Write short note on HETERODYNE Wave analyzer. OR Explai

Name the modes used by the dma processor to transfer data, Name the three m...

Name the three modes used by the DMA processor to transfer data? The three modes are:- a) Signal transfer mode (cycling stealing mode) b) Block transfer mode c) Demand

What are the display devices, Q. What are the Display Devices? Display ...

Q. What are the Display Devices? Display devices can be categorized as on/off indicators, numeric, alphanumeric, or graphical displays. They may also be classified as active an

Explain time division switching, Explain time division switching? Tim...

Explain time division switching? Time  Division  Switching:   A  switching  element  can  be  shared  by  number  of concurrently  active  speech  circuits.  It is the princi

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd