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

Explain the modes of connection for polyphase transformers, Discuss the mod...

Discuss the modes of connection for polyphase transformers Discuss with aid of electrical grouping and wiring connection diagrams the different types of connections for polypha

Differentiate between accuracy and precision, Q. With suitable example diff...

Q. With suitable example differentiate between accuracy and precision.  Sol. Accuracy :  Accuracy is the closeness with which instrument reading approaches the true value of

Determine the modulation index, An angle-modulated signal has the form u(t)...

An angle-modulated signal has the form u(t) = 100 cos [2πf c t+4 sin 2πf m t ],where f c =10MHz and f m = 1 kHz. Determine the modulation index β f or β p and the transmitted s

Petri nets, Discrete Systems Control: cat and mouse example with 4 rooms us...

Discrete Systems Control: cat and mouse example with 4 rooms using petri nets

Flip flops, if JK flip flop has 1600hz frequency .then what is the input fr...

if JK flip flop has 1600hz frequency .then what is the input frequency?

DC Generators, The armature of a 6 pole, 600 r.p.m. lap wound generator has...

The armature of a 6 pole, 600 r.p.m. lap wound generator has 90 slots. if each coil has 4 turns, how do you calculate the number of conductors to calculate the flux per pole to gen

Describe in brief how email system works, Describe in brief how email syste...

Describe in brief how email system works Following is a simple description of how email system works: -  Sender composes a message (and attaches a file if required) and send

Determine angle between incident ray and reflected ray, Assume a ray of lig...

Assume a ray of light is incident on a smooth reflecting surface at an angle of incidence of 15 degrees to the normal. What is the angle between the incident ray and the reflected

Compute the required value, Q. In an AM transmitter that transmits a total ...

Q. In an AM transmitter that transmits a total power of 1 kW, the unmodulated carrier power is 850 W. Compute the required value of (S i /N i )AM at a receiver, if (S 0 /N 0 )AM

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