From a4e12b8d6df1f927eda1cadeead779994c732e8e Mon Sep 17 00:00:00 2001 From: zimoyin <2556608754@qq.com> Date: Sat, 10 Jan 2026 09:42:07 +0800 Subject: [PATCH] =?UTF-8?q?feat(.gitignore):=20=E9=85=8D=E7=BD=AE=E5=BF=BD?= =?UTF-8?q?=E7=95=A5=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 10 ++++++++++ __init__.py | 12 ++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 .gitignore create mode 100644 __init__.py 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