Filtering, Electrical Engineering

Assignment Help:

Filtering

 (i) Write an m-file "mymedian.m" which will take an image and filter size and perform median filtering. Display input and output image. Use 

help median

function imm=mymedian(imn,msize)
[h w]=size(imn);
kernel_size=?
imm=imn;
for i=msize+1:(h-msize)
  for j=msize+1:(w-msize)
    imm(i,j)=median(reshape(imn(i-msize:i+msize,j-msize:j+msize),1,kernel_size));
  end
end

What is the median value of an image?

Comment on the complexity (number of operations per pixel) of the algorithm. 

(ii) Write an m-file "mygaussian.m" which will take an image and filter size and perform Gaussian filtering. Display input and output image.


function img=mygaussian(imn,sigma)
g=gauss(sigma);

img=?(iii) Perform median and Gaussian filtering on  face_g.png, face_m.png,statue_m.png.
What kind of noise the median filer is useful for?
What kind of noise the Gaussian filer is useful for?


Related Discussions:- Filtering

Clapp oscillator, having looked at the circuit, i first wanted to start my ...

having looked at the circuit, i first wanted to start my frequency from 0 and plot for 10000 to 20000. so in matlab i used f = 0:10000:20000; but the equation for frequency is f= 1

What do you mean by oscilloscope, Q. What do you mean by Oscilloscope? ...

Q. What do you mean by Oscilloscope? To measure time-varying signals (voltages and currents), an instrument known as an oscilloscope is employed. It can be used as a practical

Obtain the thevenin equivalent at terminals, Consider the circuit of Figure...

Consider the circuit of Figure (a), including a dependent source. Obtain the Thévenin equivalent at terminals a-b.

C program, write a c program for suggler message decoder

write a c program for suggler message decoder

Algorithm pseudo code and flow charts , Algorithm  pseudo code and flow  ...

Algorithm  pseudo code and flow  charts Algorithm:   before  writing  the program  the programmer must understand  the problem  for which are  program is to  be written. Then

Find the nature of the armature voltage, Q. The flux-density distribution p...

Q. The flux-density distribution produced in a two - pole synchronous generator by an acexcited field winding is B(θ, t) = B m sin ω 1 t cos θ Find the nature of the armatur

Bathub curve, what is an useful life time in bathtub curve?

what is an useful life time in bathtub curve?

Obtain a thevenin equivalent circuit, Q. (a) Obtain a Thevenin equivalen...

Q. (a) Obtain a Thevenin equivalent circuit at terminals A-B in the circuit. (b) What impedance ¯ZL, when connected to A-B, produces maximum power in ¯ZL? (c) Find the val

Evaluate the transfer function of the nested-loop system, Q. Determine the ...

Q. Determine the transfer function C(s)/R(s) of the nested-loop feedback system shown in Figure.

..analong course design, Askhigh precision linear amplifier question #Mini...

Askhigh precision linear amplifier question #Minimum 100 words accepted#

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