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

Number of holes in valence band, Number of holes in valence band: Der...

Number of holes in valence band: Derive the expression for number of holes in valence band and Fermi level in an intrinsic semiconductor. (b) By that percentage does the

Display the segment on the pic trainer, Aim: The aim of this practical ...

Aim: The aim of this practical is to work with multiplexed 7-segment displays and implement a counter and display the 7- segment on the PIC trainer. Equipment: PIC

Digital storage oscilloscope , Q. Explain digital Storage Oscilloscope (DSO...

Q. Explain digital Storage Oscilloscope (DSO) with neat diagram, (b) Give the difference between analog and digital storage oscilloscope.   Principle of operation : The availa

Define amplification factor, Q. Define amplification factor? Amplifica...

Q. Define amplification factor? Amplification factor  μ It is the ratio of the drain -source voltage (ΔVDS) to the change in the gate to source voltage (ΔV GS ) at constan

Briefly explain about laplace transform, Q. Briefly explain about Laplace t...

Q. Briefly explain about Laplace transform? Many commonly encountered excitations can be represented by exponential functions. The differential equations describing the network

Edc, transistor biasing stabilization problems

transistor biasing stabilization problems

Difference between div and idiv instructions, Mention how do the DIV & I...

Mention how do the DIV & IDIV instructions differ in their functionality DIV: Unsigned numbers division and IDIV: Signed number division.

2365 - 305 task a, List four sources of information which are essential to ...

List four sources of information which are essential to the designer of this electrical installation.

For carry flag , For carry flag  CC ( Call on Carry ) and CNC ( Call ...

For carry flag  CC ( Call on Carry ) and CNC ( Call  on No Carry ) Instructions CC Calls  the subroutine form  the specified memory  location if carry flag  is set (CY=

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