Get deepcopy of current ObjectAnnotation instance. Returns: ObjectAnnotation: A deep copy of this ObjectAnnotation.
(self)
| 701 | return imantics_annotation |
| 702 | |
| 703 | def deepcopy(self) -> ObjectAnnotation: |
| 704 | """Get deepcopy of current ObjectAnnotation instance. |
| 705 | |
| 706 | Returns: |
| 707 | ObjectAnnotation: A deep copy of this ObjectAnnotation. |
| 708 | """ |
| 709 | return copy.deepcopy(self) |
| 710 | |
| 711 | @classmethod |
| 712 | def get_empty_mask(cls) -> Mask: |
no outgoing calls
no test coverage detected