我试图在aForge演示中调用VideoCaptureDevice表单,但我无法做到。我似乎无法让它运行起来。
我需要一种方法来改变分辨率,或者你可以建议一些其他方法来做到这一点。我也试过了分辨率功能,但这给我带来了一些麻烦。
有什么建议吗?
提前致谢,以下是更改解决方案的代码。这可能是完全错误的。我不知道那个。我使用私有readonly CameraDevices camDevices;从网络摄像头捕获视频。该视频在图片框中运行
private void btnSettings_Click_1(object sender, EventArgs e)
{
//resolution
if (videoDevice != null)
{
if ((videoCapabilities != null) && (videoCapabilities.Length != 0))
{
videoDevice.VideoResolution = videoCapabilities[3];
}
}
}