Answers for "generate a random np image array with shape"

0

generate a random np image array with shape

import numpy as np
from PIL import Image
random_array = np.random.rand(177,284,3)
random_array = np.random.random_sample(random_array.shape) * 255
random_array = random_array.astype(np.uint8)
random_im = Image.fromarray(random_array)
random_im.show()
Posted by: Guest on March-16-2022

Python Answers by Framework

Browse Popular Code Answers by Language