Veamos cómo crear una imagen blanca usando NumPy y cv2. Una imagen blanca tiene todos sus píxeles como 255.
Método 1: Usando el método np.full() :
Python3
# importing the libraries import cv2 import numpy as np # creating an array using np.full # 255 is code for white color array_created = np.full((500, 500, 3), 255, dtype = np.uint8) # displaying the image cv2.imshow("image", array_created)
Producción:
Método 2: al crear una array usando np.zeroes() :
Python3
# importing the modules import numpy as np import cv2 # creating array using np.zeroes() array = np.zeros([500, 500, 3], dtype = np.uint8) # setting RGB color values as 255,255,255 array[:, :] = [255, 255, 255] # displaying the image cv2.imshow("image", array)
Producción:
Publicación traducida automáticamente
Artículo escrito por Akashkumar17 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA