Skip to content

Releases: LdDl/mot-go

v0.4.0 Generic blob interface. BREAKING CHANGES

14 Dec 20:46
284ba0f

Choose a tag to compare

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

14 Dec 20:12
ef88837

Choose a tag to compare

What's new

  1. Fixed incorrect BBox calculation in SimpleBlob
  2. Make two Bytetrack's stage to be consistent
  3. Bumped kalman-filter library version

v0.2.0 ByteTrack

19 Jun 11:47
2e79afc

Choose a tag to compare

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

31 Oct 11:23
62e101a

Choose a tag to compare

v0.1.1 Minor improvements

24 Jul 13:53

Choose a tag to compare

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

23 Jun 15:37
665cb64

Choose a tag to compare

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.