Python OpenCV – función destroyWindow()

La función Python Opencv destroyWindow() se usa para cerrar ventanas particulares. Esta función toma un parámetro que es el nombre de la ventana que desea cerrar o destruir y no devuelve nada.

Sintaxis: cv2.destroyWindow(nombre_ventana)

Parámetro:

  • window_name: nombre de la ventana que quieres destruir

Retorno: esta función no devuelve nada.

Función destroyWindow() – Ejemplos

En este ejemplo, leeremos una imagen y crearemos múltiples ventanas de ella. Luego destruiremos cualquier ventana en particular usando la función destroyWindow().

Python3

# import cv2 library
import cv2
  
# Read an image
img = cv2.imread("Documents/Image3.jpg",
                 cv2.IMREAD_COLOR)
  
# create two windows of images and 
# give different window name to each
cv2.imshow("I1", img)
cv2.imshow("I2", img)
  
# we will wait for user to press any key
cv2.waitKey(0)
  
# after user pressed any key only 'I2' named
# window will be closed and another image
# remains as it is.
cv2.destroyWindow("I2")

Producción:

Publicación traducida automáticamente

Artículo escrito por patildhanu4111999 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *