├── .gitattributes ├── .gitignore ├── DeploySharp.sln ├── LICENSE.txt ├── README.md ├── README_cn.md ├── applications ├── .NET 6.0 │ └── DeploySharp.OpenCvSharp-ApplicationPlatform │ │ ├── DeploySharp.OpenCvSharp-ApplicationPlatform.csproj │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ └── Program.cs ├── .NET Framework 4.8 │ └── DeploySharp.ImageSharp-ApplicationPlatform │ │ ├── App.config │ │ ├── DeploySharp.ImageSharp-ApplicationPlatform.csproj │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── packages.config └── DeploySharp-Applications.sln ├── demos ├── DeploySharp.ImageSharp.Demo │ ├── AnomalibSegDemos.cs │ ├── DEIMv2DetDemo.cs │ ├── DeploySharp.ImageSharp.Demo.csproj │ ├── IFDETRDetDemo.cs │ ├── PPYoloeDetDemo.cs │ ├── Program.cs │ ├── RFDETRDetDemo.cs │ ├── RTDETRDetDemo.cs │ ├── YOLOv5DetDemo.cs │ └── YOLOv8DetDemo.cs ├── DeploySharp.ImageSharp.Pipeline.Demo │ ├── DeploySharp.ImageSharp.Pipeline.Demo.csproj │ └── Program.cs ├── DeploySharp.OpenCvSharp.Demo │ ├── AnomalibSegDemos.cs │ ├── DEIMv2DetDemo.cs │ ├── DeploySharp.OpenCvSharp.Demo.csproj │ ├── IFDETRDetDemo.cs │ ├── PPYoloeDetDemo.cs │ ├── Program.cs │ ├── RFDETRDetDemo.cs │ ├── RFDETRSegDemo.cs │ ├── RTDETRDetDemo.cs │ ├── YOLOv5DetDemo.cs │ ├── YOLOv8DetDemo.cs │ ├── YOLOv8ObbDemo.cs │ ├── YOLOv8PoseDemo.cs │ └── YOLOv8SegDemo.cs └── DeploySharp.OpenCvSharp.Pipeline.Demo │ ├── DeploySharp.OpenCvSharp.Pipeline.Demo.csproj │ └── Program.cs ├── docs ├── 0.ProjectIntroduction.md ├── 4.1 ModelDeploymentApplication.md ├── 4.2 ModelDeploymentApplication.md ├── catalogue.md └── shfb │ ├── API_Help_File_cn.shfbproj │ └── API_Help_File_en.shfbproj ├── nuget └── logo.jpg ├── samples ├── DeploySharp-Samples.sln ├── anomalibseg │ ├── anomalibseg_imagesharp │ │ ├── Program.cs │ │ └── anomalibseg_imagesharp.csproj │ └── anomalibseg_opencvsharp │ │ ├── Program.cs │ │ └── anomalibseg_opencvsharp.csproj ├── yolov11 │ ├── yolov11-det_opencvsharp │ │ ├── Program.cs │ │ └── yolov11-det_opencvsharp.csproj │ ├── yolov11-obb_opencvsharp │ │ ├── Program.cs │ │ └── yolov11-obb_opencvsharp.csproj │ └── yolov11-seg_opencvsharp │ │ ├── Program.cs │ │ └── yolov11-seg_opencvsharp.csproj └── yolov5 │ ├── yolov5-det_opencvsharp │ ├── Program.cs │ └── yolov5-det_opencvsharp.csproj │ └── yolov5-seg_imagesharp │ ├── Program.cs │ └── yolov5-seg_imagesharp.csproj └── src ├── DeploySharp.ImageSharp ├── Data │ ├── CvDataExtensions.cs │ ├── Proceessor │ │ └── CvDataProcessor.cs │ └── Visualize │ │ ├── VisionColors.cs │ │ ├── Visualize.cs │ │ └── VisualizeOptions.cs ├── DeploySharp.ImageSharp.csproj ├── Model │ └── ModelService │ │ ├── Anomalib │ │ └── AnomalibSegModel.cs │ │ ├── DEIMv2DetModel.cs │ │ ├── PPYoloeDetModel.cs │ │ ├── RFDETRDetModel.cs │ │ ├── RTDETRDetModel.cs │ │ └── Yolo │ │ ├── Yolov10DetModel.cs │ │ ├── Yolov11DetModel.cs │ │ ├── Yolov11ObbModel.cs │ │ ├── Yolov11PoseModel.cs │ │ ├── Yolov11SegModel.cs │ │ ├── Yolov12DetModel.cs │ │ ├── Yolov13DetModel.cs │ │ ├── Yolov5DetModel.cs │ │ ├── Yolov5SegModel.cs │ │ ├── Yolov6DetModel.cs │ │ ├── Yolov7DetModel.cs │ │ ├── Yolov8DetModel.cs │ │ ├── Yolov8ObbModel.cs │ │ ├── Yolov8PoseModel.cs │ │ ├── Yolov8SegModel.cs │ │ ├── Yolov9DetModel.cs │ │ └── Yolov9SegModel.cs └── Pipeline │ └── Pipeline.cs ├── DeploySharp.OpenCvSharp ├── Data │ ├── CvDataExtensions.cs │ ├── Proceessor │ │ └── CvDataProcessor.cs │ └── Visualize │ │ ├── VisionColors.cs │ │ ├── Visualize.cs │ │ └── VisualizeOptions.cs ├── DeploySharp.OpenCvSharp.csproj ├── Model │ └── ModelService │ │ ├── Anomalib │ │ └── AnomalibSegModel.cs │ │ ├── DEIMv2DetModel.cs │ │ ├── PPYoloeDetModel.cs │ │ ├── RFDETRDetModel.cs │ │ ├── RFDETRSegModel.cs │ │ ├── RTDETRDetModel.cs │ │ └── Yolo │ │ ├── Yolov10DetModel.cs │ │ ├── Yolov11DetModel.cs │ │ ├── Yolov11ObbModel.cs │ │ ├── Yolov11PoseModel.cs │ │ ├── Yolov11SegModel.cs │ │ ├── Yolov12DetModel.cs │ │ ├── Yolov13DetModel.cs │ │ ├── Yolov5DetModel.cs │ │ ├── Yolov5SegModel.cs │ │ ├── Yolov6DetModel.cs │ │ ├── Yolov7DetModel.cs │ │ ├── Yolov8DetModel.cs │ │ ├── Yolov8ObbModel.cs │ │ ├── Yolov8PoseModel.cs │ │ ├── Yolov8SegModel.cs │ │ ├── Yolov9DetModel.cs │ │ └── Yolov9SegModel.cs └── Pipeline │ └── Pipeline.cs └── DeploySharp ├── Common ├── DeploySharpException.cs ├── OnnxParamParse.cs └── Speed │ ├── ModelInferenceProfiler.cs │ └── PredictorTimer.cs ├── Data ├── DataTensor.cs ├── ImageData │ ├── ImageDataB.cs │ ├── ImageDataF.cs │ ├── ImageData{T}.cs │ ├── Point.cs │ ├── PointD.cs │ ├── PointF.cs │ ├── Rect.cs │ ├── RectD.cs │ ├── RectF.cs │ ├── RotatedRect.cs │ ├── Size.cs │ ├── SizeD.cs │ └── SizeF.cs ├── Pair.cs ├── ProcessData │ ├── BoundingBox.cs │ └── ImageAdjustmentParam.cs ├── Processor │ ├── DataProcessorConfig.cs │ ├── ImageResizeMode.cs │ ├── NonMaxSuppression.cs │ ├── NormalizationType.cs │ └── Util.cs └── ResultData │ ├── AnomalySegResult.cs │ ├── ClassNames.cs │ ├── DetResult.cs │ ├── KeyPointResult.cs │ ├── ObbResult.cs │ ├── Result.cs │ ├── ResultSet{T}.cs │ └── SegResult.cs ├── DeploySharp.cs ├── DeploySharp.csproj ├── Engine ├── Device.cs ├── IModelInferEngine.cs ├── InferEngineFactory.cs ├── OnnxRuntimeInferEngine.cs ├── OnnxRuntimeInferEngine.cs- ├── OpenVinoInferEngine.cs ├── OpenVinoInferEngine.cs- └── TensorRtInferEngine.cs ├── Logger ├── FileNamePattern.cs ├── LogManager.cs └── Logger.cs └── Model ├── Config ├── Anomalib │ └── AnomalibSegConfig.cs ├── DEIMv2DetConfig.cs ├── IConfig.cs ├── IConfig.cs- ├── IImgConfig.cs ├── PPYoloeDetConfig.cs ├── RFDETRDetConfig.cs ├── RFDETRSegConfig.cs ├── RTDETRDetConfig.cs └── Yolo │ ├── YoloConfig.cs │ ├── Yolov10DetConfig.cs │ ├── Yolov11DetConfig.cs │ ├── Yolov11ObbConfig.cs │ ├── Yolov11PoseConfig.cs │ ├── Yolov11SegConfig.cs │ ├── Yolov12DetConfig.cs │ ├── Yolov13DetConfig.cs │ ├── Yolov5DetConfig.cs │ ├── Yolov5SegConfig.cs │ ├── Yolov6DetConfig.cs │ ├── Yolov7DetConfig.cs │ ├── Yolov8DetConfig.cs │ ├── Yolov8ObbConfig.cs │ ├── Yolov8PoseConfig.cs │ ├── Yolov8SegConfig.cs │ ├── Yolov9DetConfig.cs │ └── Yolov9SegConfig.cs ├── ModelService ├── Anomalib │ └── IAnomalibSegModel.cs ├── IDEIMv2DetModel.cs ├── IModel.cs ├── IPPYoloeDetModel.cs ├── IRFDETRDetModel.cs ├── IRFDETRSegModel.cs ├── IRTDETRDetModel.cs └── Yolo │ ├── IYolov10DetModel.cs │ ├── IYolov11DetModel.cs │ ├── IYolov11ObbModel.cs │ ├── IYolov11PoseModel.cs │ ├── IYolov11SegModel.cs │ ├── IYolov12DetModel.cs │ ├── IYolov13DetModel.cs │ ├── IYolov5DetModel.cs │ ├── IYolov5SegModel.cs │ ├── IYolov6DetModel.cs │ ├── IYolov7DetModel.cs │ ├── IYolov8DetModel.cs │ ├── IYolov8ObbModel.cs │ ├── IYolov8PoseModel.cs │ ├── IYolov8SegModel.cs │ ├── IYolov9DetModel.cs │ └── IYolov9SegModel.cs └── ModelType.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/.gitignore -------------------------------------------------------------------------------- /DeploySharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/DeploySharp.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/README.md -------------------------------------------------------------------------------- /README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/README_cn.md -------------------------------------------------------------------------------- /applications/.NET 6.0/DeploySharp.OpenCvSharp-ApplicationPlatform/DeploySharp.OpenCvSharp-ApplicationPlatform.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET 6.0/DeploySharp.OpenCvSharp-ApplicationPlatform/DeploySharp.OpenCvSharp-ApplicationPlatform.csproj -------------------------------------------------------------------------------- /applications/.NET 6.0/DeploySharp.OpenCvSharp-ApplicationPlatform/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET 6.0/DeploySharp.OpenCvSharp-ApplicationPlatform/MainForm.Designer.cs -------------------------------------------------------------------------------- /applications/.NET 6.0/DeploySharp.OpenCvSharp-ApplicationPlatform/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET 6.0/DeploySharp.OpenCvSharp-ApplicationPlatform/MainForm.cs -------------------------------------------------------------------------------- /applications/.NET 6.0/DeploySharp.OpenCvSharp-ApplicationPlatform/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET 6.0/DeploySharp.OpenCvSharp-ApplicationPlatform/MainForm.resx -------------------------------------------------------------------------------- /applications/.NET 6.0/DeploySharp.OpenCvSharp-ApplicationPlatform/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET 6.0/DeploySharp.OpenCvSharp-ApplicationPlatform/Program.cs -------------------------------------------------------------------------------- /applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/App.config -------------------------------------------------------------------------------- /applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/DeploySharp.ImageSharp-ApplicationPlatform.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/DeploySharp.ImageSharp-ApplicationPlatform.csproj -------------------------------------------------------------------------------- /applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/MainForm.Designer.cs -------------------------------------------------------------------------------- /applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/MainForm.cs -------------------------------------------------------------------------------- /applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/MainForm.resx -------------------------------------------------------------------------------- /applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/Program.cs -------------------------------------------------------------------------------- /applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/Properties/Resources.resx -------------------------------------------------------------------------------- /applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/Properties/Settings.settings -------------------------------------------------------------------------------- /applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/.NET Framework 4.8/DeploySharp.ImageSharp-ApplicationPlatform/packages.config -------------------------------------------------------------------------------- /applications/DeploySharp-Applications.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/applications/DeploySharp-Applications.sln -------------------------------------------------------------------------------- /demos/DeploySharp.ImageSharp.Demo/AnomalibSegDemos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.ImageSharp.Demo/AnomalibSegDemos.cs -------------------------------------------------------------------------------- /demos/DeploySharp.ImageSharp.Demo/DEIMv2DetDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.ImageSharp.Demo/DEIMv2DetDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.ImageSharp.Demo/DeploySharp.ImageSharp.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.ImageSharp.Demo/DeploySharp.ImageSharp.Demo.csproj -------------------------------------------------------------------------------- /demos/DeploySharp.ImageSharp.Demo/IFDETRDetDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.ImageSharp.Demo/IFDETRDetDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.ImageSharp.Demo/PPYoloeDetDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.ImageSharp.Demo/PPYoloeDetDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.ImageSharp.Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.ImageSharp.Demo/Program.cs -------------------------------------------------------------------------------- /demos/DeploySharp.ImageSharp.Demo/RFDETRDetDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.ImageSharp.Demo/RFDETRDetDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.ImageSharp.Demo/RTDETRDetDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.ImageSharp.Demo/RTDETRDetDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.ImageSharp.Demo/YOLOv5DetDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.ImageSharp.Demo/YOLOv5DetDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.ImageSharp.Demo/YOLOv8DetDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.ImageSharp.Demo/YOLOv8DetDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.ImageSharp.Pipeline.Demo/DeploySharp.ImageSharp.Pipeline.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.ImageSharp.Pipeline.Demo/DeploySharp.ImageSharp.Pipeline.Demo.csproj -------------------------------------------------------------------------------- /demos/DeploySharp.ImageSharp.Pipeline.Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.ImageSharp.Pipeline.Demo/Program.cs -------------------------------------------------------------------------------- /demos/DeploySharp.OpenCvSharp.Demo/AnomalibSegDemos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.OpenCvSharp.Demo/AnomalibSegDemos.cs -------------------------------------------------------------------------------- /demos/DeploySharp.OpenCvSharp.Demo/DEIMv2DetDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.OpenCvSharp.Demo/DEIMv2DetDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.OpenCvSharp.Demo/DeploySharp.OpenCvSharp.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.OpenCvSharp.Demo/DeploySharp.OpenCvSharp.Demo.csproj -------------------------------------------------------------------------------- /demos/DeploySharp.OpenCvSharp.Demo/IFDETRDetDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.OpenCvSharp.Demo/IFDETRDetDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.OpenCvSharp.Demo/PPYoloeDetDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.OpenCvSharp.Demo/PPYoloeDetDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.OpenCvSharp.Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.OpenCvSharp.Demo/Program.cs -------------------------------------------------------------------------------- /demos/DeploySharp.OpenCvSharp.Demo/RFDETRDetDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.OpenCvSharp.Demo/RFDETRDetDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.OpenCvSharp.Demo/RFDETRSegDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.OpenCvSharp.Demo/RFDETRSegDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.OpenCvSharp.Demo/RTDETRDetDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.OpenCvSharp.Demo/RTDETRDetDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.OpenCvSharp.Demo/YOLOv5DetDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.OpenCvSharp.Demo/YOLOv5DetDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.OpenCvSharp.Demo/YOLOv8DetDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.OpenCvSharp.Demo/YOLOv8DetDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.OpenCvSharp.Demo/YOLOv8ObbDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.OpenCvSharp.Demo/YOLOv8ObbDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.OpenCvSharp.Demo/YOLOv8PoseDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.OpenCvSharp.Demo/YOLOv8PoseDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.OpenCvSharp.Demo/YOLOv8SegDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.OpenCvSharp.Demo/YOLOv8SegDemo.cs -------------------------------------------------------------------------------- /demos/DeploySharp.OpenCvSharp.Pipeline.Demo/DeploySharp.OpenCvSharp.Pipeline.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.OpenCvSharp.Pipeline.Demo/DeploySharp.OpenCvSharp.Pipeline.Demo.csproj -------------------------------------------------------------------------------- /demos/DeploySharp.OpenCvSharp.Pipeline.Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/demos/DeploySharp.OpenCvSharp.Pipeline.Demo/Program.cs -------------------------------------------------------------------------------- /docs/0.ProjectIntroduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/docs/0.ProjectIntroduction.md -------------------------------------------------------------------------------- /docs/4.1 ModelDeploymentApplication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/docs/4.1 ModelDeploymentApplication.md -------------------------------------------------------------------------------- /docs/4.2 ModelDeploymentApplication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/docs/4.2 ModelDeploymentApplication.md -------------------------------------------------------------------------------- /docs/catalogue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/docs/catalogue.md -------------------------------------------------------------------------------- /docs/shfb/API_Help_File_cn.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/docs/shfb/API_Help_File_cn.shfbproj -------------------------------------------------------------------------------- /docs/shfb/API_Help_File_en.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/docs/shfb/API_Help_File_en.shfbproj -------------------------------------------------------------------------------- /nuget/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/nuget/logo.jpg -------------------------------------------------------------------------------- /samples/DeploySharp-Samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/samples/DeploySharp-Samples.sln -------------------------------------------------------------------------------- /samples/anomalibseg/anomalibseg_imagesharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/samples/anomalibseg/anomalibseg_imagesharp/Program.cs -------------------------------------------------------------------------------- /samples/anomalibseg/anomalibseg_imagesharp/anomalibseg_imagesharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/samples/anomalibseg/anomalibseg_imagesharp/anomalibseg_imagesharp.csproj -------------------------------------------------------------------------------- /samples/anomalibseg/anomalibseg_opencvsharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/samples/anomalibseg/anomalibseg_opencvsharp/Program.cs -------------------------------------------------------------------------------- /samples/anomalibseg/anomalibseg_opencvsharp/anomalibseg_opencvsharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/samples/anomalibseg/anomalibseg_opencvsharp/anomalibseg_opencvsharp.csproj -------------------------------------------------------------------------------- /samples/yolov11/yolov11-det_opencvsharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/samples/yolov11/yolov11-det_opencvsharp/Program.cs -------------------------------------------------------------------------------- /samples/yolov11/yolov11-det_opencvsharp/yolov11-det_opencvsharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/samples/yolov11/yolov11-det_opencvsharp/yolov11-det_opencvsharp.csproj -------------------------------------------------------------------------------- /samples/yolov11/yolov11-obb_opencvsharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/samples/yolov11/yolov11-obb_opencvsharp/Program.cs -------------------------------------------------------------------------------- /samples/yolov11/yolov11-obb_opencvsharp/yolov11-obb_opencvsharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/samples/yolov11/yolov11-obb_opencvsharp/yolov11-obb_opencvsharp.csproj -------------------------------------------------------------------------------- /samples/yolov11/yolov11-seg_opencvsharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/samples/yolov11/yolov11-seg_opencvsharp/Program.cs -------------------------------------------------------------------------------- /samples/yolov11/yolov11-seg_opencvsharp/yolov11-seg_opencvsharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/samples/yolov11/yolov11-seg_opencvsharp/yolov11-seg_opencvsharp.csproj -------------------------------------------------------------------------------- /samples/yolov5/yolov5-det_opencvsharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/samples/yolov5/yolov5-det_opencvsharp/Program.cs -------------------------------------------------------------------------------- /samples/yolov5/yolov5-det_opencvsharp/yolov5-det_opencvsharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/samples/yolov5/yolov5-det_opencvsharp/yolov5-det_opencvsharp.csproj -------------------------------------------------------------------------------- /samples/yolov5/yolov5-seg_imagesharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/samples/yolov5/yolov5-seg_imagesharp/Program.cs -------------------------------------------------------------------------------- /samples/yolov5/yolov5-seg_imagesharp/yolov5-seg_imagesharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/samples/yolov5/yolov5-seg_imagesharp/yolov5-seg_imagesharp.csproj -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Data/CvDataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Data/CvDataExtensions.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Data/Proceessor/CvDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Data/Proceessor/CvDataProcessor.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Data/Visualize/VisionColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Data/Visualize/VisionColors.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Data/Visualize/Visualize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Data/Visualize/Visualize.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Data/Visualize/VisualizeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Data/Visualize/VisualizeOptions.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/DeploySharp.ImageSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/DeploySharp.ImageSharp.csproj -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Anomalib/AnomalibSegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Anomalib/AnomalibSegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/DEIMv2DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/DEIMv2DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/PPYoloeDetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/PPYoloeDetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/RFDETRDetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/RFDETRDetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/RTDETRDetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/RTDETRDetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov10DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov10DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov11DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov11DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov11ObbModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov11ObbModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov11PoseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov11PoseModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov11SegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov11SegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov12DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov12DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov13DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov13DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov5DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov5DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov5SegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov5SegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov6DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov6DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov7DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov7DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov8DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov8DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov8ObbModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov8ObbModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov8PoseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov8PoseModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov8SegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov8SegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov9DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov9DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov9SegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Model/ModelService/Yolo/Yolov9SegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.ImageSharp/Pipeline/Pipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.ImageSharp/Pipeline/Pipeline.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Data/CvDataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Data/CvDataExtensions.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Data/Proceessor/CvDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Data/Proceessor/CvDataProcessor.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Data/Visualize/VisionColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Data/Visualize/VisionColors.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Data/Visualize/Visualize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Data/Visualize/Visualize.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Data/Visualize/VisualizeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Data/Visualize/VisualizeOptions.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/DeploySharp.OpenCvSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/DeploySharp.OpenCvSharp.csproj -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Anomalib/AnomalibSegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Anomalib/AnomalibSegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/DEIMv2DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/DEIMv2DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/PPYoloeDetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/PPYoloeDetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/RFDETRDetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/RFDETRDetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/RFDETRSegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/RFDETRSegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/RTDETRDetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/RTDETRDetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov10DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov10DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov11DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov11DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov11ObbModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov11ObbModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov11PoseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov11PoseModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov11SegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov11SegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov12DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov12DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov13DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov13DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov5DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov5DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov5SegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov5SegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov6DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov6DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov7DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov7DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov8DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov8DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov8ObbModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov8ObbModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov8PoseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov8PoseModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov8SegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov8SegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov9DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov9DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov9SegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Model/ModelService/Yolo/Yolov9SegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp.OpenCvSharp/Pipeline/Pipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp.OpenCvSharp/Pipeline/Pipeline.cs -------------------------------------------------------------------------------- /src/DeploySharp/Common/DeploySharpException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Common/DeploySharpException.cs -------------------------------------------------------------------------------- /src/DeploySharp/Common/OnnxParamParse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Common/OnnxParamParse.cs -------------------------------------------------------------------------------- /src/DeploySharp/Common/Speed/ModelInferenceProfiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Common/Speed/ModelInferenceProfiler.cs -------------------------------------------------------------------------------- /src/DeploySharp/Common/Speed/PredictorTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Common/Speed/PredictorTimer.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/DataTensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/DataTensor.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ImageData/ImageDataB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ImageData/ImageDataB.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ImageData/ImageDataF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ImageData/ImageDataF.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ImageData/ImageData{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ImageData/ImageData{T}.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ImageData/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ImageData/Point.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ImageData/PointD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ImageData/PointD.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ImageData/PointF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ImageData/PointF.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ImageData/Rect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ImageData/Rect.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ImageData/RectD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ImageData/RectD.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ImageData/RectF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ImageData/RectF.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ImageData/RotatedRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ImageData/RotatedRect.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ImageData/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ImageData/Size.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ImageData/SizeD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ImageData/SizeD.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ImageData/SizeF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ImageData/SizeF.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/Pair.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ProcessData/BoundingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ProcessData/BoundingBox.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ProcessData/ImageAdjustmentParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ProcessData/ImageAdjustmentParam.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/Processor/DataProcessorConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/Processor/DataProcessorConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/Processor/ImageResizeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/Processor/ImageResizeMode.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/Processor/NonMaxSuppression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/Processor/NonMaxSuppression.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/Processor/NormalizationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/Processor/NormalizationType.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/Processor/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/Processor/Util.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ResultData/AnomalySegResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ResultData/AnomalySegResult.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ResultData/ClassNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ResultData/ClassNames.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ResultData/DetResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ResultData/DetResult.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ResultData/KeyPointResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ResultData/KeyPointResult.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ResultData/ObbResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ResultData/ObbResult.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ResultData/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ResultData/Result.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ResultData/ResultSet{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ResultData/ResultSet{T}.cs -------------------------------------------------------------------------------- /src/DeploySharp/Data/ResultData/SegResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Data/ResultData/SegResult.cs -------------------------------------------------------------------------------- /src/DeploySharp/DeploySharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/DeploySharp.cs -------------------------------------------------------------------------------- /src/DeploySharp/DeploySharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/DeploySharp.csproj -------------------------------------------------------------------------------- /src/DeploySharp/Engine/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Engine/Device.cs -------------------------------------------------------------------------------- /src/DeploySharp/Engine/IModelInferEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Engine/IModelInferEngine.cs -------------------------------------------------------------------------------- /src/DeploySharp/Engine/InferEngineFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Engine/InferEngineFactory.cs -------------------------------------------------------------------------------- /src/DeploySharp/Engine/OnnxRuntimeInferEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Engine/OnnxRuntimeInferEngine.cs -------------------------------------------------------------------------------- /src/DeploySharp/Engine/OnnxRuntimeInferEngine.cs-: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Engine/OnnxRuntimeInferEngine.cs- -------------------------------------------------------------------------------- /src/DeploySharp/Engine/OpenVinoInferEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Engine/OpenVinoInferEngine.cs -------------------------------------------------------------------------------- /src/DeploySharp/Engine/OpenVinoInferEngine.cs-: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Engine/OpenVinoInferEngine.cs- -------------------------------------------------------------------------------- /src/DeploySharp/Engine/TensorRtInferEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Engine/TensorRtInferEngine.cs -------------------------------------------------------------------------------- /src/DeploySharp/Logger/FileNamePattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Logger/FileNamePattern.cs -------------------------------------------------------------------------------- /src/DeploySharp/Logger/LogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Logger/LogManager.cs -------------------------------------------------------------------------------- /src/DeploySharp/Logger/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Logger/Logger.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Anomalib/AnomalibSegConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Anomalib/AnomalibSegConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/DEIMv2DetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/DEIMv2DetConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/IConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/IConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/IConfig.cs-: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/IConfig.cs- -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/IImgConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/IImgConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/PPYoloeDetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/PPYoloeDetConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/RFDETRDetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/RFDETRDetConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/RFDETRSegConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/RFDETRSegConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/RTDETRDetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/RTDETRDetConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/YoloConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/YoloConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov10DetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov10DetConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov11DetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov11DetConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov11ObbConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov11ObbConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov11PoseConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov11PoseConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov11SegConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov11SegConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov12DetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov12DetConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov13DetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov13DetConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov5DetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov5DetConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov5SegConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov5SegConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov6DetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov6DetConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov7DetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov7DetConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov8DetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov8DetConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov8ObbConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov8ObbConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov8PoseConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov8PoseConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov8SegConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov8SegConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov9DetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov9DetConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/Config/Yolo/Yolov9SegConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/Config/Yolo/Yolov9SegConfig.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Anomalib/IAnomalibSegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Anomalib/IAnomalibSegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/IDEIMv2DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/IDEIMv2DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/IModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/IModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/IPPYoloeDetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/IPPYoloeDetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/IRFDETRDetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/IRFDETRDetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/IRFDETRSegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/IRFDETRSegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/IRTDETRDetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/IRTDETRDetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov10DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov10DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov11DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov11DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov11ObbModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov11ObbModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov11PoseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov11PoseModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov11SegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov11SegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov12DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov12DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov13DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov13DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov5DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov5DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov5SegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov5SegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov6DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov6DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov7DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov7DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov8DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov8DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov8ObbModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov8ObbModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov8PoseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov8PoseModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov8SegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov8SegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov9DetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov9DetModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelService/Yolo/IYolov9SegModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelService/Yolo/IYolov9SegModel.cs -------------------------------------------------------------------------------- /src/DeploySharp/Model/ModelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/DeploySharp/HEAD/src/DeploySharp/Model/ModelType.cs --------------------------------------------------------------------------------