blendersynth.utils.types
- blendersynth.utils.types.BboxAnnotation
Bbox annotation, a 1D array per instance
alias of
List
[mathutils.Vector
|ndarray
|List
|Tuple
]
- blendersynth.utils.types.KeypointOrAxesAnnotation
Keypoint Annotations, an N x 2 ndarray per instance, or Axes annotation, a 4 x 2 ndarray per instance
alias of
List
[ndarray
]
- blendersynth.utils.types.VectorLike
A type hint that represents vector-like objects. Can be any of:
mathutils.Vector
numpy.ndarray
list
tuple
alias of
mathutils.Vector
|ndarray
|List
|Tuple
- blendersynth.utils.types.VectorLikeOrScalar
A type hint that represents vector-like objects. Can be any of:
int
float
alias of
mathutils.Vector
|ndarray
|List
|Tuple
|int
|float