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

D.c machine, What are the advantages of distributing windings in an alterna...

What are the advantages of distributing windings in an alternator?

Calculate the armature current, A DC shunt motor rotating at 1560 RPM is su...

A DC shunt motor rotating at 1560 RPM is supplied from a 240-V source. The line current supplied to the motor is equal to 27 A. The shunt field resistance of the motor is equal to

Explain hand shakingfor the allocation of addresses, Explain Hand shakingfo...

Explain Hand shakingfor the allocation of addresses to memories and input output devices. Hand shaking: During an ASYNCHRONOUS data transfer is not based upon predetermined tim

Electricity and gas hazards, Electricity beyond doubt is very useful and es...

Electricity beyond doubt is very useful and essential for us; but if dealt with carelessly, it can prove to be very fatal. It is compulsory for a laboratory assistant to be sure of

For zero flag - conditional jumps , For  Zero  Flag JZ ( Jump on Ze...

For  Zero  Flag JZ ( Jump on Zero) and JNZ ( jump on no zero ) Instruction JZ  transfer  the  execution of the program to the  speciffed address if zero  flag is set (Z=

Simulink, I need help in Simulink model (.mdl) (discrete) for the topic “se...

I need help in Simulink model (.mdl) (discrete) for the topic “sensorless control of the pmsm using Back EMF method” with detailed explanation of the estimator (Back EMF method).

Find the approximate bandwidth of the circuit, Q. An op amp has an open-loo...

Q. An op amp has an open-loop frequency response as shown in Figure. (a) Find the approximate bandwidth of the circuit using this op amp: (i) With a closed-loop voltage gain

Draw timing diagram of synchronous counter, Q. Consider the synchronous cou...

Q. Consider the synchronous counter shown in Figure of the text. (a) Draw its timing diagram. (b) Show the implementation of the same synchronous counter using D flip-flops.

Force between current carrying conductors, If a second current carrying con...

If a second current carrying conductor is placed near to the first and the corresponding magnetic fields drawn, we can begin to visualise why a force is created between them. If

Pop instruction, POP Instruction This instruction  copies the contents ...

POP Instruction This instruction  copies the contents  of the top  two locations  of the  stack into the  specified  register pair. The  contents  of stack pointer register are

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