image = camera.read()
image = cv2.cvtColor(image, cv2.COLOR_RGB2GRAY)
When I'm starting a program - got this:
Traceback:
File "file", line 55, in <module>
image = cv2.cvtColor(image, cv2.COLOR_RGB2GRAY)
TypeError: src is not a numerical tuple
How can I fix it?
imageand the rest of your code ...