Skip to content

A tracker based on joint probabilistic data association filtering.

License

Notifications You must be signed in to change notification settings

tyunist/jpdaf_tracking

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Joint Probabilistic Data Association Tracking (JPDAFTracker)

JPDAFTracker is a tracker based on joint probabilistic data association filtering.


Requirements

  • OpenCV
  • Eigen

How to build

JPDAFTracker works under Linux environments. I recommend a so-called out of source build which can be achieved by the following command sequence:

  • mkdir build
  • cd build
  • cmake ../
  • make -j<number-of-cores+1>

Params

[PD] #DETECTION PROBABILITY
1

[PG] #GATE PROBABILITY
0.4

[LOCAL_GSIGMA] #THRESHOLD OF GATING
15

[LOCAL_ASSOCIATION_COST] #ASSOCIATION COSTS
40

[GLOBAL_GSIGMA] #THRESHOLD OF GATING
0.1

[GLOBAL_ASSOCIATION_COST] #ASSOCIATION COSTS
50

[LAMBDA] #CONSTANT
2

[GAMMA] #G1,G2 INITIAL COVARIANCE P MATRIX
10 10

[R_MATRIX] #2x2 MEASUREMENT NOISE COVARIANCE MATRIX
100 0
0 100

[DT] #dt
0.4

[MIN_ACCPETANCE_RATE] #min rate for convalidating a track
10

[MAX_MISSED_RATE] #max rate for deleting a track
9

How to use

Requires:

  • Boxes are given in the detection.txt file, 1 row per one image, starting by the image index (must be 1) i.e.
1,5,386,193,41,15,517,239,84,37,623,36,45,28,484,187,56,21,516,251,38,19

where 1: index of the 1st frame. Corresponding image should be "%06d.jpg"%(img_frame); 5: number of objects ; following numbers represent bboxes (top left x, top left y, width, hight)

Go to the bin diretory and launch the program with the following command:

./jpdaf_tracker ../config/kalman_param.txt /path/to/the/detection_file.txt /path/to/the/image_folder 

Example

JPDAF Example

About

A tracker based on joint probabilistic data association filtering.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 98.3%
  • CMake 1.3%
  • Shell 0.4%