画像を表示する

2022/02/13

Python3.9.9, OpenCV4.5.5

import cv2

img = cv2.imread('test.png')

cv2.imshow("window title", img)
cv2.waitKey()
cv2.destroyAllWindows()