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

Dc charging and discharging circuit, The circuit shown below is a DC chargi...

The circuit shown below is a DC charging and discharging circuit. a.  At t = 0 sec, switch S1 is thrown to position 1 ("pos1"). Write the mathematical expressions for and .

Frequency Variation, Frequency variation in simple transmitters can be redu...

Frequency variation in simple transmitters can be reduced by adding a _______ stage.

Example of clamper circuits, Example of clamper circuits: Example of c...

Example of clamper circuits: Example of clamper circuits are as follow Voltage multiplier circuit: voltage circuit is employed to maintain a relatively low transformer pe

Show the procedure of octal to decimal conversion, Q. Show the procedure of...

Q. Show the procedure of Octal to Decimal Conversion? To convert from Octal to Decimal, multiply the value in every position by its Octal weight and add each value. Using the v

Explain interrupt vector table, The interrupt vector table is always create...

The interrupt vector table is always created in the first 1K area of the memory. Justify the statement. While the CPU receives an interrupt type number start from the PIC, this

Determine the flux densities, In the magnetic circuit shown in Figure (a) t...

In the magnetic circuit shown in Figure (a) the coil of 500 turns carries a current of 4 A. The air-gap lengths are g 1 = g 2 = 0.25 cm and g 3 = 0.4 cm. The cross-sectional are

What do you mean by interference, Q. What do you mean by interference? ...

Q. What do you mean by interference? An information-bearing signal often becomes contaminated by externally generated interference and noise and/or by internally generated nois

Energy stored in the coil, The term representing the energy stored in the c...

The term representing the energy stored in the coil may be written in terms of the inductance of the coil as... The energy stored in the coil increases with the square of t

Current through each resistor for the networking, Find the current through ...

Find the current through each resistor for the networking below using Mesh Analysis and Nodal Analysis.

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