I saw this declaration in Python, but I don't understand what it means and can't find an explanation:
ret, thresh = cv2.threshold(imgray, 127, 255, 0)
The question is: why is there there a comma between ret
and thresh
? What type of assignment is that?