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

Calculate the speed of motor when armature current is 25 a, Q. The magnetiz...

Q. The magnetization curve taken at 1000 r/min on a 200-V dc series motor has the following data: Field current, A: 5 10 15 20 25 30 Voltage, A: 80 160 202 222 236 244 Th

Identify the key cultural dimensions, This assessment requires you to refle...

This assessment requires you to reflect on an intercultural communication event that you have experienced between yourself and an Australian. a)  Describe the event without eval

Properties of a semiconductor, Properties of a semiconductor: What pr...

Properties of a semiconductor: What properties of a semiconductor are determined from a Hall effect experiment ? Sol. The Hall Effect experiment is used to determine th

Show the classifications of data network, Q. Show the Classifications of Da...

Q. Show the Classifications of Data Network? Classifications of Data Network: Data Networks are categorized according to their geographical coverage: • Wide area networks

Classification of feedback control systems by control action, Classificatio...

Classification of Feedback Control Systems by Control Action A more common means of describing industrial and process controllers is by the way in which the error signal E(s) i

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

Analogue and digital, 1. Pattern recognition A synchronous sequential machi...

1. Pattern recognition A synchronous sequential machine is to generate 1 on output z after the next clock pulse whenever the bit sequence on input x has exactly two 0’s in the last

High-pass t filters, High-pass T filters: Three-element filters can co...

High-pass T filters: Three-element filters can comprise a 'T' or 'π' topology and in either geometries, a low-pass, band-pass, high-pass, or band-stop characteristic is feasib

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