hom_traj_gen/lib/utils/transforms.py
Steffen Illium 91ecf157d6 initial
2020-02-13 20:28:20 +01:00

13 lines
241 B
Python

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