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

What is choke packet, a. Explain Choke packet. Describe implicit Congestion...

a. Explain Choke packet. Describe implicit Congestion Signalling and explicit Congestion Signalling in Congestion control. b. State routing parameters in packet switching networ

Why ce configuration is widely used in amplifier circuits, Q. Why CE config...

Q. Why CE configuration is widely used in amplifier circuits? The main ability of an transistor lies in amplifying weak signals. The transistor cannot alone perform this functi

Energy band diagram, E n e r gy Band Diagram Energy band d...

E n e r gy Band Diagram Energy band diagram in qualitative form is sketched by following the following process: 1. The semiconductor device is supposed to be ma

Compute the required value of external series resistance, A 200-V dc shunt ...

A 200-V dc shunt motor has a field resistance of 200  and an armature resistance of 0.5 . On no load, the machine operates with full field flux at a speed of 1000 r/min with an a

Cpopy 16 bit data register pair , cpopy 16 bit data  Register pair E...

cpopy 16 bit data  Register pair Example  : Copy  16 bit  data 3 E 21H  in register pair BC Solution   :The  statement  is LXI B 3E 21H 16  bit data  3E 21H in reg

Develop a block diagram for a bcd encoder, Q. Based on the 8421 BCD code fo...

Q. Based on the 8421 BCD code for decimal digits 0 through 9, develop a block diagram for a BCD encoder and its implementation scheme.

What is the maximum speedup, Question: (a) Explain the following metric...

Question: (a) Explain the following metrics: (i) Throughput (ii) Latency (iii) IPC (b) Of the three factors in the equation (EXCPU = Number of instructions × CPI × cy

Sinusoidal inverter, i am going to make a sinusoidal inverter as my final y...

i am going to make a sinusoidal inverter as my final year project kindly help me in this regard.How can i make this project?

Find magnitude and direction developed torque, Q. The self and mutual induc...

Q. The self and mutual inductances of a machine with two windings are given by L 11 = (1 +sin θ), L 22 = 2(1 + sin θ), and L 12 = L 21 = M = (1-sin θ). Assuming θ = 45°, and le

Obtain an expression for b, Q. Consider an in?nitely long, straight wire (i...

Q. Consider an in?nitely long, straight wire (in free space) situated along the z-axis and carrying current of I A in the positive z-direction. Obtain an expression for ¯ B everywh

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