Commit ac8d949 1 parent d682b67 commit ac8d949 Copy full SHA for ac8d949
File tree 1 file changed +1
-5
lines changed
1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -324,7 +324,6 @@ class SingleMeshSegmentationData(TypedDict):
324
324
325
325
class ShapePrimitiveKind (str , Enum ):
326
326
sphere = "sphere"
327
- tube = "tube"
328
327
cylinder = "cylinder"
329
328
box = "box"
330
329
ellipsoid = "ellipsoid"
@@ -335,8 +334,6 @@ class ShapePrimitiveBase(TypedDict):
335
334
# NOTE: to be able to refer to it in annotations
336
335
id : int
337
336
kind : ShapePrimitiveKind
338
- # NOTE: color in annotations
339
-
340
337
341
338
class RotationParameters (TypedDict ):
342
339
axis : tuple [float , float , float ]
@@ -502,7 +499,6 @@ class ShapePrimitiveInputData(BaseModel):
502
499
EllipsoidInputParams ,
503
500
CylinderInputParams ,
504
501
BoxInputParams ,
505
- SphereInputParams ,
506
502
ShapePrimitiveInputParams ,
507
503
]
508
504
@@ -511,7 +507,7 @@ class GeometricSegmentationInputData(BaseModel):
511
507
# provide id here as optional
512
508
segmentation_id : Optional [str ]
513
509
# maps timeframe index to list of ShapePrimitiveInputData
514
- shape_primitives_input : dict [int , list [ShapePrimitiveInputData ]]
510
+ shape_primitives_input : dict [str , list [ShapePrimitiveInputData ]]
515
511
time_units : Optional [str ]
516
512
517
513
You can’t perform that action at this time.
0 commit comments