1) BMP
2) JPG
3) GIF
4) PNG
주로 손실이 적은 PNG파일을 많이 사용한다.
import cv2
import sys
print('hello', cv2.__version__)
img = cv2.imread('cat.bmp')
if img is None:
print('img load fail')
sys.exit() # system exit
# make window
cv2.namedWindow('image')
# image show on the window
cv2.imshow('image', img)
# wait until pressing any keys
cv2.waitKey()
cv2.destroyAllWindows()