forked from DLR-RM/BlenderProc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
63 lines (63 loc) · 1.21 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Args: <cam_file> <obj_file> <output_dir>
{
"version": 3,
"setup": {
"blender_install_path": "/home_local/<env:USER>/blender/",
"pip": [
"h5py"
]
},
"modules": [
{
"module": "main.Initializer",
"config": {
"global": {
"output_dir": "<args:2>"
}
}
},
{
"module": "loader.SuncgLoader",
"config": {
"path": "<args:1>"
}
},
{
"module": "camera.CameraLoader",
"config": {
"path": "<args:0>",
"file_format": "location rotation/value _ _ _ _ _ _",
"source_frame": ["X", "-Z", "Y"],
"default_cam_param": {
"rotation": {
"format": "forward_vec"
}
},
"intrinsics": {
"fov": 1,
"pixel_aspect_x": 1.333333333
}
}
},
{
"module": "lighting.SuncgLighting",
},
{
"module": "renderer.SegMapRenderer",
"config": {
"use_alpha": True
}
},
{
"module": "renderer.RgbRenderer",
"config": {
"use_alpha": True,
"render_distance": true,
"render_normals": True
}
},
{
"module": "writer.Hdf5Writer",
}
]
}