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

Obtain an expression for the induced emf, Q. Consider a conducting loop of ...

Q. Consider a conducting loop of length l and width w, as shown in Figure, rotated about its axis (shown by the broken line) at a speed of ωm rad/s under the influence of a magneti

Determine the armature current, A 2300-V, three-phase, wye-connected, round...

A 2300-V, three-phase, wye-connected, round rotor synchronousmotor has a synchronous reactance of 3 per phase and an armature resistance of 0.25  per phase. The motor operates on

Find the real and reactive powers per phase, Q. A 345-kV, 60-Hz, three-phas...

Q. A 345-kV, 60-Hz, three-phase transmission line delivers 600 MVA at 0.866 power factor lagging to a three-phase load connected to its receiving- end terminals. Assuming that the

Explain lithography, Explain Lithography. Lithography - This is one ...

Explain Lithography. Lithography - This is one of the processes which is carried out throughout manufacture of integrated circuits. Silica oxide (SiO 2 ) layer is thermally

Find the output function y for the logic circuits, Q. Find the output funct...

Q. Find the output function Y for the logic circuits of Figure (a) and (b). An AOI (AND-OR-INVERT) gate is shown in Figure with its two possible realizations. Obtain the output

Relative and absolute motion measuring device, a) With the help of a neat a...

a) With the help of a neat and clean sketch illustrate the difference between relative and absolute motion measuring device. b) Discuss electromechanical methods for calculating

Calculate the power required from power plant, You will develop a simulatio...

You will develop a simulation that will consist of the following five components: Controller: This script component controls the simulation. It shall permit the user to: 1. C

Find the reverse saturation current of the bej, Q. A silicon BJT has an emi...

Q. A silicon BJT has an emitter current of 5m Aat 300 K when the BEJ is forward-biased by vBE = 0.7 V. Find the reverse saturation current of the BEJ. Neglecting ICBO, calculate iC

Developed diagram of simplex progressive 2 layer lap winding, Q. Draw the d...

Q. Draw the developed diagram of a simplex progressive 2 layer lap winding for a 4 pole generator with 12 coils clearly indicating the position of brushes.   Sol.  No. o

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