Coverage for backpack/annotation/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.2.2, created at 2023-03-30 23:12 +0000
« prev ^ index » next coverage.py v7.2.2, created at 2023-03-30 23:12 +0000
1''' This module makes it possible to draw annotations on different
2backends with an unified API. Currently, you can draw rectangles and labels with
3:mod:`~backpack.annotation` on ``panoramasdk.media`` and OpenCV images
4(:class:`numpy arrays <numpy.ndarray>`).'''
6from .annotation import (
7 Annotation, LabelAnnotation, RectAnnotation, LineAnnotation, MarkerAnnotation,
8 PolyLineAnnotation, TimestampAnnotation, BoundingBoxAnnotation
9)
11from .color import Color