how to img in opencv
import cv2
#Best Usage
path = r'image location'
img = cv2.imread(path)
#if you use resizde img
resized_img = cv2.resize(img, (640, 680)) #example 640, 680
cv2.imshow('resized_img', resized_img)
cv2.imshow('img', img)
cv2.waitKey(0)
cv2.destroyAllWindows()