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

Notations that are used in transistor circuits -h parameters, Notations tha...

Notations that are used in transistor circuits:-             h ie = h 11e = Short circuit input impedance             h 0e = h 22e = Open circuit output admittance

Explain polyphase induction motor, Q. Explain polyphase induction motor? ...

Q. Explain polyphase induction motor? The polyphase induction motor operates with polyphase alternating current applied to the primary winding, usually located on the stator of

Draw the differentiator circuit, Q. Draw the differentiator circuit. Explai...

Q. Draw the differentiator circuit. Explain its principle of operation with necessary waveforms ? A circuit in which the output voltage is directly proportional to the derivati

CAO, conditional branch instruction

conditional branch instruction

Assinment, Ask question #Minimum mechanism of microwave communication 100 w...

Ask question #Minimum mechanism of microwave communication 100 words accepted#

Equalizer rings, purpose of equalizer rings in lap winding

purpose of equalizer rings in lap winding

Define some huntington postulates - boolean algebra, Define some Huntington...

Define some Huntington postulates - Boolean Algebra? Postulates 1. Commutative Law (a) A + B = B + A (b) A B = B A 2. Distributive Law (a) A (B + C) = A B + A

Example of binary subtraction - positive number , Example  of binary  sub...

Example  of binary  subtraction - positive number Case 1.   Positive  number is more than negative number ( i e, answer is positive)   Example   subtract  4510 ( 1011012

Generator, loses and efficency of generator

loses and efficency of generator

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