forked from Project-PLATEAU/Auto-Create-bldg-lod2-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
45 lines (45 loc) · 1.4 KB
/
docker-compose.yml
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
version : '3.8'
services:
3d-model:
image: bldg-lod2-tool-3d-model
build:
context: .
tty: true
stdin_open: true
command: /bin/bash -c "sleep 1000000"
volumes:
- ~/AutoCreateLod2_tutorial/LOD2Creator_tutorial/dataset:/app/input
- ~/AutoCreateLod2_tutorial/LOD2Creator_tutorial/dataset/output:/app/output
environment:
PARAM_JSON: '{
"TextureFolderPath": "/app/input/RawImage",
"ExternalCalibElementPath": "/app/input/ExCalib/ExCalib.txt",
"CameraInfoPath": "/app/input/CamInfo/CamInfo.txt",
"DsmFolderPath": "/app/input/DSM",
"CityGMLFolderPath": "/app/input/CityGML",
"LasCoordinateSystem": 9,
"LasSwapXY": false,
"RotateMatrixMode": 0,
"OutputFolderPath": "/app/output",
"OutputOBJ": true,
"OutputTexture": true,
"OutputLogFolderPath": "/app/output",
"DebugLogOutput": true,
"PhaseConsistency": {
"DeleteErrorObject": true,
"NonPlaneThickness": 0.05,
"NonPlaneAngle": 15
},
"DebugMode": false,
"TargetCoordAreas": null,
"TargetBuildingIds": null,
"TextureOutputWidthMax": 2048,
"TextureOutputHeightMax": 2048
}'
NVIDIA_VISIBLE_DEVICES: all
NVIDIA_DRIVER_CAPABILITIES: all
deploy:
resources:
reservations:
devices:
- capabilities: [gpu]