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 tick of the material, Tick off the material, which is different f...

Tick off the material, which is different from the group (A) Constantan.            (B) Manganin. (C) Nichrome.               (D) Brass. Ans: Tick off the materi

Input characteristics - power semiconductor devices , Input Characteristics...

Input Characteristics Transistors  can be  operated in the switching  mode. If  base  current IB  is zero transistor is in  an ON  state  behaves as a switch. If  the base  cur

Cpu based exchange, CPU Based Exchange:   In centralized control, all contr...

CPU Based Exchange:   In centralized control, all control equipment is replaced by a single processor which should be quite powerful. It should be capable of processing 10 to 100 c

Determine the full load voltage regulation, A 25KVA, 3 phase, wye-connected...

A 25KVA, 3 phase, wye-connected, 400v synchronous generator has a synchronous impedance of 0.05 +j1.6 ohms per phase. Determine the full load voltage regulation at (a) 0.8 power

Assumption of capital asset pricing models, Q. Assumption of capital asset ...

Q. Assumption of capital asset pricing models? 1) Investor; s objective is to maximize the utility of terminal wealth: investor aims at maximizing the utility of hi9s wealth r

What is memory paging, What is memory paging? The memory paging mechan...

What is memory paging? The memory paging mechanism located inside the 80386 and above permits any physical memory location to be assigned to some linear address.

Find ia for which the generator efficiency is maximum, Q. A separately exci...

Q. A separately excited dc generator with an armature-circuit resistance Ra is operating at a terminal voltage Vt, while delivering an armature current Ia, and has a constant loss

Evaluate complex power in power system, Q. Evaluate complex power in power ...

Q. Evaluate complex power in power system? The complex power ¯S in a single-phase systemis the complex sum of the real (P) and reactive (Q) power, expressed as follows:

Difference, Difference between bootstrip sweep circuit and Miller sweep ci...

Difference between bootstrip sweep circuit and Miller sweep circuit

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