Releases: laclouis5/globox
Releases · laclouis5/globox
v2.1.3
What's New
- Fixed issue with some deprecation warnings
- Transition to Poetry for development
v2.1.3-beta
What's New
- Transition to Poetry package manager.
v2.1.2
What's new
- Minor improvements for COCO export (
area
and segmentation
fields) to improve compatibility with other tools.
v2.1.1
What's new
- Fixed a bug with
BoundingBox.from_yolo_v7()
(#25)
v2.1.0
What's New
- Parser for VIA JSON format.
- Added default arguments to
COCOEvaluator.evaluate
(#20).
- Bug fixes and improvements of the CI pipeline (#19).
v2.0.0
What's New
- Path to annotation files and directories can now be passed as strings (#11)
- Added convenience methods for YOLO parsing/conversion (#12)
- Better compatibility for COCO annotation files (#13)
This release contains breaking changes. Some function arguments have been promoted to keyword-only to avoid confusions.
Deprecations
[from|to|save]_yolo
is deprecated. Instead, use [from|to|save]_yolo[darknet|v5|v7]
.
V1.3.0
Added support for two new annotation formats:
- YOLOv5/YOLOv7 (Ultralytics) which is the same as YOLO format except that the confidence score is stored in last position.
- VIT JSON annotation format.
v1.2.1
- Improved robustness of dataset conversion
- Improved tests and benchmarks
v1.2.0
- Control verbosity of the command line interface and the number of threads used for parsing and saving annotations
- Faster speeds (~5 %) when many parse and save operations are issued in sequence
- Python 3.7 compatibility
- [dev] tests are now done with
tox