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

Determine the circuit of three transistors dynamic ram cell, a. Determine t...

a. Determine the circuit of three transistors dynamic RAM cell and define briefly read and write functions. b. Write short note on factors influencing choice of layer for wiring

Obtain an expression for the closed-loop transfer function, Q. A noninverti...

Q. A noninverting op-amp circuit and its closed-loop representation are given in Figure. Obtain an expression for the closed-loop transfer function H(ω) = Y (ω)/X(ω) and comment on

Digital signal processing, A DT LTI system has the following impulse respon...

A DT LTI system has the following impulse response: h(n)=[cos(pi/+delta(n)] u(n-3)u(n-2) (a) Find the system’s frequency response h(e^jw ). (b) Sketch the magnitude and phase respo

Draw the energy diagram of a pn junction, Question: a). Draw the energy...

Question: a). Draw the energy diagram of a pn junction: (i) at thermal equilibrium, (ii) when a forward bias with magnitude half the built in potential (V = φk/2) is applie

What is the use of modem control unit in 8251, What is the use of modem con...

What is the use of modem control unit in 8251? The modem control unit handles the modem handshake signals to coordinate the communication among the modem and the USART.

Semiconductor equations, Semiconductor Equations  The semiconductor e...

Semiconductor Equations  The semiconductor equations that are relating these variables are shown below: Carrier density: n = n i exp (E FN - E i / KT)        (1)

What is power gain, Q. What is power gain? Power gain is the ratio of p...

Q. What is power gain? Power gain is the ratio of power delivered to the load to power delivered to the amplifier is the power gain. A p =P o /P i     =V o I o /V i I s

Increase in ht and lt ratio, Increase in HT and LT Ratio It is well kn...

Increase in HT and LT Ratio It is well known that for high HT/LT ratio, the losses will be low. The losses for a given quantum of power supplied through a line are inversely p

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