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

Give applications of emitter follower, Q. Give applications of emitter foll...

Q. Give applications of emitter follower The emitter follower has the following principal applications: 1. To provide current amplification with no voltage gain 2. Impede

Electromagnetic Computational (MATLAB), Hey Dear i have a hw in MATLAB by a...

Hey Dear i have a hw in MATLAB by applying Finite Element Method there(Electromagnetic) and i need your help with it. please take alook at the question and let me know if you can h

Phase shifter, Hi, I just finish writing my project literature review and ...

Hi, I just finish writing my project literature review and my supervisory asked me to add one part. This part is about Phase Shift. How phase shifters work? In Particular How the

Calculate the impedance, What is the impedance Z between terminals A and B ...

What is the impedance Z between terminals A and B of the networks shown below? Express your answers in polar form. Three voltages represented by v 1 (t)=100cosωt, v 2 (t)=7

What is meant by a bus, A bus is a collection of conducting lines that carr...

A bus is a collection of conducting lines that carrier's data, address, & control signals. A bus is two or many wire communication technique. A bus which communicate among two

Distributed Control Sytems, 1. Produce a fully-labelled sketch to show the ...

1. Produce a fully-labelled sketch to show the components of a Direct Digital Control system. 2. State the minimum number of printed-circuit cards required to construct a basic co

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 ;

add instruction, ADD Instruction This  instruction use to add  content...

ADD Instruction This  instruction use to add  contents of any  register or memory  location with the  contents of accumulator. There are two  formats for ADD  instruction to ad

Antenna fundamentals, Antenna Fundamentals We shall discuss here only t...

Antenna Fundamentals We shall discuss here only the fundamental concepts needed to understand the role of an antenna as a power-coupling element of a system. Figure illustrates

Evaluate apparent depth of a needle, Q. A tank is filled with water to a he...

Q. A tank is filled with water to a height of 12.5cm.The apparent depth of a needle lying at the bottom of the tank is measured by a microscope to be 9.4cm.What is the refractive i

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