🛠️ fix #149 - typo in filename
This commit is contained in:
parent
34e45bed5e
commit
006caa0b9b
|
|
@ -23,7 +23,7 @@ from supervision.dataset.formats.yolo import (
|
|||
save_data_yaml,
|
||||
save_yolo_annotations,
|
||||
)
|
||||
from supervision.dataset.ultils import save_dataset_images, train_test_split
|
||||
from supervision.dataset.utils import save_dataset_images, train_test_split
|
||||
from supervision.detection.core import Detections
|
||||
from supervision.utils.file import list_files_with_extensions
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ from typing import Dict, List, Tuple
|
|||
import cv2
|
||||
import numpy as np
|
||||
|
||||
from supervision.dataset.ultils import approximate_mask_with_polygons
|
||||
from supervision.dataset.utils import approximate_mask_with_polygons
|
||||
from supervision.detection.core import Detections
|
||||
from supervision.detection.utils import polygon_to_mask
|
||||
from supervision.utils.file import read_json_file, save_json_file
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ from xml.etree.ElementTree import Element, SubElement, parse, tostring
|
|||
|
||||
import numpy as np
|
||||
|
||||
from supervision.dataset.ultils import approximate_mask_with_polygons
|
||||
from supervision.dataset.utils import approximate_mask_with_polygons
|
||||
from supervision.detection.core import Detections
|
||||
from supervision.detection.utils import polygon_to_xyxy
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ import cv2
|
|||
import numpy as np
|
||||
import yaml
|
||||
|
||||
from supervision.dataset.ultils import approximate_mask_with_polygons
|
||||
from supervision.dataset.utils import approximate_mask_with_polygons
|
||||
from supervision.detection.core import Detections
|
||||
from supervision.detection.utils import polygon_to_mask, polygon_to_xyxy
|
||||
from supervision.utils.file import (
|
||||
|
|
|
|||
|
|
@ -13,7 +13,6 @@ from supervision.detection.utils import (
|
|||
xywh_to_xyxy,
|
||||
)
|
||||
from supervision.geometry.core import Position
|
||||
from supervision.utils.internal import deprecated
|
||||
|
||||
|
||||
def _validate_xyxy(xyxy: Any, n: int) -> None:
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ from contextlib import ExitStack as DoesNotRaise
|
|||
|
||||
import pytest
|
||||
|
||||
from supervision.dataset.ultils import train_test_split
|
||||
from supervision.dataset.utils import train_test_split
|
||||
|
||||
T = TypeVar("T")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue