我们往往用Aforge,WPFMediaKit和WinCap这三种方法,来打开USB摄像头或网络摄像机等等,这三者方法是目前CSDM或GitHub上的的主流方法。而且,我们可以在GitHub找到源码。
该网页分析了它们的区别:
https://blog.csdn.net/bornonew/article/details/53302416
AForge是一个C#开源库(官网www.aforgenet.com),包括计算机视觉与人工智能,图像处理,神经网络,遗传算法,机器学习,机器人等领域。
https://blog.csdn.net/u014328876/article/details/49847167
https://blog.csdn.net/chartx/article/details/17756927
Aforge的核心就是在wpf调用winform的控件,利用System.Windows.Forms.Integration 包裹aforge控件。这种方式不能实现 newframe方法,(比如你想翻转usb摄像头的图像)。除此之外,对cpu的占用也比较高。在aforge较高版本中,不允许开发者去修改帧率,只能控制器分辨率。
(非常重要)http://www.cnblogs.com/gaochundong/p/opensource_ip_video_surveillance_system_part_1_introduction.html
(重点)https://blog.csdn.net/taiguisheng/article/details/81915924
(重点) https://blog.csdn.net/m_buddy/article/details/62417912(可以录像、拍照)
https://blog.csdn.net/chenhongwu666/article/details/40594365?locationNum=10
https://blog.csdn.net/weixin_36957825/article/details/53636430
http://www.cnblogs.com/DragonStart/p/7563351.html
https://blog.csdn.net/luo_5458/article/details/74452534
https://www.cnblogs.com/ysyn/p/3934554.html
https://blog.csdn.net/hellogv/article/details/5555689(手势识别)
基于Aforge.net的C#人脸识别(人脸识别)
https://www.cnblogs.com/ching2009/p/4158669.html
AForge.net简介和认识 - ching126 - 博客园
AForge.NET简介 - 心灵智者 - 博客园
http://www.aforge.cn/index.php/Index/index(官网,中文版)
https://github.com/search?l=C%23&q=Aforge&type=Repositories(GitHub官网)
WPFMediaKit占用分辨率低,但是他的图片获取是通过类似屏幕截图的方式获取,而不是获取的最初的原始图片,并且摄像头视频会有一定的延迟。
https://blog.csdn.net/bornonew/article/details/53302416
wincap资料较少,暂时没看出来怎么实现的截图功能。
https://blog.csdn.net/feifantiantang/article/details/79855708(WinForm)
https://blog.csdn.net/love254443233/article/details/6940420(提供了详细的说明)
https://blog.csdn.net/liyuqian199695/article/details/65447395(WinForm)
https://blog.csdn.net/hxiaohai/article/details/50636633