Image vide de Numpy

import numpy as np
img = np.zeros([100,100,3],dtype=np.uint8)
img.fill(255) # or img[:] = 255

# from https://stackoverflow.com/questions/10465747/how-to-create-a-white-image-in-python/10470485
lanzani