20 lines
430 B
Python
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",
|
|
]
|