add-script-to-convert-label-studio-output-to-annotation #9

Merged
brian merged 5 commits from add-script-to-convert-label-studio-output-to-annotation into main 2025-09-18 23:57:20 +02:00
Showing only changes of commit a124a72c96 - Show all commits
+7 -7
View File
@@ -13,17 +13,17 @@ from .point_of_view_enum import PointOfViewEnum
class Annotation(TypeCheckingBaseModel): class Annotation(TypeCheckingBaseModel):
"""Data Transfer Object representing an Annotation.""" """Data Transfer Object representing an Annotation."""
angle: AngleEnum angle: AngleEnum | None
angle_uncertainty: bool angle_uncertainty: bool
colour: ColourEnum colour: ColourEnum | None
colour_uncertainty: bool colour_uncertainty: bool
contact: ContactEnum contact: ContactEnum | None
contact_uncertainty: bool contact_uncertainty: bool
depth: DepthEnum depth: DepthEnum | None
depth_uncertainty: bool depth_uncertainty: bool
distance: DistanceEnum distance: DistanceEnum | None
distance_uncertainty: bool distance_uncertainty: bool
lighting: LightingEnum lighting: LightingEnum | None
lighting_uncertainty: bool lighting_uncertainty: bool
point_of_view: PointOfViewEnum point_of_view: PointOfViewEnum | None
point_of_view_uncertainty: bool point_of_view_uncertainty: bool