使用 C# 获取视频设备列表并将其中任何一个设置为默认值
您好,我必须获取连接到我的电脑的所有相机的列表 并将任何选定的摄像机设置为默认摄像机。
我按照这个链接提供了列表,也调用了相机,但代码并不总是有效,我的意思是我得到了列表,但相机仅被调用一次,并且在重新启动后也是如此
http://www.c-sharpcorner.com/UploadFile/yougerthen/810262008070218AM/8.aspx
我还需要捕获 yuv使用流式传输来自摄像机的视频。
请帮忙。
hi i have to fetch list of all cameras attached to my pc
and set any selected camera as default.
i followed this link which provides list and also invokes camera but the code does not works all time i mean i get the list but camera is invoked only once and that too after reboot
http://www.c-sharpcorner.com/UploadFile/yougerthen/810262008070218AM/8.aspx
also i need to capture yuv video from camera using streaming.
please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要一个 SystemDeviceEnumerator 对象。 此页面显示了枚举 1394 设备的示例。
You want a SystemDeviceEnumerator object. This page shows an example of enumerating 1394 devices.
您好,我遵循了这个示例,它对我有用:
http://www.codeproject.com/ KB/directx/directxcapture.aspx
Hi i follwed this sample and it worked for me:
http://www.codeproject.com/KB/directx/directxcapture.aspx