Hi, I’m working with this function [get and set]
videoCapture.get(cv::CAP_PROP_BRIGHTNESS)
The Opencv site explains this function :
Brightness of the image (only for those cameras that support).
in detail say : Brightness of the image (only for those cameras that support).
When I try to change the brightness of my webcam with this function :
videoCapture.set(cv::CAP_PROP_BRIGHTNESS)
Nothing happens, I think my webcam does not support this feature!
My question is how can I recognize this with programming code?