OpenCV-Python es una biblioteca de enlaces de Python diseñada para resolver problemas de visión por computadora. El método cv2.imshow() se usa para mostrar una imagen en una ventana. La ventana se ajusta automáticamente al tamaño de la imagen.
Sintaxis: cv2.imshow(nombre_ventana, imagen)
Parámetros:
nombre_ventana: Una string que representa el nombre de la ventana en la que se mostrará la imagen.
imagen: Es la imagen que se va a mostrar.
Valor devuelto: No devuelve nada.
Imagen utilizada para todos los siguientes ejemplos:
Ejemplo 1:
# Python program to explain cv2.imshow() method # importing cv2 import cv2 # path path = r'C:\Users\Rajnish\Desktop\geeksforgeeks.png' # Reading an image in default mode image = cv2.imread(path) # Window name in which image is displayed window_name = 'image' # Using cv2.imshow() method # Displaying the image cv2.imshow(window_name, image) #waits for user to press any key #(this is necessary to avoid Python kernel form crashing) cv2.waitKey(0) #closing all open windows cv2.destroyAllWindows()
Producción:
Ejemplo #2:
# Python program to explain cv2.imshow() method # importing cv2 import cv2 # path path = r'C:\Users\Rajnish\Desktop\geeksforgeeks.png' # Reading an image in grayscale mode image = cv2.imread(path, 0) # Window name in which image is displayed window_name = 'image' # Using cv2.imshow() method # Displaying the image cv2.imshow(window_name, image) # waits for user to press any key # (this is necessary to avoid Python kernel form crashing) cv2.waitKey(0) # closing all open windows cv2.destroyAllWindows()
Producción: