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

Bode plot phase ad gain margin, Using Bode plot calculate (a) Phase margin ...

Using Bode plot calculate (a) Phase margin (b) Gain margin (c) Stability of closed loop system. The open transfer function of the system is t=30/(s+2)/(s+3)Using Bode plot calcula

Explain basic working of integrators, Q. Explain basic working of Integrato...

Q. Explain basic working of Integrators? Figure shows a noninverting integrator, which can be seen to be a negative impedance converter added with a resistor and a capacitor. N

FRACTIONAL PID TUING USING GA FOR LOAD FREQUENCY CONTROL, Iam doing my proj...

Iam doing my project on LFC using tuned FOPID.I have considered a two area model..I need help regarding my project.i need help regarding implementation of GA MATLAB code for a two

Bipolar junction transistor, Bipolar junction transistor: Transistors ...

Bipolar junction transistor: Transistors are so named as they conduct via using both majority and minority carriers. The bipolar junction transistor that is abbreviated as BJT

Explain about the chrominance signal, a. Determine how color sync burst and...

a. Determine how color sync burst and H deflection sync vary in amplitude and frequency. Also explain the difference in timing among the 3.58 MHz color sync burst and 3.58 MHz chro

3-phase 3 wire meter, 3-Phase 3 Wire Meter A 3-phase 3 wire meter has ...

3-Phase 3 Wire Meter A 3-phase 3 wire meter has 2 elements of each category on the other hand of 3 elements as in the case of 3-phase 4 wire meter. The primary principle of op

Determine the location and the value of the point charge, Q. The electric f...

Q. The electric field intensity due to a point charge in free space is given to be Determine the location and the value of the point charge.

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