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

Determine IS in the given circuit, Q. Given that V 0 = 10 V, determine IS ...

Q. Given that V 0 = 10 V, determine IS in the circuit drawn in Figure.

Analog-to-digital converters, Analog-to-Digital (A/D) Converters An A/D...

Analog-to-Digital (A/D) Converters An A/D converter converts analog input signals into digital output data in many areas such as process control, aircraft control, and telemetr

Status signals - pins and signals , Status Signals There are three st...

Status Signals There are three status  signals IO/M s and s 1 . All  these  signals  are output  signals. IO/ M - it is a status  signals  used to distinguish  whether  the

Encoder - introduction to microprocessors , Encoder The encoder is a...

Encoder The encoder is a logic  circuit  which  provides  the binary code is  output  for each input each input signal. In  other words  we can  say that it performs  just  op

Explain what happen as the frequency increases, Question: (a) A typica...

Question: (a) A typical RF filter is made up of sections using circuit components. One example of a section is the Inductor-Capacitor (L-C) section. State two other types of

Calculate the resistance of a 2 km length of aluminium, Calculate the resis...

Calculate the resistance of a 2 km length of aluminium overhead power cable if the cross-sectional area of the cable is 100 mm 2 . Take the resistivity of aluminium to be 0.03x10 -

Define lines parameters, Define Lines Parameters In power system analys...

Define Lines Parameters In power system analysis, the parameters of interest when modelling power lines are:  inductance, capacitance, series resistance and leakage resistance.

Self inductance , Self Inductance If a current is passed through a co...

Self Inductance If a current is passed through a coil, it creates a flux within the coil. Any attempt to change this flux will create a back emf that acts to oppose the chang

Complement method of binary subtraction , complement method of binary subtr...

complement method of binary subtraction This  method is  used for  subtraction  as subtraction is  converted to addition. Use following  steps  to perform  subtraction ;

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