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

Give the applications of carbon, Give the applications of carbon. Car...

Give the applications of carbon. Carbon : These materials used in the field of electrical engineering are manufactured from graphite and the other forms carbon as coal and so

Direct 3-bit binary decoding, Q. A table for the direct 3-bit binary decodi...

Q. A table for the direct 3-bit binary decoding is given. Show a block diagram for a 3-to-8 decoder and suggest a method for its implementation.

System of forces.., Example of unlike coplaner parallel force''

Example of unlike coplaner parallel force''

Vhdl, Im doing my final year project and Im stuck in vhdl coding. The main...

Im doing my final year project and Im stuck in vhdl coding. The main mission of this project is to design and build a tap changer which is going to be fitted to power transformers

Define shunt capacitors and reactors, Define Shunt Capacitors and Reactors ...

Define Shunt Capacitors and Reactors Shunt capacitors absorb leading VArs (i.e. they are used to supply lagging VArs) whereas reactors are used to absorbs lagging VArs. Capacit

Logical operations , Logical Operations Various  operations like and  ...

Logical Operations Various  operations like and  or exclusive  or complement compare and rotate are called  logical  operations. Generally flags ( not all always) are modified

Elementary induction machines, Elementary Induction Machines In the dis...

Elementary Induction Machines In the discussion that followed Equation, the third possiblemethod of producing constant torque was to cause the mmf axes of stator and rotor to r

What is pinch-off voltage, Q. What is Pinch - off voltage?  The reverse...

Q. What is Pinch - off voltage?  The reverse bias is relatively large near the source. As a result, the depletion region intrudes into the channel near the drain, and the effec

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