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

Determine average of integers by assembly language program, Write an assemb...

Write an assembly language program to determine average of 'n' integers. Ans  MOV AX, 0000; Initial sum 0000  MOV BX, 0000  MOV SI, 0201H  MOV CX, [SI]  BACK: I

ADC and DAC design, I''m trying to design ADC using MAX1198 and DAC using I...

I''m trying to design ADC using MAX1198 and DAC using IDAC in Multisim 12 but none of them are working. I need some help in this regard

Switching characteristics during turn off, Switching Characteristics During...

Switching Characteristics During Turn off The techniques  used for turning off a thyristor is known  as  commutation techniques. A  thyristor can be can be  turn off by reducin

Static rotor resistance control methods - motor control , Static Rotor Res...

Static Rotor Resistance Control Methods This method is used only for slip  ring induction motor in SRIM  3- phase  variable  resistor can be inserted in the rotor  circuit and

For parity flag - conditional jumps , For parity Flag  JPE ( jump on ...

For parity Flag  JPE ( jump on Parity even ) and  JPO  ( Jump or Parity Odd) Instruction JPE  transfer  the execution of the  program  to the specified memory  address i

Briefly explain automotive ignition system, Q. Briefly explain Automotive I...

Q. Briefly explain Automotive Ignition System? Ignition systems in automobiles have been designed as a straightforward application of electrical transients. Figure shows a simp

Compensating windings, #full discuss on compensating windingsquestion..

#full discuss on compensating windingsquestion..

Explain continuous-data and discrete-data systems, Q. Explain Continuous-da...

Q. Explain Continuous-data and discrete-data systems? A continuous-data system is one in which the signals at various parts of the systemare all functions of the continuous-tim

Derive the expression for steady state error, Derive the mathematical expre...

Derive the mathematical expression for steady state error of first order system with unit ramp signal. Discuss the following - proportional cum integral control - proporti

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