SRPose / datasets /__init__.py
FrickYinn's picture
Upload 53 files
e170a8e verified
raw
history blame contribute delete
589 Bytes
from .matterport import build_matterport
from .linemod import build_linemod
from .megadepth import build_concat_megadepth
from .scannet import build_concat_scannet
from .ho3d import build_ho3d
from .mapfree import build_concat_mapfree
from .sampler import RandomConcatSampler
dataset_dict = {
'scene': {
'matterport': build_matterport,
'megadepth': build_concat_megadepth,
'scannet': build_concat_scannet,
'mapfree': build_concat_mapfree,
},
'object': {
'linemod': build_linemod,
'ho3d': build_ho3d,
}
}