# -*- coding: utf-8 -*-
import cv2
img = cv2.imread("test.jpg")
cv2.imshow("img", img)
cv2.waitKey(0)
cv2.destroyAllWindows()