Releases: LdDl/mot-go
Releases · LdDl/mot-go
v0.4.0 Generic blob interface. BREAKING CHANGES
What's new
As it is mention in subject, breaking changes is involved:
before:
tracker := mot.NewNewSimpleTracker(15.0, 5)after:
tracker := mot.NewNewSimpleTracker[*mot.SimpleBlob](15.0, 5)Now this library has generic blob type so new blob implementation could be involved in future.
For more information see: #6
v0.3.0 Fixing bugs
What's new
- Fixed incorrect BBox calculation in SimpleBlob
- Make two Bytetrack's stage to be consistent
- Bumped kalman-filter library version
v0.2.0 ByteTrack
What's new
ByteTrack has been implemented. Paper: https://arxiv.org/abs/2110.06864
New dependency (for Hungarian_algorithm) - https://github.com/arthurkushman/go-hungarian
For the reference see #3
v0.1.2 Bump dependencies versions
What's new:
- Updated Gonum - https://github.com/gonum/gonum/releases/tag/v0.14.0
- Updated UUID - https://github.com/google/uuid/releases/tag/v1.4.0
v0.1.1 Minor improvements
What's new
- Added a way to initialize blob with custom center. Could be useful when not exactly center tracking is needed.
v0.1.0 - Very first release
Some pretty naive implementation of multi-object tracker. The first one was gocv-blob.
The better thing here is that we do not rely on GoCV installation and Rust language port of this package - so it is easier to debug and compare perfomance.