Answers for "cv2 imshow how to make window a certain size"

4

resize imshow opencv python

import cv2
cv2.namedWindow("output", cv2.WINDOW_NORMAL)        # Create window with freedom of dimensions
im = cv2.imread("earth.jpg")                        # Read image
imS = cv2.resize(im, (960, 540))                    # Resize image
cv2.imshow("output", imS)                            # Show image
cv2.waitKey(0)                                      # Display the image infinitely until any keypress
Posted by: Guest on May-16-2020
5

window size cv2

import cv2
cv2.namedWindow("output", cv2.WINDOW_AUTOSIZE)        # Create window with freedom of dimensions
im = cv2.imread("earth.jpg")                        # Read image
imS = cv2.resize(im, (960, 540))                    # Resize image
cv2.imshow("output", imS)                            # Show image
cv2.waitKey(0)                                      # Display the image infinitely until any keypress
Posted by: Guest on August-06-2020

Python Answers by Framework

Browse Popular Code Answers by Language