Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11,...

64
Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, Old: Ch 17 Guido Gerig CS 6320, Spring 2013 Credits: Material Greg Welch & Gary Bishop, UNC Chapel Hill, some slides modified from J.M. Frahm/ M. Pollefeys, and R. Klette Course Materials

Transcript of Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11,...

Page 1: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Feature Selection & Dynamic Tracking

F&P Textbook New: Ch 11, Old: Ch 17

Guido Gerig

CS 6320, Spring 2013

Credits: Material Greg Welch & Gary Bishop, UNC Chapel Hill, some slides modified from J.M.

Frahm/ M. Pollefeys, and R. Klette Course Materials

Page 2: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Material

• Feature selection: SIFT Features

• Tracking: Kalman Filter:

• F&P Chapter 17

• Greg Welch and Gary Bishop, UNC: http://www.cs.unc.edu/~welch/kalman/

• Web-site (electronic and printed references, book lists, Java demo, software etc.)

• Course material SIGGRAPH: http://www.cs.unc.edu/~tracker/ref/s2001/kalman/index.html

Page 3: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Tracking – Rigid Objects

Page 4: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Tracking – Rigid Objects

Page 5: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Tracking – Rigid Objects

Page 6: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Tracking – Rigid Objects

Page 7: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Feature Tracking

• Tracking of “good” features & efficient search for subsequent positions.

• What are good features?

• Required properties:

– Well-defined • (i.e. neigboring points should all be different)

– Stable across views • (i.e. same 3D point should be extracted as feature for neighboring viewpoints)

Page 8: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Lowe’s SIFT features

SIFT: Scale Invariant Feature Transform

Recover features with change of position, orientation and scale

(Lowe, ICCV99)

Page 9: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

SIFT features

• Scale-space DoG maxima

• Verify minimum contrast and “cornerness”

• Orientation from dominant gradient

• Descriptor based on gradient distributions

0 2

0 2

Page 10: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Dynamic Feature Tracking

Tracking is the problem of generating an inference about the motion of an object given a sequence of images.

The key technical difficulty is maintaining an accurate representation of the posterior on object position given measurements, and doing so efficiently.

Page 11: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:
Page 12: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Kalman Filter

• The Kalman filter is a very powerful tool when it comes to controlling noisy systems.

• Apollo 8 (December 1968), the first human spaceflight from the Earth to an orbit around the moon, would certainly not have been possible without the Kalman filter (see www.ion.org/museum/item_view.cfm?cid=6&scid=5&iid=293 ).

• Applications:

– Tracking

– Economics

– Navigation

– Depth and velocity measurements

– …..

Page 13: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

14

What is it used for?

• Tracking missiles

• Tracking heads/hands/drumsticks

• Extracting lip motion from video

• Fitting Bezier patches to point data

• Lots of computer vision applications

• Economics

• Navigation

Page 14: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Key Concept

• Noisy process data

• Estimate average trajectories

• Smoothing: Sliding window for averaging (here size 64)

• But: If horizontal axis is time? We know the past but not the future!

• Time-dependent process: Modeling of process itself including noise estimates.

Page 15: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Model for tracking

• Object has internal state

– Capital indicates random variable

– Small represents particular value

• Obtained measurements in frame i are

– Value of the measurement

iX

iY

iy

iX

ix

Page 16: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Linear Dynamic Models

• State is linearly transformed plus Gaussian noise

• Relevant measures are linearly obtained from state plus Gaussian noise

• Sufficient to maintain mean and standard deviation

idiii xDNx ,~ 1

imiii xMNy ,~

Page 17: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

General Steps of Tracking

1. Prediction: What is the next state of the object given past measurements

2. Data association: Which measures are relevant for the state?

3. Correction: Compute representation of the state from prediction and measurements.

1100 ,, iii yYyYXP

iiiii yYyYyYXP ,,, 1100

Page 18: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Concept Kalman Filtering

predict correct

Page 19: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

• Only immediate past matters

• Measurements depend only on current state

Important simplifications

Fortunately it doesn’t limit to much!

Independence Assumptions

111 ,, iiii XXPXXXP

ikjiiikji XYYPXYPXYYYP ,,,,,

Page 20: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Spirit of Kalman Filtering: A really simple example

We are on a boat at night and lost our position

We know:

• star position

Page 21: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Fixed Position

p is position of boat, v is velocity of boat

state is

We only measure position so

1 ii pp

IDi

iiiii XXMYIM ,

ii pX

1 iii XDX

Page 22: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Observer 1 makes a measurement

14 12 10 8 6 4 2 0 -2

,

Conditional Density Function

0y0m

),(00 myN 00 yx

00 m

Page 23: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Then: Observer 2 makes a measurement

Conditional Density Function

14 12 10 8 6 4 2 0 -2

, 1y1m

?1 x

?1

),(11 myN

How does second measurement affect

estimate of first measurement?

Page 24: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Combine measurements & variances: Kalman

)( 12212 xyKxx

22

1

2

12

2y

K

22

1

2

2 2

111

y

Combine Variances

(statistics)

Page 25: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Combine measurements & variances: Kalman

14 12 10 8 6 4 2 0 -2

Conditional Density Function

),( 22 xN

2xx

2

2

2

Original estimates updated (corrected) in the

presence of a new measurement.

Page 26: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

33

Predict Correct

KF operates by

1. Predicting the new state and its uncertainty

2. Correcting with the new measurement

predict correct

Page 27: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

34

A really simple example We are on a boat at night and lost our position

We know:

• move with constant velocity

• star position

Page 28: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

35

But suppose we’re moving

• Not all the difference is error. Some may be motion

• KF can include a motion model

• Estimate velocity and position

14 12 10 8 6 4 2 0 -2

Page 29: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

36

Process Model

• Describes how the state changes over time

• The state for the first example was scalar

• The process model was “nothing changes”

• A better model might be constant velocity motion

11 )( iii vtpp

1 ii vv

tvpX

Page 30: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

37

Measurement Model

“What you see from where you are”

not

“Where you are from what you see”

Page 31: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

38

Constant Velocity

p is position of boat, v is velocity of boat

state is

We only measure position so

11 )( iii vtpp

10

1 tDi

i

t

i pvpM ] [0] 1[Y ,0] 1[ t

i

t

tvpX ] [

1 iii XDX

Page 32: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Multidimensional Statistics

To be seen as a generalization of the scalar-valued

mean and variance to higher dimensions.

Source: Wikipedia

2 variables:

Page 33: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

40

State and Error Covariance

• First two moments of Gaussian process

Error Covariance

Process State (Mean)

ix

id

Page 34: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

41

The Process Model

Uncertainty over interval

State transition

Process dynamics

iiii wXDX 1

idi Nw ,0~

Difficult to determine

Page 35: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

42

Measurement Model

Measurement uncertainty

Measurement matrix

Measurement relationship to state

imi N ,0~

iii XMY

Page 36: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

43

Predict (Time Update)

1iii XDX

id

T

iiii DD

1

ii XMY

1ix

ix

i

1i

Page 37: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

44

Measurement Update (Correct)

Kalman gain

a posteriori state and error covariance

iiiii XMYKXX

iii MKI

ix

ix

i

iMinimizes posteriori error

covariance

Page 38: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

The Kalman Gain

1 im

T

iii

T

iii MMMK

Weights between prediction and measurements to posteriori

error covariance

For no measurement uncertainty: 0im

111 iii

T

i

T

iii MMMMK

iiiiiiii yMxMyMxx 11

State is deduced only from measurement

Page 39: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

46

The Kalman Gain

Simple univariate (scalar) example

m

K

a posteriori state and error covariance

iiii xyKxx

ii K 1

Page 40: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

47

Summary

PREDICT CORRECT

1iii xDx

id

T

iiii DD

1

iiiiii xMyKxx

iiii MKI

1 im

T

iii

T

iii MMMK

Page 41: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

48

Example: Estimating a Constant

The state transition matrix ID

iiiii wxwDxx

11

iiiii xMxy

The measurement matrix IM

Prediction

1ii xx

idii

1

Page 42: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

49

Measurement Update

imi

iiK

iiiii xyKxx

iii K1

Page 43: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

50

Setup/Initialization

510id

00 x

10

Generate 50 samples centered around

-0.37727 with standard deviation of 0.1 (var

0.01).

Page 44: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

51

State and Measurements =0.12=0.01

im

1.0im

Filter was told the correct measurement variance.

Page 45: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

52

Error Covariance (initially 1)

2)( i

Page 46: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

53

State and Measurements = 1 im

Filter was told that the measurement variance was 100

times greater (i.e. 1) so it was “slower” to believe

the measurements.

Page 47: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

54

State and Measurements = 0.012=0.0001

im

Filter was told that the measurement variance was 100

times smaller (i.e. 0.0001) so it was very “quick” to believe

the noisy measurements.

Page 48: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Demonstration own experiments

Page 49: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:
Page 50: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:
Page 51: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:
Page 52: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:
Page 53: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

2D Position-Velocity (PV)

Page 54: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

2D Position-Velocity (PV)

Page 55: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Example: Hand Gesture Recognition and Tracking

Page 56: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

63

Kalman Filter Web Site

http://www.cs.unc.edu/~welch/kalman/

• Electronic and printed references

– Book lists and recommendations

– Research papers

– Links to other sites

– Some software

• News

Page 57: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

64

Java-Based KF Learning Tool • On-line 1D simulation

• Linear and non-linear

• Variable dynamics

http://www.cs.unc.edu/~welch/kalman/

Page 58: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

65

KF Course Web Page

http://www.cs.unc.edu/~tracker/ref/s2001/kalman/index.html

( http://www.cs.unc.edu/~tracker/ )

• Java-Based KF Learning Tool

• KF web page

Page 59: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

66

Relevant References

• Azarbayejani, Ali, and Alex Pentland (1995). “Recursive Estimation of Motion, Structure, and Focal Length,” IEEE Trans. Pattern Analysis and Machine Intelligence 17(6): 562-575.

• Dellaert, Frank, Sebastian Thrun, and Charles Thorpe (1998). “Jacobian Images of Super-Resolved Texture Maps for Model-Based Motion Estimation and Tracking,” IEEE Workshop on Applications of Computer Vision (WACV'98), October, Princeton, NJ, IEEE Computer Society.

• http://mac-welch.cs.unc.edu/~welch/COMP256/

Page 60: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Extensions: Particle Filtering, Condensation

A. Blake, B. Bascle, M. Isard, and J. MacCormick, Statistical models of visual shape and motion, in Phil. Trans. R. Soc. A., vol. 356, pp. 1283–1302, 1998

B. Isard, M., Blake, and A., Condensation — conditional density propagation for visual tracking, in Int. J. Computer Vision, vol. 28, no. 1, pp. 5–28, 1998

C. Blake, A., Isard, M.A., Reynard, and D., Learning to track the visual motion of contours, in J. Artificial Intelligence, vol. 78, pp. 101–134, 1995

http://www.robots.ox.ac.uk/~misard/condensation.html

Page 61: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Condensation Algorithm (Blake et al. )

Page 62: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Extensions: Particle Filtering, Condensation

Page 63: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Extensions: Particle Filtering, Condensation

Page 64: Feature Selection & Dynamic Tracking F&P Textbook New: Ch 11, …gerig/CS6320-S2013/Materials/CS6320-S... · 2013-04-17 · Feature Selection & Dynamic Tracking F&P Textbook New:

Extensions: Particle Filtering, Condensation