File size: 589 Bytes
e170a8e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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,
    }
}