Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Supported following project types:
- Image - Keypoint
- Image - Line
- Image - Segmentation
- Image - Pose Estimation(not support Create Task)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

修正漏れがあったため修正

- Image - Pose Estimation
- Image - All

#### Create Task
Expand Down
3 changes: 1 addition & 2 deletions fastlabel/converters.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from concurrent.futures import ThreadPoolExecutor
from curses import keyname
from datetime import datetime
from decimal import Decimal
from typing import List
Expand Down Expand Up @@ -667,7 +666,7 @@ def execute_coco_to_fastlabel(coco: dict ,annotation_type:str) -> dict:
coco_categories = {}
coco_categories_keypoints={}
for c in coco["categories"]:
coco_categories[c["id"]] = c["name"]
coco_categories[c["id"]] = c["supercategory"]
coco_categories_keypoints[c["id"]] = c["keypoints"]

coco_annotations = coco["annotations"]
Expand Down