Skip to content

Latest commit

 

History

History
793 lines (673 loc) · 35.7 KB

CHANGELOG.md

File metadata and controls

793 lines (673 loc) · 35.7 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

Added

  • Support for custom media types, new PointCloud media type, DatasetItem.media and .media_as(type) members (openvinotoolkit#539)
  • [API] A way to request dataset and extractor media type with media_type (openvinotoolkit#539)
  • BraTS format (import-only) (.npy and .nii.gz), new MultiframeImage media type (openvinotoolkit#628)
  • Common Semantic Segmentation dataset format (import-only) (openvinotoolkit#685)
  • An option to disable data/ prefix inclusion in YOLO export (openvinotoolkit#689)
  • New command describe-downloads to print information about downloadable datasets (openvinotoolkit#678)
  • Detection for Cityscapes format (openvinotoolkit#680)
  • Maximum recursion --depth parameter for detect-dataset CLI command (openvinotoolkit#680)
  • An option to save a single subset in the download command (openvinotoolkit#697)
  • Common Super Resolution dataset format (import-only) (openvinotoolkit#700)
  • Kinetics 400/600/700 dataset format (import-only) (openvinotoolkit#706)
  • NYU Depth Dataset V2 format (import-only) (openvinotoolkit#712)
  • Skeleton annotation type (#6, #14, #15)
  • Storing labels with the same name but with a different parent (#8)
  • Functions to work with plain polygons (COCO-style) - close_polygon, simplify_polygon (#39)
  • An option to specify scale factor in resize transform (#46)
  • Skeleton support in datumaro format (#47)
  • Support for YOLOv8 formats (#50)

Changed

  • env.detect_dataset() now returns a list of detected formats at all recursion levels instead of just the lowest one (openvinotoolkit#680)
  • Open Images: allowed to store annotations file in root path as well (openvinotoolkit#680)
  • Improved parsing error messages in COCO, VOC and YOLO formats (openvinotoolkit#684, openvinotoolkit#686, openvinotoolkit#687)
  • YOLO format now supports almost any subset names, except backup, names and classes (instead of just train and valid). The reserved names now raise an error on exporting. (openvinotoolkit#688)
  • [CLI] Removed the --all flag in datum info, added the --json flag, added format and media type fields in the info command output (#5)
  • item id in MOT format (#17)
  • Annotation matching algorithm in datumaro.components.operations.match_segments() (#30)
  • Automatic detection of is_crowd parameter is disabled in segment_iou(), added a separate function argument (turned off by default) (#41)

Deprecated

  • --save-images is replaced with --save-media in CLI and converter API (openvinotoolkit#539)
  • [API] image, point_cloud and related_images of DatasetItem are replaced with media and media_as(type) members and c-tor parameters (openvinotoolkit#539)
  • [API] datumaro.util.annotation_util._get_bbox() is renamed into get_bbox() (#41)

Removed

  • TBD

Fixed

  • Collision between parents and names in LabelCategories
  • (#51)
  • Detection for LFW format (openvinotoolkit#680)
  • Export of masks with background class with id != 0 in the VOC, KITTI and Cityscapes formats (#9, #16)
  • Missing comparison of the base class attributes in the Mask class (#28)
  • Image stats when no image info available for some images in the dataset (#29)
  • Incorrect writing of media field in the Datumaro format, when there are specific media fields (#34)
  • Added missing PointCloud media type in the datumaro module namespace (#34)
  • Incorrect computation of binary mask bbox (missed 1 pixel of the size) (#41)
  • Dataset.get() could ignore existing transforms in the dataset (#45)
  • Failing resize transform for RLE masks (#46)

Security

  • TBD

21/02/2022 - Release v0.3

Added

Changed

  • Allowed direct file paths in datum import. Such sources are imported like when the rpath parameter is specified, however, only the selected path is copied into the project (openvinotoolkit#555)
  • Improved stats performance, added new filtering parameters, image stats (unique, repeated) moved to the dataset section, removed mean and std from the dataset section (openvinotoolkit#621)
  • Allowed Image creation from just size info (openvinotoolkit#634)
  • Added image search in VOC XML-based subformats (openvinotoolkit#634)
  • Added image path equality checks in simple merge, when applicable (openvinotoolkit#634)
  • Supported saving box attributes when downloading the TFDS version of VOC (openvinotoolkit#668)
  • Switched to a pyproject.toml-based build (openvinotoolkit#671)

Deprecated

  • TBD

Removed

Fixed

Security

  • TBD

28/01/2022 - Release v0.2.3

Added

Changed

  • The pycocotools dependency lower bound is raised to 2.0.4. (openvinotoolkit#449)
  • smooth_line from datumaro.util.annotation_util - the function is renamed to approximate_line and has updated interface (openvinotoolkit#592)

Deprecated

  • Python 3.6 support

Removed

  • TBD

Fixed

Security

  • TBD

24/12/2021 - Release v0.2.2

Added

Changed

Deprecated

  • Using Image, ByteImage from datumaro.util.image - these classes are moved to datumaro.components.media (openvinotoolkit#538)

Removed

  • Equality comparison support between datumaro.components.media.Image and numpy.ndarray (openvinotoolkit#568)

Fixed

Security

  • TBD

16/11/2021 - Release v0.2.1

Added

Changed

Deprecated

  • TBD

Removed

  • TBD

Fixed

  • Unhandled exception when a file is specified as the source for a COCO or MOTS dataset (openvinotoolkit#530)
  • Exporting dataset without color attribute into the icdar_text_segmentation format (openvinotoolkit#556)

Security

  • TBD

14/10/2021 - Release v0.2

Added

Changed

  • A project can contain and manage multiple datasets instead of a single one. CLI operations can be applied to the whole project, or to separate datasets. Datasets are modified inplace, by default (openvinotoolkit#328)
  • CLI help for builtin plugins doesn't require project (openvinotoolkit#328)
  • Annotation-related classes were moved into a new module, datumaro.components.annotation (openvinotoolkit#439)
  • Rollback utilities replaced with Scope utilities (openvinotoolkit#444)
  • The Project class from datumaro.components is changed completely (openvinotoolkit#238)
  • diff and ediff are joined into a single diff CLI command (openvinotoolkit#238)
  • Projects use new file layout, incompatible with old projects. An old project can be updated with datum project migrate (openvinotoolkit#238)
  • Inheriting CliPlugin is not required in plugin classes (openvinotoolkit#238)
  • Importers do not create Projects anymore and just return a list of extractor configurations (openvinotoolkit#238)

Deprecated

  • TBD

Removed

Fixed

Security

  • TBD

24/08/2021 - Release v0.1.11

Added

Changed

Deprecated

  • TBD

Removed

  • TBD

Fixed

Security

14/07/2021 - Release v0.1.10

Added

Changed

Deprecated

  • TBD

Removed

  • TBD

Fixed

Security

03/06/2021 - Release v0.1.9

Added

Changed

Deprecated

  • TBD

Removed

  • TBD

Fixed

Security

  • TBD

31/03/2021 - Release v0.1.8

Added

  • TBD

Changed

  • Added an option to allow undeclared annotation attributes in CVAT format export (openvinotoolkit#192)
  • COCO exports images in separate dirs by subsets. Added an option to control this (openvinotoolkit#195)

Deprecated

  • TBD

Removed

  • TBD

Fixed

Security

  • TBD

24/03/2021 - Release v0.1.7

Added

Changed

Deprecated

  • TBD

Removed

  • TBD

Fixed

Security

  • TBD

03/02/2021 - Release v0.1.6.1 (hotfix)

Added

  • TBD

Changed

  • TBD

Deprecated

  • TBD

Removed

  • TBD

Fixed

Security

  • TBD

02/26/2021 - Release v0.1.6

Added

Changed

Deprecated

  • TBD

Removed

  • TBD

Fixed

Security

  • TBD

01/23/2021 - Release v0.1.5

Added

Changed

  • Dataset class extended with new operations: save, load, export, import_from, detect, run_model (openvinotoolkit#71)
  • Allowed importing Extractor-only defined formats (in Project.import_from, dataset.import_from and CLI/project import) (openvinotoolkit#71)
  • datum project ... commands replaced with datum ... commands (openvinotoolkit#84)
  • Supported more image formats in ImageNet extractors (openvinotoolkit#85)
  • Allowed adding Importer-defined formats as project sources (source add) (openvinotoolkit#86)
  • Added max search depth in ImageDir format and importers (openvinotoolkit#86)

Deprecated

Removed

  • TBD

Fixed

Security

  • TBD

12/10/2020 - Release v0.1.4

Added

  • CamVid dataset format (openvinotoolkit#57)
  • Ability to install opencv-python-headless dependency with DATUMARO_HEADLESS=1 environment variable instead of opencv-python (openvinotoolkit#62)

Changed

Deprecated

  • TBD

Removed

  • TBD

Fixed

  • TBD

Security

  • TBD

10/28/2020 - Release v0.1.3

Added

Changed

  • TBD

Deprecated

  • TBD

Removed

  • TBD

Fixed

Security

  • TBD

10/05/2020 - Release v0.1.2

Added

  • ByteImage class to represent encoded images in memory and avoid recoding on save (openvinotoolkit#27)

Changed

Deprecated

  • TBD

Removed

Fixed

Security

  • TBD

09/24/2020 - Release v0.1.1

Added

Changed

  • TBD

Deprecated

  • TBD

Removed

  • TBD

Fixed

  • TBD

Security

  • TBD

09/10/2020 - Release v0.1.0

Added

  • Initial release

Template

## [Unreleased]
### Added
- TBD

### Changed
- TBD

### Deprecated
- TBD

### Removed
- TBD

### Fixed
- TBD

### Security
- TBD