Skip to content

Commit f7abec5

Browse files
committed
fix(config): config file exactly we run in paper.
1 parent 98f34ff commit f7abec5

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@
55
[![arXiv](https://img.shields.io/badge/arXiv-2403.01449-b31b1b?logo=arxiv&logoColor=white)](https://arxiv.org/abs/2403.01449)
66
[![page](https://img.shields.io/badge/Web-Page-green)](https://KTH-RPL.github.io/dufomap) [video coming soon] [poster coming soon]. Accepted by RA-L'24.
77

8-
Quick Demo: Run with the **same parameter setting** without tuning for different sensor (e.g 16, 32, 64, and 128 channel LiDAR and Livox-series mid360), the following shows the data collected from: Leica-RTC360, 128-channel LiDAR and Livox-mid360 effect.
8+
Quick Demo: Run with the **same parameter setting** without tuning for different sensor (e.g 16, 32, 64, and 128 channel LiDAR and Livox-series mid360), the following shows the data collected from:
99

10-
| ![](assets/imgs/dufomap_leica.gif) | ![](assets/imgs/doals_train_128.gif) | ![](assets/imgs/two_floor_mid360.gif) |
10+
| Leica-RTC360 | 128-channel LiDAR | Livox-mid360 |
1111
| ------- | ------- | ------- |
12+
| ![](assets/imgs/dufomap_leica.gif) | ![](assets/imgs/doals_train_128.gif) | ![](assets/imgs/two_floor_mid360.gif) |
13+
<!-- | ------- | ------- | ------- | -->
1214

1315
## 0. Setup
1416

assets/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ inflate_hits_dist = 0.2 # d_s in the paper, default 0.2
1010

1111
[integration]
1212
inflate_unknown_compensation = true
13+
ray_passthrough_hits = false
1314
down_sampling_method = "center" # ["none", "center", "centroid", "uniform"]
1415
max_range = -1 # Maximum range to integrate
1516
only_valid = false # Only do ray casting for points within 'max_range'
16-
discretize = true
1717
hit_depth = 0 # Level of the octree to integrate hits
1818
miss_depth = 0 # Level of the octree to integrate misses
1919
ray_casting_depth = 0 # Level of the octree to perform ray casting

dufomap.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ int main(int argc, char* argv[])
356356
}
357357
}
358358
std::ranges::sort(pcds);
359-
359+
// std::cout << config << std::endl;
360360
pcds.resize(std::min(pcds.size(), config.dataset.num));
361361

362362
ufo::Timing timing;

0 commit comments

Comments
 (0)