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

What is tri-state logic, Three Logic Levels are used and they are High, Low...

Three Logic Levels are used and they are High, Low, High impedance state. The high and low are normal logic levels & high impedance state is electrical open circuit conditions. Tri

Find the charge flowing and number of electron, Q. A current i(t) = 20 cos(...

Q. A current i(t) = 20 cos(2π × 60)t A flows through a wire. Find the charge flowing, and the number of electrons per second that are passing some point in the wire.

What is i/o mapping, What is I/O mapping? The assignment of addresses t...

What is I/O mapping? The assignment of addresses to various I/O devices in the memory chip is known as I/O mapping.

Design a signal generator, Aims Exploring the analog output capabili...

Aims Exploring the analog output capabilities of the PIC trainer Write PIC assembly code to implement a simple multi-function signal generator Equipment PIC Trainer

Port address - address bus , Port Address The port  address  is of 8 bi...

Port Address The port  address  is of 8 bit  it is range from 00H  to FFH. It means  there may be total  i 256 input  ports and 256  output  port which can be accessed by 8085

Magnet, Magnetic materials

Magnetic materials

Determine the maximum power, Determine the maximum power: 1 For the c...

Determine the maximum power: 1 For the circuit shown below, what value of RL will result in maximum power transfer? Determine the maximum power dissipated in RL. You

Write shorte note on carbon, Write shorte note on Carbon. Carbon: The...

Write shorte note on Carbon. Carbon: The rate of commutator wear in electrical machines is greatly decreased by using brushes made of carbon. Carbon (C) is also used in autom

Clipper and clamper circuit, Clipper Circuits: Clipper circuit have ab...

Clipper Circuits: Clipper circuit have ability to Clipper of portions of the input signals without distorting the remaining part of the alternating wave form. Clamper net

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