Skip to content
Snippets Groups Projects

Shape dimensions

Merged Naser Azizi requested to merge shape_dimensions into main
@@ -27,3 +27,11 @@ class ImageROI(robokudo.types.core.Type):
super().__init__()
self.mask = None # Should be an OpenCV image
self.roi = Rect()
class BoundingBox3D(robokudo.types.core.Type):
def __init__(self):
super().__init__()
self.x_length = 0.0
self.y_length = 0.0
self.z_length = 0.0
Loading