@crackwitz Thanks for the reply, but it doesn’t matter if the room is dark, because the video feed was still good on OpenCV on my old Windows 10 install. For my new Windows 10 install, here’s what I did to match the OpenCV settings to the OBS settings:
cap.set(cv::CAP_PROP_BRIGHTNESS, 0);
cap.set(cv::CAP_PROP_CONTRAST, 32);
cap.set(CV_CAP_PROP_HUE, 0);
cap.set(CV_CAP_PROP_SATURATION, 60);
cap.set(CV_CAP_PROP_SHARPNESS, 2);
cap.set(CV_CAP_PROP_GAMMA, 100);
cap.set(CV_CAP_PROP_BACKLIGHT, 1);
cap.set(CV_CAP_PROP_GAIN, 0);
cap.set(cv::CAP_PROP_AUTO_EXPOSURE, 1);
But the frames still look the same. The only thing that makes a difference is:
cap.set(cv::CAP_PROP_EXPOSURE, -5);
But still, the frames are not as good as on my old Windows 10 install or OBS studio.