V3D / mesh_recon /models /__init__.py
heheyas
init
cfb7702
raw
history blame
No virus
263 Bytes
models = {}
def register(name):
def decorator(cls):
models[name] = cls
return cls
return decorator
def make(name, config):
model = models[name](config)
return model
from . import nerf, neus, geometry, texture