“PY Draw Matrix of Black Square i White Circle” Kod odpowiedzi

PY Draw Matrix of Black Square i White Circle

>>> face.tofile('face.raw') # Create raw file
>>> face_from_raw = np.fromfile('face.raw', dtype=np.uint8)
>>> face_from_raw.shape
(2359296,)
>>> face_from_raw.shape = (768, 1024, 3)
Yawning Yacare

PY Draw Matrix of Black Square i White Circle

>>> from scipy import misc
>>> import imageio
>>> face = misc.face()
>>> imageio.imsave('face.png', face) # First we need to create the PNG file

>>> face = imageio.imread('face.png')
>>> type(face)      
<class 'imageio.core.util.Array'>
>>> face.shape, face.dtype
((768, 1024, 3), dtype('uint8'))
Yawning Yacare

PY Draw Matrix of Black Square i White Circle

>>> face_memmap = np.memmap('face.raw', dtype=np.uint8, shape=(768, 1024, 3))
Yawning Yacare

Odpowiedzi podobne do “PY Draw Matrix of Black Square i White Circle”

Pytania podobne do “PY Draw Matrix of Black Square i White Circle”

Więcej pokrewnych odpowiedzi na “PY Draw Matrix of Black Square i White Circle” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu