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

MR, how to design a single phase distribution circuit from a supply point t...

how to design a single phase distribution circuit from a supply point to a load(lights)

Transformer, how much transformer oil is used in transformers

how much transformer oil is used in transformers

Basic macroeconomic policy trilemma for open economies, Q. Explain th...

Q. Explain the basic macroeconomic policy trilemma for open economies. Answer: Of three goals mainly countries share - independence in financial policy and stability in t

Determine the voltage in given circuit, Q. In the circuit shown in Figure w...

Q. In the circuit shown in Figure with an ideal op amp, find v o as a function of v a and v b .

Discuss endp assembler directive, Discuss the ENDP assembler directive ...

Discuss the ENDP assembler directive with example ENDP: It is stands for End Procedure, which informs assembler the end of a procedure. Within assembly language programm

Example register to memory , Example  Register  to Memory Example ...

Example  Register  to Memory Example : Write assembly language  statement  to copy 25H  stored  in register D to memory location 3052H. Solution :   Assuming  3050H is s

There are many advantages of plc - stepper motor , There are many advantage...

There are many advantages of PLC a.The PLC  was specifically designed for harsh  conditions with  electrical  noise magnetic fields vibration  extreme temperatures or humidit

Find the voltage, Q. The current sources in Figure are given to be I A = 3...

Q. The current sources in Figure are given to be I A = 30 A and I B = 50 A. For the values of R 1 = 20 ,R2 = 40 , and R3 = 80 , find: (a) The voltage V. (b) The current

Determine the i-v characteristic of the network, Determine the i-v characte...

Determine the i-v characteristic of the network shown in Figure by the use of breakpoint 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