├── .gitattributes ├── .gitignore ├── .gitmodules ├── CSharp-Deploy-YOLO.sln ├── LICENSE.txt ├── README.md ├── demo └── yolo_openvino_demo │ ├── Program.cs │ ├── time_test.cs │ ├── yolo_openvino_demo.csproj │ └── yolo_ultralytics_det.cs ├── docs └── 1.项目下载和安装.md └── src ├── YoloDeployPlatform ├── App.config ├── ONNXToEngine.Designer.cs ├── ONNXToEngine.cs ├── ONNXToEngine.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── YoloDeployPlatform.Designer.cs ├── YoloDeployPlatform.cs ├── YoloDeployPlatform.csproj ├── YoloDeployPlatform.resx ├── log.cs ├── packages.config └── predictor │ ├── Predictor.cs │ ├── enum.cs │ ├── yolo-world.cs │ ├── yolo.cs │ ├── yolov10-det.cs │ ├── yolov5-cls.cs │ ├── yolov5-det.cs │ ├── yolov5-seg.cs │ ├── yolov6-det.cs │ ├── yolov7-det.cs │ ├── yolov8-cls.cs │ ├── yolov8-det.cs │ ├── yolov8-obb.cs │ ├── yolov8-pose.cs │ ├── yolov8-seg.cs │ ├── yolov9-det.cs │ └── yolov9-seg.cs └── YoloDeployPlatformNet6.0 ├── ONNXToEngine.Designer.cs ├── ONNXToEngine.cs ├── ONNXToEngine.resx ├── Program.cs ├── YoloDeployPlatform.Designer.cs ├── YoloDeployPlatform.cs ├── YoloDeployPlatform.resx ├── YoloDeployPlatformNet6.0.csproj ├── log.cs └── predictor ├── Predictor.cs ├── enum.cs ├── yolo-world.cs ├── yolo.cs ├── yolov10-det.cs ├── yolov5-cls.cs ├── yolov5-det.cs ├── yolov5-seg.cs ├── yolov6-det.cs ├── yolov7-det.cs ├── yolov8-cls.cs ├── yolov8-det.cs ├── yolov8-obb.cs ├── yolov8-pose.cs ├── yolov8-seg.cs ├── yolov9-det.cs └── yolov9-seg.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/.gitmodules -------------------------------------------------------------------------------- /CSharp-Deploy-YOLO.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/CSharp-Deploy-YOLO.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/README.md -------------------------------------------------------------------------------- /demo/yolo_openvino_demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/demo/yolo_openvino_demo/Program.cs -------------------------------------------------------------------------------- /demo/yolo_openvino_demo/time_test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/demo/yolo_openvino_demo/time_test.cs -------------------------------------------------------------------------------- /demo/yolo_openvino_demo/yolo_openvino_demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/demo/yolo_openvino_demo/yolo_openvino_demo.csproj -------------------------------------------------------------------------------- /demo/yolo_openvino_demo/yolo_ultralytics_det.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/demo/yolo_openvino_demo/yolo_ultralytics_det.cs -------------------------------------------------------------------------------- /docs/1.项目下载和安装.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/docs/1.项目下载和安装.md -------------------------------------------------------------------------------- /src/YoloDeployPlatform/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/App.config -------------------------------------------------------------------------------- /src/YoloDeployPlatform/ONNXToEngine.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/ONNXToEngine.Designer.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/ONNXToEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/ONNXToEngine.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/ONNXToEngine.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/ONNXToEngine.resx -------------------------------------------------------------------------------- /src/YoloDeployPlatform/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/Program.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/Properties/Resources.resx -------------------------------------------------------------------------------- /src/YoloDeployPlatform/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/Properties/Settings.settings -------------------------------------------------------------------------------- /src/YoloDeployPlatform/YoloDeployPlatform.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/YoloDeployPlatform.Designer.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/YoloDeployPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/YoloDeployPlatform.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/YoloDeployPlatform.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/YoloDeployPlatform.csproj -------------------------------------------------------------------------------- /src/YoloDeployPlatform/YoloDeployPlatform.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/YoloDeployPlatform.resx -------------------------------------------------------------------------------- /src/YoloDeployPlatform/log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/log.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/packages.config -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/Predictor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/Predictor.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/enum.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/yolo-world.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/yolo-world.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/yolo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/yolo.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/yolov10-det.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/yolov10-det.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/yolov5-cls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/yolov5-cls.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/yolov5-det.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/yolov5-det.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/yolov5-seg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/yolov5-seg.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/yolov6-det.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/yolov6-det.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/yolov7-det.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/yolov7-det.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/yolov8-cls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/yolov8-cls.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/yolov8-det.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/yolov8-det.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/yolov8-obb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/yolov8-obb.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/yolov8-pose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/yolov8-pose.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/yolov8-seg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/yolov8-seg.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/yolov9-det.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/yolov9-det.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatform/predictor/yolov9-seg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatform/predictor/yolov9-seg.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/ONNXToEngine.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/ONNXToEngine.Designer.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/ONNXToEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/ONNXToEngine.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/ONNXToEngine.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/ONNXToEngine.resx -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/Program.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/YoloDeployPlatform.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/YoloDeployPlatform.Designer.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/YoloDeployPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/YoloDeployPlatform.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/YoloDeployPlatform.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/YoloDeployPlatform.resx -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/YoloDeployPlatformNet6.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/YoloDeployPlatformNet6.0.csproj -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/log.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/Predictor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/Predictor.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/enum.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/yolo-world.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/yolo-world.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/yolo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/yolo.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/yolov10-det.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/yolov10-det.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/yolov5-cls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/yolov5-cls.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/yolov5-det.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/yolov5-det.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/yolov5-seg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/yolov5-seg.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/yolov6-det.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/yolov6-det.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/yolov7-det.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/yolov7-det.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/yolov8-cls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/yolov8-cls.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/yolov8-det.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/yolov8-det.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/yolov8-obb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/yolov8-obb.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/yolov8-pose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/yolov8-pose.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/yolov8-seg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/yolov8-seg.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/yolov9-det.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/yolov9-det.cs -------------------------------------------------------------------------------- /src/YoloDeployPlatformNet6.0/predictor/yolov9-seg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/YoloDeployCsharp/HEAD/src/YoloDeployPlatformNet6.0/predictor/yolov9-seg.cs --------------------------------------------------------------------------------