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

Find the ratio of the speed of the generator, Q. A dc shunt machine has an ...

Q. A dc shunt machine has an armature winding resistance of 0.12  and a shunt-?eld winding resistance of 50 . The machine may be run on 250-V mains as either a generator or a mot

Semiconductor in equilibrium, Semiconductor  in Equilibrium Equilib...

Semiconductor  in Equilibrium Equilibrium in semiconductors implies the following: (i) Steady state: ∂Z / ∂t = 0 In which Z is any physical quantity like charge, volt

Electric Circuit, The manufacturer of a 6V dry-cell flashlight battery says...

The manufacturer of a 6V dry-cell flashlight battery says that the battery will deliver 15 mA for 60 continuous hours. During that time the voltage will drop from 6V to 4V. Assume

Explain state-variable techniques, Q. Explain state-variable techniques? ...

Q. Explain state-variable techniques? The matrix formulations associated with state-variable techniques have largely replaced the block-diagram formulations. Computer software

Shunt dc motor, Shunt DC motor In this arrangement, the armature and f...

Shunt DC motor In this arrangement, the armature and field coils are connected in parallel (the motor is called 'shunt connected').     Analysis With refere

Home energy management.., I need help to build a circuit diagram for home e...

I need help to build a circuit diagram for home energy management.It includes load controllers,a central system in which we should programme all of the control commands,and a two w

Electric roadway system specification, The electric roadway system shall ut...

The electric roadway system shall utilize solar energy as the main power source. The electric roadway system shall negotiate with the power utility on backup power supply.

Find maximum probable percentage error in the measurement, Q. A current of ...

Q. A current of 65 A is measured with an analog ammeter having a probable error of ± 0.5% of full scale of 100 A. Find the maximum probable percentage error in the measurement.

Fourier transform - filtering, Fourier transform  (filtering) (i) Perf...

Fourier transform  (filtering) (i) Perform low pass filtering in the frequency domain. Write and m-file lowfft.m which does this operation. lowfft.m function lowfft im

Binary codes, what are the types of binary codes

what are the types of binary codes

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