Gaussian derivatives, Electrical Engineering

Assignment Help:

Gaussian derivatives

Generate Gaussian kernels for a given scale "sigma", and display the kernel.

The size of the kernel should be floor(3*sigm)+1;

(i) Write an m-file "gauss.m" which generates Gaussian kernel.

function G=gauss(sigm)
s=floor(3*sigm)+1;
x=[-s:s];
G = exp(-x.^2/(2*sigm^2));
G=G/sum(sum(G));
plot(?);

Why G has to be normalized?

(ii) write an m-file gauss_x.m which generates 1 order derivative of the Gaussian kernel.

function G=gauss_x(sigm)
s=floor(3*sigm)+1;
x=[-s:s];

G=?

(iii)  Write an m-file gauss_xx.m which generates 2 order derivative of the Gaussian kernel.

function G=gauss_xx(sigm)
s=floor(3*sigm)+1;
x=[-s:s];
G=?

Observe Gaussian kernels for different sigma values.
Why the size of the kernel should be  (3*sigm)+1 ?


Related Discussions:- Gaussian derivatives

Explain the working of a depletion type mosfet, Q. With a cross sectional v...

Q. With a cross sectional view, explain the working of a depletion type MOSFET Draw a biasing amplifier circuit DEPLETION-TYPE MOSFET: Two types of FETs: JFETs and MOSFETs. MOS

Explain in detail the operation of 8255 in mode 1, Explain in detail the op...

Explain in detail the operation of 8255 in mode1 taking suitable example. In mode1, Ports A and B are programmed as input or output ports and Port C is used for handshaking.

How oscillations start up in an oscillator, Q. How oscillations start up in...

Q. How oscillations start up in an oscillator?  The noise voltage produced due to the random motion of electrons in resistors or in active devices provides the starting voltage

What is a bode plot and what are i''s uses, Q. (i) What are the different t...

Q. (i) What are the different types of plots for frequency response in an RC coupled amplifier?     (ii) What is a Bode Plot? What are it's uses? The different types of

Find the flux density in the air gap of the right leg, Q. In the magnetic c...

Q. In the magnetic circuit shown in Figure the center leg has the same cross-sectional area as each of the outer legs. The coil has 400 turns. The permeability of iron may

Critical field circuit resistance and critical speed, Q.   Define and expla...

Q.   Define and explain the critical field circuit resistance and critical speed of a DC shunt generator.   Ans. The OCC and R - line for a DC shunt generator. As, R f is

Show the dot convention, Q. For the coupled coils shown in Figure, a dot ha...

Q. For the coupled coils shown in Figure, a dot has been arbitrarily assigned to a terminal as indicated. Following the dot convention presented in the text, place the other dot in

Illustrate working of application layer, Q. Illustrate working of Applicati...

Q. Illustrate working of Application Layer? As the highest layer in OSI reference model, application layer provides services to users of OSI environment. Layer

Scale-space pyramids, Scale-space pyramids   Write an m-file "scale_s...

Scale-space pyramids   Write an m-file "scale_space.m" which computes scale space representation of an input image for a given scale "sigma" and displays them. (i) 4 scale

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