initial commit

This commit is contained in:
Si11ium
2020-04-08 14:59:42 +02:00
parent c15ee64688
commit f0262e1895
19 changed files with 1021 additions and 0 deletions

11
utils/transforms.py Normal file
View File

@ -0,0 +1,11 @@
import numpy as np
class AsArray(object):
def __init__(self, width, height):
self.width = width
self.height = height
def __call__(self, x):
array = np.zeros((self.width, self.height))
return array