Answers for "python cv2 how to update image"

0

python cv2 how to update image

# Call imshow multiple times to update image.
# waitKey(milliseconds) waits a number of milliseconds before updating the image
while True:
    cv2.imshow('image', img)
    cv2.waitKey(1)
Posted by: Guest on May-23-2021

Python Answers by Framework

Browse Popular Code Answers by Language