OpenCV 或 Emgu CV 桌面捕获选项中是否有任何功能?(插件,库,类)所以我知道我们可以以一种非常简单的方式捕获相机,是否有任何桌面捕获方式的选项?
问问题
4701 次
2 回答
0
此解决方案也是 emgucv 之外的解决方案:您还可以使用 c 锐化System.Drawing.Graphics.CopyFromScreen
Bitmap bitmap = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
Graphics graphics = Graphics.FromImage(bitmap as Image);
graphics.CopyFromScreen(0, 0, 0, 0, bitmap.Size);
于 2017-03-14T13:05:05.390 回答