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 architecture of 8085, Explain the Architecture of 8085. Ø  ...

Explain the Architecture of 8085. Ø  ALU Ø  Interrupt control Ø  Serial I/O control Ø  Timing and control unit Ø  Instruction Register & Decoding

Where holes are majority carriers, Holes are majority carriers in (A) ...

Holes are majority carriers in (A) P-type semiconductors.  (B) N-type semiconductors. (C)  Insulators.            (D) Superconductors. Ans: Holes are m

Determine the velocity of wave propagation in the cable, Q. A coaxial cable...

Q. A coaxial cable with polyethylene dielectric (ε r =2.26) connects an antenna to a receiver 30maway. Determine the velocity of wave propagation in the cable and the delay of the

Insulation resistance, how can we increase insulation resistance of sheet

how can we increase insulation resistance of sheet

Electronics, what is the difference between half &full wave rectifier

what is the difference between half &full wave rectifier

Types of bias circuit for class a amplifiers, Types of bias circuit for Cla...

Types of bias circuit for Class A amplifiers: There are five common types of biasing circuits used with Class A bipolar transistor amplifiers: A. Fixed bias B. Collector

For zero flag - conditional jumps , For  Zero  Flag JZ ( Jump on Ze...

For  Zero  Flag JZ ( Jump on Zero) and JNZ ( jump on no zero ) Instruction JZ  transfer  the  execution of the program to the  speciffed address if zero  flag is set (Z=

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