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

Transistor as an amplifier, Transistor as an amplifier: Figure:...

Transistor as an amplifier: Figure:  Amplifier circuit, standard common-emitter configuration. The common-emitter amplifier is planned that is why a small change i

Purpose of customer review in project management, Q. Purpose of Customer Re...

Q. Purpose of Customer Review in project management? The Customer in conjunction with the Project Manager/ Engineer decides the timing of the IFA review. This review is cond

Calculate the fraction of particles - top plate, Consider a colloidal suspe...

Consider a colloidal suspension of latex particles confined between two plates. The plates are charged, so there is an electric potential difference V between them (as shown). The

Boolean functions by employing 8-to-1multiplexers, Q. Implement the followi...

Q. Implement the following Boolean functions by employing 8-to-1multiplexers. (a) F 1 (A,B,C) = Σ m i (0, 2, 4, 6) (b) F 2 (A,B,C) = Σ m i (1, 3, 7)

What do you mean by waveforms, Q. What do you mean by Waveforms? We are...

Q. What do you mean by Waveforms? We are often interested in waveforms, which may not be constant in time of particular interest is a periodic waveform, which is a time-varying

Calculate the maximum radiation intensity, Q. The power gain of an antenna ...

Q. The power gain of an antenna is 10,000. If its input power is 1 kW, calculate the maximum radiation intensity that it can generate.

Explain about synchronous machines, Q. Explain about Synchronous machines? ...

Q. Explain about Synchronous machines? Large ac power networks operating at a constant frequency of 60 Hz in the United States (50 Hz in Europe) rely almost exclusively on sync

Circuit analysis, what is quality factor in term circuit analysis

what is quality factor in term circuit analysis

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