Detroit: Become Human Part 2
Yes I have 2 forms human and pony. I'm Toshiro some prefer to call me Senpai. I love to roleplay. ( Facebook:Toshiro Oshiro )
youtu.be
seal.mp4<:vinny:631324820386349077><:vinny:631324820386349077><:vinny:631324820386349077>
Yes I have 2 forms human and pony. I'm Toshiro some prefer to call me Senpai. I love to roleplay. ( Facebook:Toshiro Oshiro )
youtu.beCurrently want to screw up my luck
www.twitch.tvloss = [[1,0,1,1],
[1,0,1,1],
[1,1,1,0],
[1,1,1,1]]
import numpy as np
from scipy.misc import imsave
im = np.array(loss).astype(float)
gap_width = 4
while im.shape[0] < 1024*4:
new_im = np.zeros([gap_width*4,gap_width*4])
new_im[:gap_width,:gap_width] = im
new_im[:gap_width,2*gap_width:3*gap_width] = im
new_im[:gap_width,3*gap_width:] = im
new_im[gap_width:2*gap_width,:] = new_im[:gap_width,:]
new_im[2*gap_width:,:2*gap_width] = new_im[:2*gap_width,2*gap_width:]
new_im[2*gap_width:,2*gap_width:] = new_im[:2*gap_width,2*gap_width:]
new_im[2*gap_width:3*gap_width,3*gap_width:] = 0
im = new_im
gap_width *= 4
imsave("test.png",im*255)