-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrender_config.py
64 lines (50 loc) · 1.76 KB
/
render_config.py
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
64
import numpy as np
import json
import math
import os
class RenderConfig:
def __init__(self, config_file=None):
if not config_file:
self.config = dict()
# Background
self.config["bg_color"] = np.asarray([0.3, 0.8, 0.9, 1]).tolist()
# Object
self.config["object"] = dict()
self.config["object"]["offset"] = \
[0, 0, -50e-2]
self.config["object"]["rand_trans"] = \
[[-5e-2, 5e-2],
[-5e-2, 5e-2],
[-5e-2, 5e-2]]
self.config["object"]["rand_rot"] = \
[[-math.pi, math.pi],
[-math.pi, math.pi],
[-math.pi, math.pi]]
# Lighting
light_arr = []
light_1 = dict()
light_1["type"] = "directional"
light_1["color"] = [1, 0.9, 1]
light_1["intensity"] = 3e1
light_arr.append(light_1)
light_2 = dict()
light_2["type"] = "spot"
light_2["cone_angle"] = np.pi / 3
light_2["intensity"] = 1
light_arr.append(light_2)
self.config["lighting"] = light_arr
else:
with open(config_file, 'r') as f:
self.config = json.load(f)
def write_to_file(self, config_file):
with open(config_file, 'w') as f:
json.dump(self.config, f, indent=4)
def get_config(self):
return self.config
if __name__ == "__main__":
file_dir = os.path.dirname(__file__)
config_file = f'{file_dir}/../configs/default_render_config.json'
config = RenderConfig()
config.write_to_file(config_file)
config_2 = RenderConfig(config_file)
print(config_2.get_config())