Skip to content

Commit 8b60f36

Browse files
authored
octomap: switch config format from YAML to TOML and update script paths (#27)
The script previously referenced .yaml configs, which mismatched octomap’s TOML parser (toml++), causing a runtime parse error (expected '=', saw ':'). Align with octomap upstream using TOML as the official config format.
1 parent deec7cb commit 8b60f36

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/sh/0_run_methods_all.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ do
1414
data_path=${data_folder}/data/${seq_num}
1515

1616
echo "Processing sequence ${seq_num} ... in octomap [origin, w G, w GF]"
17-
${benchmarks_path}/octomap/build/octomap_run ${data_path} ${benchmarks_path}/octomap/assets/config_g.yaml -1
18-
${benchmarks_path}/octomap/build/octomap_run ${data_path} ${benchmarks_path}/octomap/assets/config_fg.yaml -1
19-
${benchmarks_path}/octomap/build/octomap_run ${data_path} ${benchmarks_path}/octomap/assets/config.yaml -1
17+
${benchmarks_path}/octomap/build/octomap_run ${data_path} ${benchmarks_path}/octomap/assets/config_g.toml -1
18+
${benchmarks_path}/octomap/build/octomap_run ${data_path} ${benchmarks_path}/octomap/assets/config_fg.toml -1
19+
${benchmarks_path}/octomap/build/octomap_run ${data_path} ${benchmarks_path}/octomap/assets/config.toml -1
2020

2121
echo "Processing sequence ${seq_num} ... in remover and erasor"
2222
if [ "${seq_num}" \> "av2" ]; then
@@ -26,4 +26,4 @@ do
2626
${benchmarks_path}/removert/build/removert_run ${data_path} ${benchmarks_path}/removert/config/params_kitti.yaml -1
2727
${benchmarks_path}/ERASOR/build/erasor_run ${data_path} ${benchmarks_path}/ERASOR/config/seq_${seq_num}.yaml -1
2828
fi
29-
done
29+
done

0 commit comments

Comments
 (0)