diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..134c49b --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +/yolo11s.pt +/*.mp4 +/*.jpg +/*.png +/*.gif +/*.avi +/*.mkv +/build/* +/cache/* +/logs/* diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..8603a69 --- /dev/null +++ b/__init__.py @@ -0,0 +1,12 @@ +from .pipeline.pipeline_data import PipelineData +from .pipeline.base_processor import BaseProcessor +from .pipeline.pipeline import Pipeline +from .pipeline.data_source import video_yolo_iterator, video_yolo_detect_iterator + +__all__ = [ + 'PipelineData', + 'BaseProcessor', + 'Pipeline', + 'video_yolo_iterator', + 'video_yolo_detect_iterator', +] \ No newline at end of file