设置网络摄像头属性(例如增益、亮度、曝光)

发布于 2024-12-12 23:51:34 字数 186 浏览 1 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何处潇湘 2024-12-19 23:51:34

您可以使用 IAMVideoProcAmp::Set 方法来设置它们,可设置的属性包括:

typedef enum tagVideoProcAmpProperty {
  VideoProcAmp_Brightness,
  VideoProcAmp_Contrast,
  VideoProcAmp_Hue,
  VideoProcAmp_Saturation,
  VideoProcAmp_Sharpness,
  VideoProcAmp_Gamma,
  VideoProcAmp_ColorEnable,
  VideoProcAmp_WhiteBalance,
  VideoProcAmp_BacklightCompensation,
  VideoProcAmp_Gain 
} VideoProcAmpProperty;

摄像头驱动程序当然需要支持/实现这些属性才能使它们可调。

You can set them using IAMVideoProcAmp::Set method, the settable properties include:

typedef enum tagVideoProcAmpProperty {
  VideoProcAmp_Brightness,
  VideoProcAmp_Contrast,
  VideoProcAmp_Hue,
  VideoProcAmp_Saturation,
  VideoProcAmp_Sharpness,
  VideoProcAmp_Gamma,
  VideoProcAmp_ColorEnable,
  VideoProcAmp_WhiteBalance,
  VideoProcAmp_BacklightCompensation,
  VideoProcAmp_Gain 
} VideoProcAmpProperty;

The camera driver certainly needs to support/implement the properties in order for them to be adjustable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文