专栏名称: dotNET跨平台
专注于.NET Core的技术传播。在这里你可以谈微软.NET,Mono的跨平台开发技术。在这里可以让你的.NET项目有新的思路,不局限于微软的技术栈,横跨Windows,Linux 主流平台
今天看啥  ›  专栏  ›  dotNET跨平台

C# YoloV8 OpenVINO 视频抽帧 自动标注 预标注工具

dotNET跨平台  · 公众号  ·  · 2024-06-29 08:00
    

文章预览

效果 项目 代码 using OpenCvSharp; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Text; using System.Threading; using System.Threading.Tasks; using System.Windows.Forms;   namespace yolov8_OpenVINO_Demo {     public partial class Form2 : Form     {         public  Form2 ()         {             InitializeComponent();         }           YoloV8 yoloV8;         YoloV8Async yoloV8Async;           string model_path;           string video_path =  "" ;         string video_name =  "" ;         string videoFilter =  "*.mp4|*.mp4;" ;         VideoCapture vcapture;           string output_path =  "" ;         string images_path =  "" ;         string labels_path =  "" ;             StringBuilder sb = new StringBuilder();           ///    ………………………………

原文地址:访问原文地址
快照地址: 访问文章快照
总结与预览地址:访问总结与预览