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

Objectives of national electricity policies, OBJECTIVES OF NEP: Ac...

OBJECTIVES OF NEP: Access to Electricity for whole households within the next five years. Availability of Power to be ensured to meet the demand through 2012. Pe

Explain about direct-current machines, Q. Explain about Direct-current mach...

Q. Explain about Direct-current machines? Generally speaking, conventional dc generators are becoming obsolete and increasingly often are being replaced by solid-state rectifie

What do you mean by blocking probability, Q. What do you mean by Blocking P...

Q. What do you mean by Blocking Probability? Blocking Probability:Blocking probability P is defined as probability that all the servers in system are busy. When all servers are

Half wave rectifier connected to a dc motor, Ask questiwe have half wave re...

Ask questiwe have half wave rectifier connected to a dc motor load. by using a step down transformer from 8 to 1. by modalization we have the Primary Winding resistance is Rp=50 oh

Wave anlysers, Operation of heterodyne wave analyzer with block diagram

Operation of heterodyne wave analyzer with block diagram

Static characteristics of the npn silicon bjt, Consider the common-emitter ...

Consider the common-emitter BJT circuit shown in Figure (a). The static characteristics of the npn silicon BJT are given in Figure (b) along with the load line. Calculate iB for v

What are program-invisible registers, What are program-invisible registers?...

What are program-invisible registers? The local and global descriptor tables are determined into the memory system. So as to access and give the address of these tables, the pr

Define the second group of 32 ascii character codes, Define the second grou...

Define the second group of 32 ASCII character codes? The second group of 32 ASCII character codes include various punctuation symbols, special characters, and the numeric digit

Define the property under which resistance of metals vanish, The property d...

The property due to which the resistance of some metal or compound vanishes under certain conditions is (A) Semi conductivity.                     (B) Super conductivity.

Why do we cascade amplifiers, Q. Why do we cascade amplifiers? Why is RC co...

Q. Why do we cascade amplifiers? Why is RC coupling the most widely used coupling between 2 stages of a cascading amplifier? The voltage or power gain or frequency response obt

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