11 lines
293 B
Bash
11 lines
293 B
Bash
#!/usr/bin/env bash
|
|
cd "$(dirname $0)/.."
|
|
source scripts/env.sh
|
|
|
|
$DFL_PYTHON "$DFL_SRC" extract \
|
|
--input-dir "$DFL_WORKSPACE/data_dst" \
|
|
--output-dir "$DFL_WORKSPACE/data_dst/aligned" \
|
|
--multi-gpu \
|
|
--detector manual \
|
|
--debug-dir "$DFL_WORKSPACE/data_dst/aligned_debug"
|