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

How linear sweep voltage is generated, Q. With a suitable block circuit, sh...

Q. With a suitable block circuit, show how linear sweep voltage is generated ? The above figure shows a basic sweep waveform generator. The switching action of the switch

Digital electronics, With the use of clocked JK flip-flops, draw and explai...

With the use of clocked JK flip-flops, draw and explain the working principle of a 3-bit binary ripple counter.

Obtain the sop expressions for given k map, Q. The K map of a logic functio...

Q. The K map of a logic function is shown in Figure, in which ds denote don't-care conditions. Obtain the SOP expressions.

Address bus - bus organisation , Address Bus The address  bus is the gr...

Address Bus The address  bus is the group  of 16 lines. It is used  to carry  the address of memory  location and  addresses  of input  and output  ports as shown. It is a unid

Calculation of AT&C loss, how to make a matlab program for calculation of A...

how to make a matlab program for calculation of AT&C loss for perticular area

Draw a relay construction diagram, Draw a relay construction diagram and br...

Draw a relay construction diagram and briefly explain the operation of a relay. Define the terms normally open and normally closed. Define the terms Set and Reset for relays.

Explain the synchronous machines, Explain the Synchronous Machines? A s...

Explain the Synchronous Machines? A synchronous machine, unlike an induction (or asynchronous) machine, only develops torque at a fixed, so called, synchronous speed - n s whi

Write out the general form of difference equation, Write out the General Fo...

Write out the General Form of Difference Equation? If the x[n] is the input and y[n] is the output of a linear time-invariant  system,  then  an  N  order  FIR  difference  equ

Determine the current in the exciting winding, Consider the magnetic circui...

Consider the magnetic circuit of Figure with an air gap, while neglecting leakage flux. Correct for fringing by adding the length of the air gap l g = 0.1 mm to each of the other

Shld store hl pair direct instruction , SHLD Store HL pair Direct Instructi...

SHLD Store HL pair Direct Instruction This  instruction is used to store the contents of HL  register  pair to  memory  address specified  in the  instruction and the  next ad

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