V3D / mesh_recon /datasets /__init__.py
heheyas
init
cfb7702
raw history blame
No virus
303 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, videonvs, videonvs_co3d, v3d