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

Peak inverse voltage - thyristor, Peak inverse Voltage   Peak  inverse v...

Peak inverse Voltage   Peak  inverse voltage is   important parameter in the design of rectifier circuit. PIV is the maximum  voltage that appears across the device  during its

Calculate the drain current, An n-channel depletion MOSFET, for which I DSS...

An n-channel depletion MOSFET, for which I DSS = 7mA and V P = 4 V, is said to be operating in the ohmic region with drain current i D = 1 mA when v DS = 0.8 V. Neglecting the

Show proper cash management, Q. Show Proper cash management? Proper cas...

Q. Show Proper cash management? Proper cash management: cash management is a important task of finance management he has to access to various cash needs at the difference time

Evaluate the damping ratio for the gain, A feedback control system with the...

A feedback control system with the configuration of Figure has the following parameters: K p = 0.5 V/rad, K a = 100 V/V, K m = 2.7 × 10 -4 N·m/V, J = 1.5 × 10 -5 kg·m 2 , and

Determine ripple factor of half wave rectifier, Illustrate VI Characteristi...

Illustrate VI Characteristics of PN junction diode (10) Illustrate Half Wave Rectifier. Disadvantage of Half Wave Rectifier. Determine ripple factor of Half Wave Rectifier.

Microprocessor, distingish between maximum and minimum modes of operations ...

distingish between maximum and minimum modes of operations of 8086 with timing diagrames

Explain the purpose of the global descriptor table register, Explain the pu...

Explain the purpose of the global descriptor table register. The GDTR stand for global descriptor table register and IDTR stand for interrupt descriptor table register conta

What is trans conductance, Q. What is Trans conductance? It is ratio of...

Q. What is Trans conductance? It is ratio of small change in drain current to the corresponding change in the gate-to-source voltage for a constant gate-to-source voltage .it i

State advantages of washing machine, State advantagesof Washing machine ...

State advantagesof Washing machine Main advantages are that these washing machines are fully automatic (wash programs are fully stored) it makes them easy to use, they are chea

Microprocessor, Write a program to count how many from your data set called...

Write a program to count how many from your data set called MYDATA, which is a set of signed single-byte numbers, has positive value and are odd numbers. Save the result in POSOD

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