#351 · Primary category: Computer Vision

OpenTLD

OpenTLD is an open source library for real-time 2D tracking of a single object in video. This repository is no longer under development. For latest version see: http://www.tldvision.com/tld2.html

Project last updated:05/18/22

GitHub Stars

2.1K

Forks

1.3K

Contributors

1

License

GPL-3.0

Why we included this project

OpenTLD is the reference C++ implementation of the classic TLD (Tracking-Learning-Detection) algorithm, the method that showed a tracker can hold onto an object even after it disappears and reappears in the frame. You define the object with a bounding box in a single frame, and the code tracks it, learns its appearance, and re-detects it whenever it shows up again. That still makes it a good place to start if you want to see how long-term tracking works under the hood, or if you need a compact baseline for real-time single-object tracking experiments on a webcam or video file. Be aware that the project is frozen and the algorithm has long been overtaken by deep-learning-based trackers, so this is code to read and adapt, not a maintained library to drop in. What survives is a clear, self-contained demonstration of the track-learn-detect loop, which remains instructive for coursework and for anyone tracing the lineage of modern tracking methods.

Articles for this project

No articles for this project yet.

To suggest a topic or contribute an article, contact us.

Related projects in this category