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

Charge carriers in semiconductors, Charge Carriers in Semiconductors ...

Charge Carriers in Semiconductors In a metal, the atoms are imbedded in a "sea" of free electrons, and these electrons can move as a group under the influence of an

Fast recovery diodes - types of power diodes , Fast  Recovery diodes ...

Fast  Recovery diodes The fast  recovery  diodes low recovery times. These diodes  are manufactured by diffusion. They are used in converter circuits where  the speed  of reco

101, make the following conversion 1000 Mx to Wb

make the following conversion 1000 Mx to Wb

What is asynchronous data transfer, What is asynchronous data transfer? ...

What is asynchronous data transfer? It is a data transfer method which is used when the speed of an I/O device does not match with the speed of the microprocessor. Asynchronous

Lc filter, LC Filter To the load resistance R L the ripple factor i...

LC Filter To the load resistance R L the ripple factor is directly proportional in the inductor filter and inversely proportional to R L in the capacitor filter. Hence i

Discuss in detail about pulse broadening graded index wave, Discuss in deta...

Discuss in detail about pulse broadening in graded index waveguide ? Intermodal dispersion within multimode fibers is minimized along with the use of graded index fibers, ther

Detrmine when the current flowing in the conductor, A conductor 300 mm long...

A conductor 300 mm long moves at a uniform speed of 4 m/s at right-angles to a uniform magnetic field of flux density 1.25 T. Verify the current flowing in the conductor when  (

Explain mechanisms of propagation of radio communication, Explain mechanism...

Explain mechanisms of propagation of radio communication. Radio communication deals with electronic radiation of electromagnetic energy from one point to another through atmosp

Analysis in equilibrium, Analysis in equilibrium : Solution of Poisson'...

Analysis in equilibrium : Solution of Poisson's Equation with suitable boundary conditions - Non-equilibrium analysis: The electron and hole densities are no longe

Sketch the depletion mosfet drain characteristics, Q. Sketch the depletion ...

Q. Sketch the depletion MOSFET drain characteristics The depletion-type MOSFET has a structure similar to that of the enhancement-type MOSFET with one important difference: The

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