這篇文章主要介紹了C#呼叫AForge實現相機錄影的範例程式碼,非常具有實用價值,需要的朋友可以參考下
#1:先下載庫檔>>
#也可以去官網尋找>>
下載本教學全程式碼>>
輸出為MP4需要用到ffmpeg相關的檔案,我打包的函式庫已經帶了,去官網找的函式庫可以在這個目錄找到:
2:加入這些引用:
3:兩個全域變數:
//用来操作摄像头 private VideoCaptureDevice Camera = null; //用来把每一帧图像编码到视频文件 private VideoFileWriter VideoOutPut = new VideoFileWriter(); 开始代码: //获取摄像头列表 var devs = new FilterInfoCollection(FilterCategory.VideoInputDevice); //实例化设备控制类(我选了第1个) Camera = new VideoCaptureDevice(devs[0].MonikerString); //配置录像参数(宽,高,帧率,比特率等参数)VideoCapabilities这个属性会返回摄像头支持哪些配置,从这里面选一个赋值接即可,我选了第1个 Camera.VideoResolution = Camera.VideoCapabilities[0]; //设置回调,aforge会不断从这个回调推出图像数据 Camera.NewFrame += Camera_NewFrame; //打开摄像头 Camera.Start(); //打开录像文件(如果没有则创建,如果有也会清空),这里还有关于 VideoOutPut.Open("E:/VIDEO.MP4", Camera.VideoResolution.FrameSize.Width, Camera.VideoResolution.FrameSize.Height, Camera.VideoResolution.AverageFrameRate, VideoCodec.MPEG4, Camera.VideoResolution.BitCount); 给AForge输出图像数据的回调方法: //图像缓存 private Bitmap bmp = new Bitmap(1, 1); //摄像头输出回调 private void Camera_NewFrame(object sender, NewFrameEventArgs eventArgs) { //写到文件 VideoOutPut.WriteVideoFrame(eventArgs.Frame); lock (bmp) { //释放上一个缓存 bmp.Dispose(); //保存一份缓存 bmp = eventArgs.Frame.Clone() as Bitmap; } }
結束程式碼:
//停摄像头 Camera.Stop(); //关闭录像文件,如果忘了不关闭,将会得到一个损坏的文件,无法播放 VideoOutPut.Close();
4:修改App.config,相容net2.0的一些東西:
<?xml version="1.0" encoding="utf-8"?> <configuration> <startup useLegacyV2RuntimeActivationPolicy="true"> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/> </startup> <supportedRuntime version="v2.0.50727"/> </configuration>
不然會這樣:
以上是C#使用AForge實現相機錄影功能的案例的詳細內容。更多資訊請關注PHP中文網其他相關文章!