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

The three-phase alternator, The Three-phase alternator In this case, t...

The Three-phase alternator In this case, three separate sets of coils are wound on the stator and connected to produce three separate outputs. Because of the physical displace

Explain this phenomenon, (a) Design a 2 nd  order Sallen and Key low pass ...

(a) Design a 2 nd  order Sallen and Key low pass active filter with the following characteristics: Nominal Cut-off Frequency: 1.6 kHz Variable Gain: 0 to 7.5 dB You may a

What is ohmmeter, What is ohmmeter An ohmmeter is an instrument for mea...

What is ohmmeter An ohmmeter is an instrument for measuring resistance

Develop a two-dimensional addressing system, Q. Suppose a ROM holds a total...

Q. Suppose a ROM holds a total of 8192 bits. (a) How many bits long would the individual addresses have to be? (b) If the bits are organized into 8-bit memory words or bytes,

Working with various instructions using debug, The purpose of this experime...

The purpose of this experiment is to introduce you to a powerful 80x86 assembly/machine language utility called DEBUG. Preparing Your DEBUG Environment If you have an older

Instruction size , Instruction size As we  have seen already  that eac...

Instruction size As we  have seen already  that each instruction has two parts Opcode ( Operation  Code) Which  tells  the types  of operation  to be  performed .

Explain explanatory notes on a/d conversion, Explain explanatory notes on A...

Explain explanatory notes on A/D conversion. The digital inventory is working a revolution into the field of microcontrollers, technology and microprocessors are used more effi

Determine the analog output voltage, Q. Analyze the 2-bit R-2R ladder-netwo...

Q. Analyze the 2-bit R-2R ladder-network D/A converter, and corresponding to binary 01, 10, and 11, obtain the equivalent circuits and determine the analog output voltage as a frac

Define explicit - implicit and parametric representations, Give an industri...

Give an industrial look at modern CAM/CAD. Define explicit, implicit and parametric representations. What are the basic advantages of parametric representations over the impli

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