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

Basic principles of electromechanical energy conversion, Q. Basic principle...

Q. Basic principles of electromechanical energy conversion? Energy available in many forms is often converted to and from electrical form because electric energy can be transmi

Show applications for synchronous motors, Q. Show Applications for Synchron...

Q. Show Applications for Synchronous Motors? With constant-speed operation, power factor control, and high operating efficiency, three-phase synchronous motors are employed in

How many simultaneous calls can be made during peak time, Q. In a hundred-...

Q. In a hundred-line exchange 24 two-motion selectors are used. Draw schematic you suggest for this exchange and illustrate its working. How many simultaneous calls can be made du

Technical loss reduction - power supply, Technical Loss Reduction - Power S...

Technical Loss Reduction - Power Supply 1. Technical loss reduction could be achieved through several measures such as network reconfiguration, load balancing, network recondu

Rectification, diagram for full wave bridge circuit single phase,full wave ...

diagram for full wave bridge circuit single phase,full wave centre tap circuit and haif wave rectification circuit

Transformers, A 15kVA has a turns ratio 1:10. If the voltage applied is 13....

A 15kVA has a turns ratio 1:10. If the voltage applied is 13.8kV and the applied load is 20+j6. Find the current in the secondary winding and the active and reactive power consumed

Compute the percentage change, Q. A particular BJT has a nominal value of α...

Q. A particular BJT has a nominal value of α 0.99. Calculate the nominal β.If α can easily change ±1%, compute the percentage changes that can occur in β.

Produce a storage scope using peripheral interface control, First section ...

First section Aim: the aim of this project is to produce a storage scope using a PIC. In this project, several samples were taken from an analog signal and stored in the memo

For zero flag - conditional jumps , For  Zero  Flag JZ ( Jump on Ze...

For  Zero  Flag JZ ( Jump on Zero) and JNZ ( jump on no zero ) Instruction JZ  transfer  the  execution of the program to the  speciffed address if zero  flag is set (Z=

Explain the meaning of duality in boolean algebra?, Explain the Meaning of ...

Explain the Meaning of Duality in Boolean Algebra? Any algebraic equality that derived from the axioms of the Boolean algebra remains true when the operators OR and AND are in

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