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

Quality control systems, Give three reasons why a chamfer shouldn't be cons...

Give three reasons why a chamfer shouldn't be considered an "unimportant" dimension. When conducting an audit, what is the first step and what is its purpose? Why will calcul

Explain public mode, Explain PUBLIC For large programs several small mo...

Explain PUBLIC For large programs several small modules are linked together. In order that the modules link together correctly any variable name or label referred to in other m

Estimate the required bandwidth using Carson''s rule, A 10-kHz tone is used...

A 10-kHz tone is used to frequency modulate a carrier; the peak deviation is 75 kHz. Use Carson''s rule to estimate the bandwidth.

Solid state, What are the fundamentals of solid states?

What are the fundamentals of solid states?

Circuit, y more number of resistance and capacitor are used in a circuit w...

y more number of resistance and capacitor are used in a circuit what is the purpose to add ore than one..?

Junctions and diodes, An intrinsic semiconductor at room temperature has fr...

An intrinsic semiconductor at room temperature has free electrons

Dsp causal LTI system, cosider a causal LTI system whose system function is...

cosider a causal LTI system whose system function is H(z)=1-1/5z^-1/(1-1/2z^-1+1/3z^-2)(1+1/4z^-1) find the direct form 1 and direct form 2

Explain virtual memory, Explain virtual memory. The term virtual memor...

Explain virtual memory. The term virtual memory considers as to something that appears to be present but in fact it is not. The virtual memory technique permits users to use m

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