“Py Draw Matrix dari Black Square and White Circle” Kode Jawaban

Py Draw Matrix dari Black Square and 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 dari Black Square and 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 dari Black Square and White Circle

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

Jawaban yang mirip dengan “Py Draw Matrix dari Black Square and White Circle”

Pertanyaan yang mirip dengan “Py Draw Matrix dari Black Square and White Circle”

Lebih banyak jawaban terkait untuk “Py Draw Matrix dari Black Square and White Circle” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya