摘要:
今天给大家分享一个小程序:调用本机摄像头实现照相的程序: 废话不多说了、直接进入主题吧、 首先、创建一个WinForm程序、添加一个CameraAPI.cs类、用来调用微软提供的摄像头API函数用的、代码如下所示:CameraAPI.cs(摄像头API调用类) 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace CameraVideoWithAPI 8 { 9... 阅读全文