V3D / mesh_recon /systems /__init__.py
heheyas
init
cfb7702
raw
history blame
No virus
472 Bytes
systems = {}
def register(name):
def decorator(cls):
systems[name] = cls
return cls
return decorator
def make(name, config, load_from_checkpoint=None):
if load_from_checkpoint is None:
system = systems[name](config)
else:
system = systems[name].load_from_checkpoint(
load_from_checkpoint, strict=False, config=config
)
return system
from . import neus, neus_ortho, neus_pinhole, neus_videonvs