diff --git a/src/labelformat/formats/__init__.py b/src/labelformat/formats/__init__.py index 0f20bd5..899d714 100644 --- a/src/labelformat/formats/__init__.py +++ b/src/labelformat/formats/__init__.py @@ -27,6 +27,9 @@ RTDETRv2ObjectDetectionInput, RTDETRv2ObjectDetectionOutput, ) +from labelformat.formats.semantic_segmentation.pascalvoc import ( + PascalVOCSemanticSegmentationInput, +) from labelformat.formats.yolov5 import ( YOLOv5ObjectDetectionInput, YOLOv5ObjectDetectionOutput, @@ -84,6 +87,7 @@ "LightlyObjectDetectionOutput", "PascalVOCObjectDetectionInput", "PascalVOCObjectDetectionOutput", + "PascalVOCSemanticSegmentationInput", "RTDETRObjectDetectionInput", "RTDETRObjectDetectionOutput", "RTDETRv2ObjectDetectionInput", diff --git a/src/labelformat/formats/semantic_segmentation/__init__.py b/src/labelformat/formats/semantic_segmentation/__init__.py new file mode 100644 index 0000000..e69de29