Merge remote-tracking branch 'origin/feature/redesigned_annotators' into feature/redesigned_annotators
This commit is contained in:
commit
8141cb357f
|
|
@ -6,6 +6,15 @@ try:
|
|||
except importlib_metadata.PackageNotFoundError:
|
||||
__version__ = "development"
|
||||
|
||||
from supervision.annotators.core import (
|
||||
BoundingBoxAnnotator,
|
||||
BoxCornerAnnotator,
|
||||
EllipseAnnotator,
|
||||
LabelAdvancedAnnotator,
|
||||
LabelAnnotator,
|
||||
MaskAnnotator,
|
||||
TraceAnnotator
|
||||
)
|
||||
from supervision.classification.core import Classifications
|
||||
from supervision.dataset.core import (
|
||||
BaseDataset,
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import os.path
|
||||
from collections import defaultdict
|
||||
from typing import List, Optional, Union, Tuple
|
||||
from typing import List, Optional, Tuple, Union
|
||||
|
||||
import cv2
|
||||
import numpy as np
|
||||
|
|
|
|||
Loading…
Reference in New Issue