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

Development of PLC- controlled crystallization model, 1.Describe the techno...

1.Describe the technological process of crystallization. 2. Compose the requirements to developed crystallization model.stion..

Inductors, factors used to classify inductors

factors used to classify inductors

Physics, what is the significant of damping coficient

what is the significant of damping coficient

Find the decibels of improvement in signal-to-noise ratio, If a compressor ...

If a compressor in a system can change a message crest factor from 3.2 to 2, while maintaining its peak amplitude constant, find the decibels of improvement in signal-to-noise rati

Explain about rotating machines, Q. Explain about Rotating Machines? Th...

Q. Explain about Rotating Machines? Themost widely used electromechanical device is a rotatingmachine, which utilizes themagnetic field to store energy. The main purpose of mos

Explain modulation and sampling, Q. Explain Modulation and sampling? Mo...

Q. Explain Modulation and sampling? Modulation is the process whereby the amplitude (or another characteristic) of a wave is varied as a function of the instantaneous value of

Saturate the transistor with the base overdriven, For the circuit of Figure...

For the circuit of Figure, given that V CC = 5V, R C = 1k, β = 100, and the high range is 4 to 5 V, choose R B such that any high input will saturate the transistor with the ba

permanent magnet stepper motor - stepper motor , Normal 0 fa...

Normal 0 false false false EN-IN X-NONE X-NONE   Permanent   Magnet Stepper Motor The s

Effect of supply voltage - stepper motor , Effect of Supply  Voltage ...

Effect of Supply  Voltage a.As the applied  as voltage  is increased hysteresis loss increases. b.Eddy current losses are given by W e α f 2 t 2 B 2 m Where B m =

Accidents, what are accidents in an organisation

what are accidents in an organisation

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