-
Notifications
You must be signed in to change notification settings - Fork 1
/
config_reconstruct.json
63 lines (63 loc) · 1.25 KB
/
config_reconstruct.json
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
{
"input_path": "point_cloud.laz",
"output_dir": "output_reconstruct",
"output_name": "textured_mesh",
"rpc_path": "rpc.XML",
"tif_img_path": "texture_image.tif",
"image_offset": [
15029,
17016
],
"utm_code": 32631,
"state_machine": [
{
"action": "filter",
"method": "radius_o3d",
"save_output": true,
"params": {
"radius": 4,
"nb_points": 25
}
},
{
"action": "denoise_pcd",
"method": "bilateral",
"save_output": true,
"params": {
"num_iterations": 10,
"neighbour_kdtree_dict": {
"knn": 10,
"num_workers_kdtree": 6
},
"neighbour_normals_dict": {
"knn_normals": 10,
"use_open3d": true
},
"sigma_d": 1.5,
"sigma_n": 1,
"num_chunks": 2
}
},
{
"action": "mesh",
"method": "delaunay_2d",
"save_output": true,
"params": {
"method": "scipy"
}
},
{
"action": "simplify_mesh",
"method": "garland-heckbert",
"save_output": true,
"params": {
"reduction_ratio_of_triangles": 0.75
}
},
{
"action": "texture",
"method": "texturing",
"params": {}
}
]
}