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

Water.., hot and cold lime soda process

hot and cold lime soda process

What is traffic engineering, Q. What is Traffic Engineering? Traffic en...

Q. What is Traffic Engineering? Traffic engineering provides the foundation for analysis and design of telecommunication network to carry a given traffic at a particular loss p

Signal and system, You are required to implement below shift system in MATL...

You are required to implement below shift system in MATLAB, t0 is the amount of shift towards left or right. y(t)= x(t-t0) Implement MATLAB code, where shift should be taken as

Transmission and swiching systems, using a combination of uniselectors and ...

using a combination of uniselectors and two motion selectors, draw a schematic of thousand line exchange and explain its working

Obtain a pos expression, Q. The K map of a logic function is shown in Figur...

Q. The K map of a logic function is shown in Figure. (a) Obtain a POS expression and its corresponding realization. (b) For the purpose of comparison, obtain the correspondin

What is polarisation, What is polarisation? Explain. While a dielectric...

What is polarisation? Explain. While a dielectric material is related an electric field the dipoles of the material find oriented in a certain direction under the effect of the

Sketch the phasor diagram of the voltage, Q. The line-to-line voltage of a ...

Q. The line-to-line voltage of a balanced wye connected three-phase source is given as 100 V. Choose V AB as the reference. (a) For the phase sequence A-B-C, sketch the phasor

Stator voltage control methods - motor control , Stator Voltage Control Met...

Stator Voltage Control Methods By  controlling  the applied voltage  the speed  of an  induction motor  can be  controlled. Since  the output  torque of 3-? induction motor  i

Working of analog to digital converter, a) Write down a short note on compe...

a) Write down a short note on compensators. b) Classify filter with relevant sketches. c) Illustrate the principle and working of Analog to Digital converter.

Positive edge triggered d flip flop , Positive  Edge Triggered D Flip Flop...

Positive  Edge Triggered D Flip Flop In this type  of D flip Flop  ( 7475)  shown in figure  the output changes with  positive  edge  of the CLK when CLK  changes  from 0 to 1

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