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 term telecommunication, Question 1 Explain the term telecommun...

Question 1 Explain the term telecommunication and how its implied meaning has changed over time and outline major developments in telecommunication technologies Question 2

Single Phase Induction Motor, How do I connect a Capacitor on the machine i...

How do I connect a Capacitor on the machine if it has a start mechanism

Find the current flow through resistor using norton theorem, Use Norton Th...

Use Norton Theorem, find the current flow through resistor R=10Ω.

Demodulation of ssb signals, Demodulation of SSB signals also requires the ...

Demodulation of SSB signals also requires the use of a phase-coherent reference. Figure shows the general configuration to demodulate the SSBsignal.Asmall carrier component, which

Analysis of semiconductor devices, Analysis of Semiconductor Devices T...

Analysis of Semiconductor Devices There are two complementary techniques of studying semiconductor devices: Via numerical simulation of the semiconductor equation

Explain about simplex communication, Q. Explain about Simplex communication...

Q. Explain about Simplex communication? Simplex communication: Microphone and the earphone are transducer elements of the telephone communication system. Microphone converts

Describe the operation of 8279, Q. Describe the operation of 8279. And als...

Q. Describe the operation of 8279. And also explain following terms: (i) N key Roll over. (ii) Key board debounce. (iii) FIFO RAM. Ans: 8279 is a programmabl

Princeton and harvard microprocessor architectures, Question a) Explain...

Question a) Explain, with the aid of diagrams, the differences between the Princeton and Harvard microprocessor architectures. b) Describe why the principle of locality of r

Compute the fourier transform, Compute the Fourier Transform of the followi...

Compute the Fourier Transform of the following function: f(x) = exp( - x 2 /(2σ 2 )) cos (2πx/k) where σ and k are constants. What is the minimum sampling rate required

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