Disable webcam LED
Is it possible to disable webcam led while capturing an image on Windows?
Is it possible to disable webcam led while capturing an image on Windows?
I don't think, that is possibly. That is on hardware level or at best on driver level.
most win webcam drivers come with a properties page, that you can call e.g from vlc, media player, etc, - even (with a bit of luck) from opencv:
VideoCapture cap(0);
cap.set(CAP_PROP_SETTINGS,1);
the settings will be persistant, but you'll have to remember, which usb port you plugged it into !
Asked: 2013-09-13 02:46:49 -0600
Seen: 9,056 times
Last updated: Sep 13 '13
autogain. how to disable autogain and set a fixed value
Computer Vision - Craps Coach Project from a Newbie
Camera is not working in OpenCV on Ubuntu 12.04 with version 2.3.1 or 2.4.2
How to set resolution of video capture in python with Logitech c910 & c920
VideoCapture open and source switching problems [closed]
VideoCapture parameters CV_CAP_PROP_FOURCC or CV_CAP_PROP_FPS, among others, not working
Get 50% faulty pictures from webcam using VideoCapture
Create_capture video compression
A videocapture object has set and get functions. On android you could just do Videocapture.set(CV_CAP_PROP_ANDROID_FLASH_MODE, CV_CAP_ANDROID_FLASH_MODE_OFF).
The only thing that looks close to something like led light is CV_CAP_PROP_BACKLIGHT. So try to do Videocapture.set(CV_CAP_PROP_BACKLIGHT, 0)
thanks, but it doesn't work