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

Led driver with dim function, I´m looking for some help to identify some el...

I´m looking for some help to identify some electronic parts, i have this led driver with preset dim levels that i can reach with switching the power on and off. The driver worked r

What is key bouncing, What is Key bouncing? Mechanical switches are us...

What is Key bouncing? Mechanical switches are used as keys in lots of the keyboards. When a key is pressed the contact bounce back and forth and settle down only after a littl

Carry flag - registers, Carry Fla Registers  The  size  of the accumul...

Carry Fla Registers  The  size  of the accumulator is of 8 bit  if after  any arithmetical  or logical  operation 9 th   bit is generated i e  there is  carry beyond  D 7   bi

Discuss the control words of ic8259, Discuss the control words (ICWS) of IC...

Discuss the control words (ICWS) of IC8259. The Intel 8259 is a single chip programmable interrupt controller. It is compatible with 8086, 8088 and 8085 microprocessor. It is a

Analog averaging system, Consider the analog averager where x(t) is the inp...

Consider the analog averager where x(t) is the input and y(t) is the output. (a)   Find the impulse response h(t) of the average.  Is this system causal? (b)   Let x(t)

Potentiometer, how can yuo calculate voltage,curent basing on the meter bri...

how can yuo calculate voltage,curent basing on the meter bridge?

Assembly language instructions, Normal 0 false false false ...

Normal 0 false false false EN-IN X-NONE X-NONE

Circuit realization of the srff, Q. You are to construct a modified truth t...

Q. You are to construct a modified truth table for the circuit realization of the SRFF shown in Figure. As indicated in the text, you guess an output and then go back ato check it

Find the voltage regulation and efficiency of the line, Q. A60-Hz, three-ph...

Q. A60-Hz, three-phase transmission line has a total per-phase series impedance of 35+j140 .Ifit delivers 40 MW at 220 kV and 0.9 power factor lagging, find: (a) The voltage, c

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