COCO-Assistant

Helper for dealing with MS-COCO annotations

MIT License

Stars
92
Committers
6

Bot releases are visible (Hide)

COCO-Assistant - 0.4.0 Latest Release

Published by ashnair1 about 3 years ago

Changes:

  • Drop Python 3.6 support
  • Use zillionare's cookiecutter-pypackage as project template
  • Improved documentation
  • Standardise docstring syles (#32)

Bugfixes:

  • Bugfix for merge creating duplicated IDs by @philipsgithub (ashnair1/COCO-Assistant#50)
COCO-Assistant - v0.3.5

Published by ashnair1 over 3 years ago

Changes:

  • Replace os with pathlib for managing paths.
  • Fixed bug in det2seg where small annotations were covered by larger annotations.
  • Faster category removal by @xychen9459 (ashnair1/COCO-Assistant#43).
COCO-Assistant - Minor release for testing CircleCI deployment

Published by ashnair1 over 3 years ago

Changes:

  • Add support for merging datasets with different categories
  • Adding colour palette to segmasks is now optional
  • Ignore hidden files
COCO-Assistant - v0.3.1

Published by ashnair1 over 4 years ago

Bugfix for coco_stats by @Lplenka (ashnair1/COCO-Assistant#15)

COCO-Assistant - v0.3.0

Published by ashnair1 over 4 years ago

Changes introduced:

  1. combine has been renamed to merge
  2. Support for merging annotations only.

Deprecated features:

Post v0.3.0, converter functionality will not be supported. This was motivated by two reasons:

  1. There are too many conversion formats. Trying to include even the most popular ones makes the project unwieldy. Better to use one of the readily available scripts online.
  2. Until now, the repository only supported TFRecord. Tensorflow is a large library and it does not make sense for it to be a project requirement when it's only used for a singular task of converting to TFRecord.
COCO-Assistant - v0.2.0

Published by ashnair1 almost 5 years ago

New Features:

  1. Generate anchors from the dataset using K-means.
  2. Generate segmentation masks from dataset.

Modifications:

  1. Modified category removal to accept a list of categories as opposed to entering categories one after the other.
COCO-Assistant - v0.1.0

Published by ashnair1 about 5 years ago

Helper for dealing with MS COCO annotations. Currently supports the following functionalities:

  1. Merge datasets.
  2. Remove specific category from dataset.
  3. Generate annotations statistics - distribution of object areas and category distribution
  4. Annotation visualiser for viewing the entire dataset.
  5. Converter for converting annotations to TFRecord format