【C#】PictureBox浏览视频并画图标注—海康摄像头

使用海康摄像头SDK里的DrawFun回调函数实现在实时浏览的摄像头界面上绘制图形。
回调函数定义:

public CHCNetSDK.DRAWFUN DrawFun = null;

在播放浏览函数内对播放句柄进行定义,注意第三个输入量为null

m_lRealHandle = CHCNetSDK.NET_DVR_RealPlay_V40(m_lUserID, ref lpPreviewInfo, null/*RealData*/, pUser);

当句柄m_lRealHandle为非负时,即预览成功后注册绘图回调函数

DrawFun = new CHCNetSDK.DRAWFUN(DrawFunCallBack);
bool b = CHCNetSDK.NET_DVR_RigisterDrawFun(m_lRealHandle, DrawFun, 0);

之后具体的绘画内容在回调函数DrawFunCallBack画就可以了,比如:

public void DrawFunCallBack(int lRealHandle, IntPtr hDc, uint dwUser)
        {
            Graphics g = Graphics.FromHdc(hDc);
            if (null == g)
                return;
            int Wid = _wnd.Width;
            int Hig = _wnd.Height;           
            Pen pen = new Pen(Color.Red, 1);
            pen.DashStyle = System.Drawing.Drawing2D.DashStyle.Custom;
            pen.DashPattern = new float[] { 5, 5 };
            Point point1 = new Point(Wid / 2, 0);
            Point point2 = new Point(Wid / 2, Hig);
            Point point3 = new Point(0, Hig / 2);
            Point point4 = new Point(Wid, Hig / 2);
            Rectangle rect = new Rectangle(Wid / 2 - Hig / 4, Hig / 4, Hig / 2, Hig / 2);
            g.DrawLine(pen, point1, point2);
            g.DrawLine(pen, point3, point4);
            g.DrawEllipse(pen, rect);
            pen.Dispose();
            g.Dispose();
        }

效果图
_wnd是类里接收到的Picturebox浏览窗口。
在这里插入图片描述
具体的写了个.cs可以使用PictureBox浏览视频并画图标注
加载命名空间后使用

PlayVideo play1 = new PlayVideo();
string IP1 = "192.168.1.13";
string User = "admin";
string Pw = "abcd1234";

play1.IP = IP1;
play1.User = User;
play1.Pw = Pw;
play1.Wnd = RealPlayWnd1;//PicTureBox
play1.masking = true;//启动绘图回调函数
play1.Login();
play1.Preview();
C#中,可以使用OpenCVSharp库来实现PictureBox播放视频的功能。以下是实现该功能的步骤: 1. 首先,需要安装OpenCVSharp库。可以在NuGet包管理器中搜索并安装OpenCVSharp4。 2. 在窗体中添加一个PictureBox控件,并设置其大小和位置。 3. 在代码中导入OpenCVSharp的命名空间。 4. 使用VideoCapture类打开视频文件,并使用Mat类读取每一帧图像。 5. 将读取到的图像转换为Bitmap格式,并将其赋值给PictureBox的Image属性。 6. 在需要的时候,可以使用Graphics类在PictureBox上绘制方框。 以下是示例代码: ```csharp using OpenCvSharp; using System; using System.Drawing; using System.Windows.Forms; namespace VideoPlayer { public partial class Form1 : Form { private VideoCapture capture; private Mat frame; public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { capture = new VideoCapture("video.mp4"); frame = new Mat(); timer1.Interval = 33; // 设置定时器间隔为33毫秒,即每秒30帧 timer1.Start(); } private void timer1_Tick(object sender, EventArgs e) { capture.Read(frame); // 读取一帧图像 if (!frame.Empty()) { Bitmap bitmap = BitmapConverter.ToBitmap(frame); // 将Mat转换为Bitmap pictureBox1.Image = bitmap; // 显示图像 } } private void pictureBox1_Paint(object sender, PaintEventArgs e) { // 在PictureBox上绘制方框 e.Graphics.DrawRectangle(Pens.Red, new Rectangle(100, 100, 200, 200)); } } } ```
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值