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

Digital communication systems, Q. Digital communication systems? Today ...

Q. Digital communication systems? Today digital communication systems are in common use, carrying the bulk of our daily information transmission through a variety of communicat

Determine voltage and current gain, Q. Determine voltage and current gains ...

Q. Determine voltage and current gains for the CE BJT amplifier shown in Figure with the following parameters: R 1 = 30,000, R 2 = 9000 ,R C = 750 ,R E = 250 , R L = 1000 

RC phase shift oscillator, For the RC phase-shift oscillator if c=1pF and R...

For the RC phase-shift oscillator if c=1pF and R=10K determine the value of Rf

Show function of compensating plate in interferometer, Q. Show Function of ...

Q. Show Function of Compensating Plate in interferometer? In absence of plate G2 the reflected ray passes the plate G1 twice, whereas the transmitted ray does not passes even o

Signals in noise, Signals in Noise: Let us now consider a weak informat...

Signals in Noise: Let us now consider a weak information signal that is to be amplified by a noisy amplifier. The signal-to-noise ratio (SNR), usually expressed in decibels, be

Management of Initiatives and Focus - KPI, Management of Initiatives and Fo...

Management of Initiatives and Focus - KPI In this era of fierce competition and to have the competitive edge, it is significant to conserve the material and human resources th

Drive operating envelopes and induction machines, Solve using data from the...

Solve using data from the DC machine data sheet, using the "hot" resistance value for all calculations. Note that the value of K on the sheet is for rated (100%) field flux.  Assum

Data rates in pstns, Data rates in PSTNs: A voice channel in a PSTN is ...

Data rates in PSTNs: A voice channel in a PSTN is band limited with a nominal bandwidth of 3.1 kHz. A first-cut estimate of this can be attained from Nyquist's theorem that app

What do you mean by dearness allowance, Q. What do you mean by Dearness All...

Q. What do you mean by Dearness Allowance? Ans: Dearness Allowance is in the type of compensation for Established increase in the cost of living and comprised of Dearness All

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