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 complete solution for the current for given circuit, For the circuit...

For the circuit of Figure(a), obtain the complete solution for the current i L (t) through the 5-H inductor and the voltage v x (t) across the 6- resistor.

Scatter Diagrams - Quality Tools for Improvement, Scatter Diagrams - Qualit...

Scatter Diagrams - Quality Tools for Improvement Scatter diagrams are graphical tools which attempt to depict the influence in which one variable has on another. A general dia

FET, WHAT IS FET

WHAT IS FET

Explain immediate data addressing mode, Explain immediate data addressing m...

Explain immediate data addressing mode (with examples) available in microprocessors. Immediate Mode: The operand given in immediate mode is the actual data itself.

What do you understand by orthographic projection, What do you understand b...

What do you understand by orthographic projection ? Illustrate with the help of Matrix representation.

What are difference equations, What are Difference Equations? A continu...

What are Difference Equations? A continuous-time system can be described by differential equations. Likewise, a discrete-time system can be explained by difference equations. T

Show cmos logic families, Both DTL and TTL are based on the saturating BJT ...

Both DTL and TTL are based on the saturating BJT inverter. The transistor acts as a switch that connects or disconnects the collector and emitter. The switch is closed when suffici

Unijunction transistor, In use, an appropriate bias voltage is applied betw...

In use, an appropriate bias voltage is applied between the two bases, with B2 made positive with respect to B1. Because the N-type bar is resistive, a relatively small current will

Properties of conductors and insulators, Properties of Conductors and Insul...

Properties of Conductors and Insulators: This unit provides the basic characteristics or properties of the most common materials which are classified as semiconductor, conduct

Write a note on clampers, Q. Write a note on clampers ? Clamper is a ci...

Q. Write a note on clampers ? Clamper is a circuit that "clamps" a signal to a different dc level. The different types of clampers are positive negative and biased clampers.

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