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 workinf of colpitts oscillator, Q. Explain workinf of colpitts osci...

Q. Explain workinf of colpitts oscillator? When the collector supply voltage V cc is switched on, the capacitors C1 and Cz are charged. These capacitors C1 and Cz discharge thr

Explain bandwidth and applications of rc coupled amplifier, Q. Explain the ...

Q. Explain the bandwidth for the curve and the applications of an RC coupled amplifier. Frequency response curve of an RC coupled amplifier was shown above(prev page). The cut

compute the cavity , Consider the optical cavity shown below. (...

Consider the optical cavity shown below. (a) Compute the photon lifetime. (b) Compute the cavity Q (assume that the wavelength region of interest is 500nm). (c) Su

Illustrate AC power systems, Q. Illustrate AC Power Systems? Electric p...

Q. Illustrate AC Power Systems? Electric power is indispensable for any modern society. Our use and demand for electric power grows annually at the rate of 2 to 3%; our need ne

Find the frequency at which the forced response is zero, Q. The response y(...

Q. The response y(t) of a linear system to a unit-step excitation is y(t) = (4 - 10e -t + 8e -2t )u(t). (a) Find the system function. (b) Find the frequency at which the fo

Wein bridge, does wein bridge can be used for frequency measurement? how it...

does wein bridge can be used for frequency measurement? how it is possible?

What is the basic principle of oscillators, Q. What is the basic principle ...

Q. What is the basic principle of oscillators?  In an oscillating circuit, the amplitude of voltage or current oscillations decays with time owing to the dissipation of energy

Superposition theroem, what are the limitations of superposition theroem

what are the limitations of superposition theroem

Find largest of n numbers stored in t memory, To determine the largest of n...

To determine the largest of n numbers stored into t memory, write a program in assembly language. A program of the largest of n numbers stored into t memory in assembly languag

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