Este dilema se puede tratar de diversas formas, sin embargo te enseñamos la resolución más completa en nuestra opinión.
Ejemplo 1: tamaño de ventana 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
Ejemplo 2: cambiar el tamaño de 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
Reseñas y valoraciones
Ten en cuenta comunicar este ensayo si si solucionó tu problema.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)