From 9f8f0ce782124f6350b7c4023da57a8e7eebe57e Mon Sep 17 00:00:00 2001 From: Michal Szabados Date: Mon, 19 Jan 2026 17:53:55 +0100 Subject: [PATCH] Expose PascalVOCSemanticSegmentationInput class. --- src/labelformat/formats/__init__.py | 4 ++++ src/labelformat/formats/semantic_segmentation/__init__.py | 0 2 files changed, 4 insertions(+) create mode 100644 src/labelformat/formats/semantic_segmentation/__init__.py 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