public
partial
class
Form1 : Form
{
Capture _capture;
public
Form1()
{
InitializeComponent();
_capture =
new
Capture(“url”);//视频文件路径
_capture.ImageGrabbed += _capture_ImageGrabbed;//添加回调函数
_capture.Start();
}
void
_capture_ImageGrabbed(
object
sender, EventArgs e)
{
var frame = _capture.RetrieveBgrFrame();//frame为每一帧图像
//处理图片
pic.Image = frame.Bitmap;//返回每一帧图像(即播放)
//针对frame做其他处理
......
}
}
时间: 2024-10-12 02:53:42