Fourier transform - filtering, Electrical Engineering

Assignment Help:

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=imread('class_f.png');
imd=double(im);FI=fft2(imd);
phase=angle(FI);
amplitude=abs(FI);
figure;imshow(log(amplitude),[]);
figure;imshow(phase,[]);

%Where is the energy concentrated? where is low frequency in that spectrum?

help fftshift
figure;imshow(log(fftshift(amplitude)),[]);
figure;imshow(fftshift(phase),[]);

%Where is the energy concentrated? Where is the low frequency in that spectrum?

FIc=fftshift(FI);
amplitude=abs(FIc);
figure;imshow(log(amplitude),[]);
[h w]=size(FIc);
w2=uint8(w/2)
h2=uint8(h/2)
s=50;
mask=zeros(h,w);
mask(h2-s:h2+s,w2-s:w2+s)=1;
figure;imshow(mask,[]);

%What is the role of the box filter here?

FFIc=FIc.*mask;
phase=angle(FFIc);
amplitude=abs(FFIc);
figure;imshow(log(amplitude),[]);
figure;imshow(phase,[]);
FFI=ifftshift(FFIc);
RI=ifft2((FFI));
figure;
imshow(real(RI),[]);

%What happens when you apply the mask filer?
%Where do the artifacts come from?

(ii) Perform high pass filtering in the frequency domain. Write and m-file highfft.m which does this operation.
replace the mask by

mask=ones(h,w);
mask(h2-s:h2+s,w2-s:w2+s)=0;

(iii) Filter the image for different values of parameter s.
What happens when you vary the size of the box filter?


Related Discussions:- Fourier transform - filtering

Compute the efficiency of the motor, Q. A 10-hp, 230-V dc shunt motor takes...

Q. A 10-hp, 230-V dc shunt motor takes a full- load line current of 40 A. The armature and field resistances are 0.25 and 230 , respectively. The total brush-contact drop is 2 V,

What is the desirable properties of an insulation material, What is the des...

What is the desirable properties of an insulation material? Insulation materials have the desirable properties are as follows: 1. Very fine dielectric strength such as of mi

Find current in bjt, Q. A BJT is biased by the method shown in Figure. If V...

Q. A BJT is biased by the method shown in Figure. If V BEQ = 0.7V, β = 100, V CEQ = 10 V, and I CQ = 5 mA, find I 1 , I 2 , and IEQ.

DC shunt generator, in DC series generator we consider Eg=V+Ia(Ra+Rse).But ...

in DC series generator we consider Eg=V+Ia(Ra+Rse).But in DC shunt generator why it is only Eg=V+IaRa and not Eg=V+Ia(Ra*Rsh/Ra+Rsh)

Ac machines, AC Machines: We have learnt the fundamental concepts of t...

AC Machines: We have learnt the fundamental concepts of the transformer, induction motors and special type fractional kilowatt (kW) machines. In the section of transformer you

Digital Signal Processing, 1. Write a MATLAB program to generate and plot t...

1. Write a MATLAB program to generate and plot the signal x1(n) = [3 2 -2 0 7], n = 0,1,2,3,4.

Explain intrinsic semiconductor, Explain Intrinsic Semiconductor. Intr...

Explain Intrinsic Semiconductor. Intrinsic Semiconductor: An extremely pure semiconductor is termed as intrinsic semiconductor. But at absolute zero temperature its valence b

What do you know about input impedance, Q. What do you know about Input Imp...

Q. What do you know about Input Impedance? Input Impedance  : Amplifiers will be quoted as having a specific input impedance. The sort of load it will place on preceding equipm

Example of clamper circuits, Example of clamper circuits: Example of c...

Example of clamper circuits: Example of clamper circuits are as follow Voltage multiplier circuit: voltage circuit is employed to maintain a relatively low transformer pe

Motor, 2. A 6 pole lap-wound armature having 720 conductors, rotates in a f...

2. A 6 pole lap-wound armature having 720 conductors, rotates in a field of 20.35 mWb. (a) If the induced current is 72 A, what is the torque developed by armature? (b) If the indu

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