Answers for "python show image from array"

3

display np array as image

from PIL import Image
import numpy as np

w, h = 512, 512
data = np.zeros((h, w, 3), dtype=np.uint8)
data[0:256, 0:256] = [255, 0, 0] # red patch in upper left
img = Image.fromarray(data, 'RGB')
img.save('my.png')
img.show()
Posted by: Guest on June-08-2020
20

how to create an array in python

array = ["1st", "2nd", "3rd"]
#prints: ['1st', '2nd', '3rd']
array.append("4th")
#prints: ['1st', '2nd', '3rd', '4th']
Posted by: Guest on November-28-2019
1

pillow image from array

PIL.Image.fromarray(your_array)
Posted by: Guest on May-12-2020
0

how to create an array from a list in python

def tips_unfold(fn, seed):
  def fn_generator(val):
    while True: 
      val = fn(val[1])
      if val == False: break
      yield val[0]
  return [i for i in fn_generator([None, seed])]

f = lambda n: False if n > 50 else [-n, n + 10]
print(tips_unfold(f, 10))
Posted by: Guest on March-23-2020

Python Answers by Framework

Browse Popular Code Answers by Language