if cv2.waitKey(20) & 0xFF ==27:
Can anybody tell me the working of this this code in python
if cv2.waitKey(20) & 0xFF ==27:
Can anybody tell me the working of this this code in python
The waitKey()
function waits for the specified millisecond and then returns the code for the key pressed or -1 if no key was pressed.