wyysf's picture
i
0f079b2
raw
history blame
271 Bytes
datasets = {}
def register(name):
def decorator(cls):
datasets[name] = cls
return cls
return decorator
def make(name, config):
dataset = datasets[name](config)
return dataset
from . import blender, colmap, dtu, ortho