📜  python cv2如何更新图像 - Python代码示例

📅  最后修改于: 2022-03-11 14:47:19.952000             🧑  作者: Mango

代码示例1
# 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)