有人可以帮我解决这个问题吗?
我从AForge.Net中放置了VideoSourcePlayer控件,我的表单上有一个图片框和一个按钮。点击时我想只显示从当前帧到图片框的区域。我可以使用以下代码显示整个框架:
Bitmap bitmap = (Bitmap)videoSourcePlayer1.GetCurrentVideoFrame().Clone();
pictureBox1.Image = bitmap;
答案 0 :(得分:1)
Bitmap bitmap = this.VideoSourcePlayer.GetCurrentVideoFrame();