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

EDC, why biasing of bjt transistor is essential?

why biasing of bjt transistor is essential?

Merits and demerits of voltage divider bias, Merits and Demerits of Voltage...

Merits and Demerits of Voltage divider bias: Merits: 1. Not like the above circuits, only one dc supply is essential. 2. Operating point is approximately independent o

Demultiplexer, full sub tractor using demultiplexer

full sub tractor using demultiplexer

What are the important requirements of a insulating material, What are the ...

What are the important requirements of a good insulating material? Important requirements of good insulating materials:- The necessity of good insulating materials can be cl

Enhancement operation of p-channel enhancement mosfet, Q. Show the Enhancem...

Q. Show the Enhancement operation of p-channel enhancement mosfet? As the gate terminal is insulated from the channel by the silicon dioxide layer, we can also apply a negative

Explain about the term embedded system, Explain about the term embedded sys...

Explain about the term embedded system. An embedded system is a system which has software embedded within computer-hardware that makes a system dedicated for an application(s)

Metal oxide field effect transistor, Metal Oxide Field Effect Transistor ...

Metal Oxide Field Effect Transistor The metal-oxide-semiconductor field-effect transistor (MOSFET/MOS-FET/MOS FET) is a device employed for amplifying or for switching electr

Number systems, Number Systems Various number systems  are decimal ( us...

Number Systems Various number systems  are decimal ( used by human beings) binary ( used by digital  systems) octal  and hexadecimal (used to represent  binary numbers in small

Solid mensuration, reflections, journey about the subject solid mensuration...

reflections, journey about the subject solid mensuration

Explain atomic structure and energy band diagram of silicon, Explain Atomic...

Explain Atomic structure and Energy Band Diagram of Silicon. Silicon : It is other most commonly used semiconductor. Atomic number of it is 14. The no. of electrons in first,

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