设置网络摄像头属性(例如增益、亮度、曝光)
我正在 C# (Winforms) 上编写一个小型应用程序,我正在其中访问网络摄像头来捕获一些图像。
有谁知道是否可以使用 C# 访问和设置网络摄像头的属性,例如增益、亮度和曝光? (不要弹出网络摄像头自己的属性窗口)
我尝试使用 DirectShow 库,它只允许我设置曝光,但不能设置增益或亮度。
提前欢呼
I'm writing a small application on C# (Winforms) where I am accessing a Webcam to capture some images.
Does anyone know if it's possible to access and set the webcam's properties like gain, brightness and exposure using c#? (Don't pop-up Webcam's own Properties window)
I've tried using the DirectShow library and it only allows me to set the exposure but no the gain nor brightness.
Cheers in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 IAMVideoProcAmp::Set 方法来设置它们,可设置的属性包括:
摄像头驱动程序当然需要支持/实现这些属性才能使它们可调。
You can set them using
IAMVideoProcAmp::Set
method, the settable properties include:The camera driver certainly needs to support/implement the properties in order for them to be adjustable.