Answers for "make white image numpy"

0

make white image numpy

import numpy as np
img = np.zeros([100,100,3],dtype=np.uint8)
img.fill(255) # or img[:] = 255
Posted by: Guest on June-04-2020

Python Answers by Framework

Browse Popular Code Answers by Language