How to use fiftyone for exploring the instance segmentation of custom coco data? It has documentation for coco dataset but I couldn't find any resource for custom coco dataset.
How to use fiftyone for exploring the instance segmentation of custom coco data?
3k Views Asked by Sai Dinesh Pola At
2
There are 2 best solutions below
0

It can be done by using COCODetectionDatasetImporter Class and set label_types=["detections","segmentations"]
for seeing mask annotated images
You can find documentation for importing custom
COCODetectionDatasets
here.In short, as long as your data follows the expected COCO format:
The segmentation field format is defined here.
Then you can load it into FiftyOne with the following Python code: