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

Electrical machine, transformer voltage induced in armatur of ac commentato...

transformer voltage induced in armatur of ac commentator machin in case tha field flux in sinosoidal?..

Evaluate the current using the loop-current method, Consider the circuit in...

Consider the circuit in Figure (a), which include a controlled source, and find the current in the 5-V source and the voltage across the 5- resistor by using (a) the loop-current

Solution manual, Ask question #Minimum 100 words accespted#i want solution ...

Ask question #Minimum 100 words accespted#i want solution manual of electronic instrumentation and measurements

Determine the current in the circuit and the voltage, Q. Two identical junc...

Q. Two identical junction diodes whose volt-ampere relation is given by Equation in which I S = 0.1 µA, V T = 25 mV, and η = 2, are connected as shown in Figure. Determine the cu

Discuss the dword assembler directive, Discuss the DWORD assembler dire...

Discuss the DWORD assembler directive with example. DWORD: This defines word type variable. The described variable may have one or more initial values into the dire

Amplifier, Amplifier Usually, an amplifier or simply amp, is any devic...

Amplifier Usually, an amplifier or simply amp, is any device which changes, generally increases, the amplitude of a signal. The connection of the input to the output of an amp

Determine the mmf of the exciting coil, Q. For themagnetic circuit shown in...

Q. For themagnetic circuit shown in Figure, neglecting leakage and fringing, determine the mmf of the exciting coil required to produce a flux density of 1.6 T in the air gap. Them

Thermal –root , A moving coil galvanometer consists of a coil  in a uniform...

A moving coil galvanometer consists of a coil  in a uniform magnetic field B o, suspended fro a fibre of torque constant C, current I produces a deflection O=nAB o i/c where n is

Primacy of mosfet, Primacy of MOSFET In the year 1959, Dawon Kahng an...

Primacy of MOSFET In the year 1959, Dawon Kahng and Martin M. (John) Atalla at Bell laboratory invented the MOSFET. Operationally and structurally diverse from the bipolar ju

Microcomputer - introduction to microprocessors , Microcomputer A micr...

Microcomputer A microprocessor is a  general purpose central processing  until of a digital  computer system. It has  arithmetic  logical unit  control circuits and a set of r

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