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

Simplest equivalent circuit topology using lumped elements, Simplest equiva...

Simplest equivalent circuit topology using lumped elements: For each of the Smith chart traces below, sketch (at the right of each chart) the simplest equivalent circuit topol

Single phase meters, Single Phase Meters Single phase meters are commo...

Single Phase Meters Single phase meters are commonly rated for 240 V AC supply; the current ratings are 5/10, 10/20, 2.5/10 or 5/20 A or are for direct connection to the mains

Determine the speed of prime mover of the generator, A synchronous generato...

A synchronous generator has a rotor with six poles and operates at 60 Hz. (a) Determine the speed of prime mover of the generator. (b) Repeat part (a) if the generator has 12

Assembly language instructions, Normal 0 false false false ...

Normal 0 false false false EN-IN X-NONE X-NONE

Simple harmonic motion, what is the application of simple harmonic motion i...

what is the application of simple harmonic motion in electrical engineering?

Read-and-write memory, Q. Read-and-write memory? Writing is the same as...

Q. Read-and-write memory? Writing is the same as storing data intomemory and reading is the same as retrieving the data later. RAM is said to be volatile because its contents a

Case 2 a>b - program description, Case 2 ( A>B) Suppose XX = 05H ( stor...

Case 2 ( A>B) Suppose XX = 05H ( stored  in A ) And  YY = 02H ( stored  in B). Then carry  flag will  reset by CMP instruction, since  A> B in this  case JNC  will transfer the

The relationship between cell and batteries, The relationship between cell ...

The relationship between cell and batteries  Generally, a cell delivers a certain voltage that is a function of what chemical reactions are taking place to generate the voltage

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