Files
dataset-yolo-script/sam2-cpu/yolo_annotator/__init__.py
T
2026-02-04 15:29:36 +07:00

20 lines
430 B
Python

"""
YOLO-Assisted Video Annotator
Auto-annotate videos using pretrained YOLOv9t model.
Outputs clean snapshots paired with YOLO format labels.
"""
from .annotator import YOLOAnnotator
from .video_source import VideoSource
from .export import AnnotationExporter
from .visualizer import DebugVisualizer
__version__ = "0.1.0"
__all__ = [
"YOLOAnnotator",
"VideoSource",
"AnnotationExporter",
"DebugVisualizer",
]