All Projects → fbaeuerlein → BasicGNNTracking

fbaeuerlein / BasicGNNTracking

Licence: MIT license
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.

Programming Languages

C++
36643 projects - #6 most used programming language
Dockerfile
14818 projects
CMake
9771 projects

Projects that are alternatives of or similar to BasicGNNTracking

sf-pkg
Generic Sensor Fusion Package for ROS
Stars: ✭ 28 (-22.22%)
Mutual labels:  kalman-filter
ncem
Learning cell communication from spatial graphs of cells
Stars: ✭ 77 (+113.89%)
Mutual labels:  gnn
ESP32 IMU BARO GPS VARIO
GPS altimeter/variometer with LCD display, routes with waypoints, data/gps track logging, bluetooth NMEA sentence transmission, wifi AP + webpage configuration
Stars: ✭ 72 (+100%)
Mutual labels:  kalman-filter
parallel-non-linear-gaussian-smoothers
Companion code in JAX for the paper Parallel Iterated Extended and Sigma-Point Kalman Smoothers.
Stars: ✭ 17 (-52.78%)
Mutual labels:  kalman-filter
Causing
Causing: CAUsal INterpretation using Graphs
Stars: ✭ 47 (+30.56%)
Mutual labels:  gnn
coursera robotics
Contains coursera robotics specialization assignment codes
Stars: ✭ 65 (+80.56%)
Mutual labels:  kalman-filter
tsa4
R code for Time Series Analysis and Its Applications, Ed 4
Stars: ✭ 108 (+200%)
Mutual labels:  kalman-filter
tracking-python3
In this repository I will give some implementation of single and multiple object tracking algorithms. These include meanShift, CamShift, Boosting, MIL, KCF, TLD , GoTurn, and MedianFlow. Additionally I will show you how to grab frames at a very high FPS from camera and videos.
Stars: ✭ 98 (+172.22%)
Mutual labels:  tracking-algorithm
goflying
Go tools for flying
Stars: ✭ 15 (-58.33%)
Mutual labels:  kalman-filter
ai for robotics
Visualizations of algorithms covered in Sebastian Thrun's excellent Artificial Intelligence for Robotics course on Udacity.
Stars: ✭ 125 (+247.22%)
Mutual labels:  kalman-filter
awesome-efficient-gnn
Code and resources on scalable and efficient Graph Neural Networks
Stars: ✭ 498 (+1283.33%)
Mutual labels:  gnn
Awesome-Federated-Learning-on-Graph-and-GNN-papers
Federated learning on graph, especially on graph neural networks (GNNs), knowledge graph, and private GNN.
Stars: ✭ 206 (+472.22%)
Mutual labels:  gnn
adaptive-filters
My collection of implementations of adaptive filters.
Stars: ✭ 32 (-11.11%)
Mutual labels:  kalman-filter
Pitch-Tracking
Pitch tracking in real-time with the Kalman filter
Stars: ✭ 78 (+116.67%)
Mutual labels:  kalman-filter
cpp filter
Kalman filter using C++ and Manif
Stars: ✭ 19 (-47.22%)
Mutual labels:  kalman-filter
yupi
Python package designed for collecting and processing trajectory data.
Stars: ✭ 30 (-16.67%)
Mutual labels:  tracking-algorithm
mmgnn textvqa
A Pytorch implementation of CVPR 2020 paper: Multi-Modal Graph Neural Network for Joint Reasoning on Vision and Scene Text
Stars: ✭ 41 (+13.89%)
Mutual labels:  gnn
microprediction
If you can measure it, consider it predicted
Stars: ✭ 158 (+338.89%)
Mutual labels:  kalman-filter
BGCN
A Tensorflow implementation of "Bayesian Graph Convolutional Neural Networks" (AAAI 2019).
Stars: ✭ 129 (+258.33%)
Mutual labels:  gnn
dgcnn
Clean & Documented TF2 implementation of "An end-to-end deep learning architecture for graph classification" (M. Zhang et al., 2018).
Stars: ✭ 21 (-41.67%)
Mutual labels:  gnn

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].