File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ export LC_ALL=C.UTF-8
3
3
export LANG=C.UTF-8
4
4
export LD_LIBRARY_PATH=$OPENPOSE/src/openpose/:$LD_LIBRARY_PATH
5
5
export MODEL_FOLDER=$OPENPOSE_MODELS
6
+ export SETUP_WORK=/opt/skelshop/work/
Original file line number Diff line number Diff line change @@ -9,10 +9,11 @@ def cnf(name, val):
9
9
10
10
# Intermediate dirs
11
11
cnf ("WORK" , "work" )
12
+ SETUP_WORK = os .environ .get ("SETUP_WORK" , WORK )
12
13
cnf ("VIDEO_BASE" , "." )
13
14
cnf ("DUMP_BASE" , "." )
14
- cnf ("GCN_WEIGHTS" , pjoin (WORK , "gcn_weights" ))
15
- cnf ("GCN_CONFIG" , pjoin (WORK , "gcn_config.yaml" ))
15
+ cnf ("GCN_WEIGHTS" , pjoin (SETUP_WORK , "gcn_weights" ))
16
+ cnf ("GCN_CONFIG" , pjoin (SETUP_WORK , "gcn_config.yaml" ))
16
17
cnf ("FFPROBE_BIN" , which ("ffprobe" ))
17
18
18
19
## Configs
You can’t perform that action at this time.
0 commit comments