You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
9
11
@@ -12,27 +14,35 @@ Quick Demo: Run with the **same parameter setting** without tuning for different
🚀 2024-11-20: Update dufomap Python API from [SeFlow](https://github.com/KTH-RPL/SeFlow) try it now! `pip install dufomap` and run `python main.py --data_dir data/00` to get the cleaned map directly. Support all >=Python 3.8 in Windows and Linux. Please extract your own data to unified format first follow [this wiki page](https://kth-rpl.github.io/DynamicMap_Benchmark/data/creation/#custom-data).
17
+
🚀 2024-11-20: Update dufomap Python API from [SeFlow](https://github.com/KTH-RPL/SeFlow) try it now! `pip install dufomap` and run `python main.py --data_dir data/00` to get the cleaned map directly. Support all >=Python 3.8 in Windows and Linux. Please extract your own data to **the unified format** first follow [this wiki page](https://kth-rpl.github.io/DynamicMap_Benchmark/data/creation/#custom-data).
16
18
17
-
## 0. Setup
18
19
20
+
Clone quickly and init submodules:
19
21
```bash
20
-
sudo apt update && sudo apt install gcc-10 g++-10
21
-
sudo apt install libtbb-dev liblz4-dev
22
+
git clone --recursive -b main --single-branch https://github.com/KTH-RPL/dufomap.git
23
+
24
+
25
+
# The easiest way to run DUFOMap:
26
+
pip install dufomap
27
+
python main.py --data_dir data/00
22
28
```
23
29
24
30
25
-
Clone quickly and init submodules:
31
+
### Dependencies
32
+
33
+
If you want to compile the C++ source version, please install the following dependencies:
34
+
26
35
```bash
27
-
git clone --recursive -b main --single-branch https://github.com/KTH-RPL/dufomap.git
36
+
sudo apt update && sudo apt install gcc-10 g++-10
37
+
sudo apt install libtbb-dev liblz4-dev
28
38
```
29
39
30
40
Or you can directly build docker image through our [Dockerfile](Dockerfile):
0 commit comments