From e27538341ca58185b71423b8d5ec97a1791594e3 Mon Sep 17 00:00:00 2001 From: yasakova-anastasia Date: Tue, 6 Sep 2022 12:12:57 +0300 Subject: [PATCH 1/5] Update documentation --- .../manual/advanced/formats/format-coco.md | 28 ++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/site/content/en/docs/manual/advanced/formats/format-coco.md b/site/content/en/docs/manual/advanced/formats/format-coco.md index 48fb487f7b1a..af4bdf99d0d4 100644 --- a/site/content/en/docs/manual/advanced/formats/format-coco.md +++ b/site/content/en/docs/manual/advanced/formats/format-coco.md @@ -39,7 +39,33 @@ Uploaded file: a single unpacked `*.json` or a zip archive with the structure de [here](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/#import-coco-dataset) (without images). -- supported annotations: Polygons, Rectangles (if the `segmentation` field is empty) +- supported annotations: Polygons, Rectangles (if the `segmentation` field is empty + +# [MS COCO Keypoint Detection](http://cocodataset.org/#format-data) + +- [Format specification](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/) + +## COCO export + +Downloaded file: a zip archive with the structure described [here](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/#import-coco-dataset) + +- supported annotations: Skeletons +- supported attributes: + - `is_crowd` (checkbox or integer with values 0 and 1) - + specifies that the instance (an object group) should have an + RLE-encoded mask in the `segmentation` field. All the grouped shapes + are merged into a single mask, the largest one defines all + the object properties + - `score` (number) - the annotation `score` field + - arbitrary attributes - will be stored in the `attributes` annotation section + +## COCO import + +Uploaded file: a single unpacked `*.json` or a zip archive with the structure described +[here](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/#import-coco-dataset) +(without images). + +- supported annotations: Skeletons ## How to create a task from MS COCO dataset From 1cfc0c53052ad8b330b2ec47737c5fef949621ca Mon Sep 17 00:00:00 2001 From: yasakova-anastasia Date: Tue, 6 Sep 2022 12:16:17 +0300 Subject: [PATCH 2/5] Fixes --- site/content/en/docs/manual/advanced/formats/format-coco.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/content/en/docs/manual/advanced/formats/format-coco.md b/site/content/en/docs/manual/advanced/formats/format-coco.md index af4bdf99d0d4..f7639bd0bb5e 100644 --- a/site/content/en/docs/manual/advanced/formats/format-coco.md +++ b/site/content/en/docs/manual/advanced/formats/format-coco.md @@ -39,9 +39,9 @@ Uploaded file: a single unpacked `*.json` or a zip archive with the structure de [here](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/#import-coco-dataset) (without images). -- supported annotations: Polygons, Rectangles (if the `segmentation` field is empty +- supported annotations: Polygons, Rectangles (if the `segmentation` field is empty) -# [MS COCO Keypoint Detection](http://cocodataset.org/#format-data) +# [MS COCO Keypoint Detection](https://cocodataset.org/#keypoints-2020) - [Format specification](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/) From 31ed2a45b4de57a7c52f392b127e90a0b9dd7482 Mon Sep 17 00:00:00 2001 From: yasakova-anastasia Date: Tue, 6 Sep 2022 12:18:54 +0300 Subject: [PATCH 3/5] Update Changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 363842f8f0ef..cefd7bcee910 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,7 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Skeleton (), () - Added helm chart support for serverless functions and analytics () - Added confirmation when remove a track () -- [COCO Keypoints](https://cocodataset.org/#keypoints-2020) format support () +- [COCO Keypoints](https://cocodataset.org/#keypoints-2020) format support (, ) - Support for Oracle OCI Buckets () ### Changed From 984c17d7e95cd30da5e1959c62763f6f6197a8c3 Mon Sep 17 00:00:00 2001 From: yasakova-anastasia Date: Thu, 8 Sep 2022 09:03:49 +0300 Subject: [PATCH 4/5] Fix linter --- .../manual/advanced/formats/format-coco.md | 21 ++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/site/content/en/docs/manual/advanced/formats/format-coco.md b/site/content/en/docs/manual/advanced/formats/format-coco.md index f7639bd0bb5e..aceeded11099 100644 --- a/site/content/en/docs/manual/advanced/formats/format-coco.md +++ b/site/content/en/docs/manual/advanced/formats/format-coco.md @@ -3,11 +3,13 @@ linkTitle: 'MS COCO' weight: 5 --- -# [MS COCO Object Detection](http://cocodataset.org/#format-data) +[MS COCO Object Detection](http://cocodataset.org/#format-data) +============== - [Format specification](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/) -## COCO export +COCO export +--------------- Downloaded file: a zip archive with the structure described [here](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/#import-coco-dataset) @@ -33,7 +35,8 @@ For example, [support for COCO keypoints over Datumaro](https://github.com/openv This way, one can export CVAT points as single keypoints or keypoint lists (without the `visibility` COCO flag). -## COCO import +COCO import +--------------- Uploaded file: a single unpacked `*.json` or a zip archive with the structure described [here](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/#import-coco-dataset) @@ -41,11 +44,13 @@ Uploaded file: a single unpacked `*.json` or a zip archive with the structure de - supported annotations: Polygons, Rectangles (if the `segmentation` field is empty) -# [MS COCO Keypoint Detection](https://cocodataset.org/#keypoints-2020) +[MS COCO Keypoint Detection](https://cocodataset.org/#keypoints-2020) +============== - [Format specification](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/) -## COCO export +COCO export +--------------- Downloaded file: a zip archive with the structure described [here](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/#import-coco-dataset) @@ -59,7 +64,8 @@ Downloaded file: a zip archive with the structure described [here](https://openv - `score` (number) - the annotation `score` field - arbitrary attributes - will be stored in the `attributes` annotation section -## COCO import +COCO import +--------------- Uploaded file: a single unpacked `*.json` or a zip archive with the structure described [here](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/#import-coco-dataset) @@ -67,7 +73,8 @@ Uploaded file: a single unpacked `*.json` or a zip archive with the structure de - supported annotations: Skeletons -## How to create a task from MS COCO dataset +How to create a task from MS COCO dataset +============== 1. Download the [MS COCO dataset](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/#import-coco-dataset). From 98254e87836227f616c40d63eea2343a93a9e0fb Mon Sep 17 00:00:00 2001 From: yasakova-anastasia Date: Thu, 8 Sep 2022 09:21:20 +0300 Subject: [PATCH 5/5] Fix linter --- CHANGELOG.md | 3 ++- README.md | 1 + .../manual/advanced/formats/format-coco.md | 21 +++++++------------ 3 files changed, 10 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cefd7bcee910..7e765298bdb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,7 +26,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Skeleton (), () - Added helm chart support for serverless functions and analytics () - Added confirmation when remove a track () -- [COCO Keypoints](https://cocodataset.org/#keypoints-2020) format support (, ) +- [COCO Keypoints](https://cocodataset.org/#keypoints-2020) format support (, + ) - Support for Oracle OCI Buckets () ### Changed diff --git a/README.md b/README.md index f7e3c0bf2a6b..4695d747a332 100644 --- a/README.md +++ b/README.md @@ -125,6 +125,7 @@ For more information about the supported formats, look at the | Segmentation masks from [PASCAL VOC](http://host.robots.ox.ac.uk/pascal/VOC/) | ✔️ | ✔️ | | [YOLO](https://pjreddie.com/darknet/yolo/) | ✔️ | ✔️ | | [MS COCO Object Detection](http://cocodataset.org/#format-data) | ✔️ | ✔️ | +| [MS COCO Keypoints Detection](http://cocodataset.org/#format-data) | ✔️ | ✔️ | | [TFrecord](https://www.tensorflow.org/tutorials/load_data/tfrecord) | ✔️ | ✔️ | | [MOT](https://motchallenge.net/) | ✔️ | ✔️ | | [LabelMe 3.0](http://labelme.csail.mit.edu/Release3.0) | ✔️ | ✔️ | diff --git a/site/content/en/docs/manual/advanced/formats/format-coco.md b/site/content/en/docs/manual/advanced/formats/format-coco.md index aceeded11099..f7639bd0bb5e 100644 --- a/site/content/en/docs/manual/advanced/formats/format-coco.md +++ b/site/content/en/docs/manual/advanced/formats/format-coco.md @@ -3,13 +3,11 @@ linkTitle: 'MS COCO' weight: 5 --- -[MS COCO Object Detection](http://cocodataset.org/#format-data) -============== +# [MS COCO Object Detection](http://cocodataset.org/#format-data) - [Format specification](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/) -COCO export ---------------- +## COCO export Downloaded file: a zip archive with the structure described [here](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/#import-coco-dataset) @@ -35,8 +33,7 @@ For example, [support for COCO keypoints over Datumaro](https://github.com/openv This way, one can export CVAT points as single keypoints or keypoint lists (without the `visibility` COCO flag). -COCO import ---------------- +## COCO import Uploaded file: a single unpacked `*.json` or a zip archive with the structure described [here](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/#import-coco-dataset) @@ -44,13 +41,11 @@ Uploaded file: a single unpacked `*.json` or a zip archive with the structure de - supported annotations: Polygons, Rectangles (if the `segmentation` field is empty) -[MS COCO Keypoint Detection](https://cocodataset.org/#keypoints-2020) -============== +# [MS COCO Keypoint Detection](https://cocodataset.org/#keypoints-2020) - [Format specification](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/) -COCO export ---------------- +## COCO export Downloaded file: a zip archive with the structure described [here](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/#import-coco-dataset) @@ -64,8 +59,7 @@ Downloaded file: a zip archive with the structure described [here](https://openv - `score` (number) - the annotation `score` field - arbitrary attributes - will be stored in the `attributes` annotation section -COCO import ---------------- +## COCO import Uploaded file: a single unpacked `*.json` or a zip archive with the structure described [here](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/#import-coco-dataset) @@ -73,8 +67,7 @@ Uploaded file: a single unpacked `*.json` or a zip archive with the structure de - supported annotations: Skeletons -How to create a task from MS COCO dataset -============== +## How to create a task from MS COCO dataset 1. Download the [MS COCO dataset](https://openvinotoolkit.github.io/datumaro/docs/formats/coco/#import-coco-dataset).