Skip to content

This shows a basic implementation of the global nearest neighbour (GNN) multi target Tracker. Kalman filter is used for Tracking and Auction Algorithm for determining the assignment of measurments to filters.

License

Notifications You must be signed in to change notification settings

fbaeuerlein/BasicGNNTracking

Repository files navigation

BasicGNNTracking

This shows a basic implementation of the global nearest neighbour (GNN) multi target Tracker. Kalman filter is used for Tracking and Auction Algorithm for determining the assignment of measurments to filters.

Generates some sample measurements of virtual targets that move on elliptical trajectories. You can create further measurements with your mouse by holding the left mouse button and moving the pointer around.

Basic functionality: creates filters for unassigned measurements and assigns measurements to existing filters by maximizing the sum of probabilities of assignments (i.e. minimizing the mahalanobis-distance) with the auction algorithm. Unassigned filters will be discarded.

Change parameters for covariances and probabilities in Tracker.h to fit your needs ...

Further information on GNN-trackers could be found at http://ecet.ecs.uni-ruse.bg/cst/docs/proceedings/S3/III-7.pdf

Building and running with Docker

Create docker image for building:

docker build -t gnntracking:latest .

Run docker interactively and map current path into container (additionally export display):

docker run -v $(pwd):$(pwd) --env="DISPLAY" --env="QT_X11_NO_MITSHM=1" \
    -v /tmp/.X11-unix:/tmp/.X11-unix:rw  -it gnntracking:latest /bin/bash 

To run the resulting binary, call xhost + on the host to display the window.

About

This shows a basic implementation of the global nearest neighbour (GNN) multi target Tracker. Kalman filter is used for Tracking and Auction Algorithm for determining the assignment of measurments to filters.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published