1import cv2
2cv2.namedWindow("output", cv2.WINDOW_NORMAL) # Create window with freedom of dimensions
3im = cv2.imread("earth.jpg") # Read image
4imS = cv2.resize(im, (960, 540)) # Resize image
5cv2.imshow("output", imS) # Show image
6cv2.waitKey(0) # Display the image infinitely until any keypress
7