We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seems to be either an issue on ARM or an issue with OpenCV 4.3.
On OpenCV 4.2 / x86_64 / Python 3.7
>>> import cv2 >>> cap = cv2.VideoCapture(0) >>> cap.set(cv2.CAP_PROP_CONVERT_RGB, False) True >>> cap.set(cv2.CAP_PROP_CONVERT_RGB, 1) True >>> cap.set(cv2.CAP_PROP_CONVERT_RGB, 0) True
However using False on OpenCV 4.3/aarch64/Python 3.7 now causes a TypeError.
False
Should probably move everything to 0/1 which should be back compatible at least.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Seems to be either an issue on ARM or an issue with OpenCV 4.3.
On OpenCV 4.2 / x86_64 / Python 3.7
However using
False
on OpenCV 4.3/aarch64/Python 3.7 now causes a TypeError.Should probably move everything to 0/1 which should be back compatible at least.
The text was updated successfully, but these errors were encountered: