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 voltage across the capacitor, In the circuit above, V1 is a d...

In the circuit above, V1 is a dc supply which outputs 12V, R1 has a value of 100 Ω and C1 is 100µF. The switch has been left in the position shown for a long time such that there i

Transistor as a switch, Transistor as a switch: Transistors are genera...

Transistor as a switch: Transistors are generally employed as electronic switches, for both of the high power applications including switched-mode power supplies and low power

Circuit, y more number of resistance and capacitor are used in a circuit w...

y more number of resistance and capacitor are used in a circuit what is the purpose to add ore than one..?

Microprocessors, three application of microprocessor

three application of microprocessor

stack pointer after the pop instruction, What is the position of the Stack...

What is the position of the Stack Pointer after the POP instruction? Ans) The address line is 02 greater than the previous value.

What do you mean by inaccessible area coverage, Q. What do you mean by Inac...

Q. What do you mean by Inaccessible area coverage? Marshy lands, hilly areas, etc where ground surveys could be very difficult, remote sensing technique can provide reliable an

Binary to hexadecimal conversion, Binary  to Hexadecimal  Conversion ...

Binary  to Hexadecimal  Conversion To convert a binary  number  into  hexadecimal  divide the number into group  of four  bits  each starting from the least significant bit. Th

Find vout in the circuit, (a) Find v out in the circuit shown in Figure. ...

(a) Find v out in the circuit shown in Figure. (b) With V i = 2V, R 1 = R 2 = 2.5k, R 3 = 5k, and A = 100, find v out .

Convolution, how to use tabular method to solve convolution problems

how to use tabular method to solve convolution problems

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