blendersynth.utils.types

blendersynth.utils.types.BboxAnnotation

Bbox annotation, a 1D array per instance

alias of List[Union[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 Union[Vector, ndarray, List, Tuple]

blendersynth.utils.types.VectorLikeOrScalar

A type hint that represents vector-like objects. Can be any of:

alias of Union[Vector, ndarray, List, Tuple, int, float]