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

Working of on - off hook circuit in telephone hand set, Q. Working of On - ...

Q. Working of On - off hook circuit in telephone hand set? On/off hook circuit (sometimes termed as a switch hook) is nothing more than a simple single-throw, double-pole (STDP

Sectoral overview and enabling framework, Sectoral Overview and Enabling Fr...

Sectoral Overview and Enabling Framework Previously, you have studied about several Acts and Policies relevant to the power sector, their aims, main features and implications

Interrupts, how the interrupts are affected by system rest

how the interrupts are affected by system rest

Explain basic working of integrators, Q. Explain basic working of Integrato...

Q. Explain basic working of Integrators? Figure shows a noninverting integrator, which can be seen to be a negative impedance converter added with a resistor and a capacitor. N

Power system engineering, A three-phase transposed line is composed of one ...

A three-phase transposed line is composed of one ACSR conductor per phase with flat horizontal spacing of 11 meters as shown in Figure (a). The conductors have a diameter of 3.625

Erc and kpi, ERC and KPI The company requires understanding the strate...

ERC and KPI The company requires understanding the strategic and nearing term impact of the Regulator's orders / tariff approval process. Once these dimensions are understood,

Define the parity with respect to serial communication, With respect to ser...

With respect to serial communication define the parity. Besides the synchronization given by the use of start and stop bits, an additional bit termed as a parity bit may opt

Transistor, Transistor A transistor is a semiconductor device that is ...

Transistor A transistor is a semiconductor device that is employed to amplify and switch electronic signals. It is made up of a solid piece of semiconductor material, with min

Successive approximation adc, Successive approximation ADC One method ...

Successive approximation ADC One method of addressing digital ramp ADC's shortcomings is so-called successive approximation ADC. Only change in this design is a very special c

Sequential circuit, a 4 bit synchronous counter uses flip flops with propag...

a 4 bit synchronous counter uses flip flops with propagation delay times of 15ns each. what will be the maximum possible time requires for change of state?

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