Skip to content

Commit 9e239dd

Browse files
committed
docs(video): update dufomap video presentation.
* update github action. * todo: setup FAQ maybe?
1 parent a716b05 commit 9e239dd

File tree

2 files changed

+48
-8
lines changed

2 files changed

+48
-8
lines changed

.github/workflows/issue_stale.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Close inactive issues
2+
on:
3+
schedule:
4+
- cron: "35 11 * * 5"
5+
6+
env:
7+
DAYS_BEFORE_ISSUE_STALE: 30
8+
DAYS_BEFORE_ISSUE_CLOSE: 14
9+
10+
jobs:
11+
close-issues:
12+
runs-on: ubuntu-latest
13+
permissions:
14+
issues: write
15+
pull-requests: write
16+
steps:
17+
- uses: actions/stale@v5
18+
with:
19+
days-before-issue-stale: ${{ env.DAYS_BEFORE_ISSUE_STALE }}
20+
days-before-issue-close: ${{ env.DAYS_BEFORE_ISSUE_CLOSE }}
21+
stale-issue-label: "stale"
22+
stale-issue-message: |
23+
This issue is stale because it has been open for ${{ env.DAYS_BEFORE_ISSUE_STALE }} days with no activity.
24+
It will be closed if no further activity occurs. Let us know if you still need help!
25+
close-issue-message: |
26+
This issue is being closed because it has been stale for ${{ env.DAYS_BEFORE_ISSUE_CLOSE }} days with no activity.
27+
If you still need help, please feel free to leave comments.
28+
days-before-pr-stale: -1
29+
days-before-pr-close: -1
30+
repo-token: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
</p>
44

55
[![arXiv](https://img.shields.io/badge/arXiv-2403.01449-b31b1b?logo=arxiv&logoColor=white)](https://arxiv.org/abs/2403.01449)
6-
[![page](https://img.shields.io/badge/Project-Page-green)](https://KTH-RPL.github.io/dufomap) [![poster](https://img.shields.io/badge/RAL2024|Poster-6495ed?style=flat&logo=Shotcut&logoColor=wihte)](https://mit-spark.github.io/Longterm-Perception-WS/assets/proceedings/DUFOMap/poster.pdf) [video coming soon]
6+
[![page](https://img.shields.io/badge/Project-Page-green)](https://KTH-RPL.github.io/dufomap)
7+
[![poster](https://img.shields.io/badge/RAL2024|Poster-6495ed?style=flat&logo=Shotcut&logoColor=wihte)](https://mit-spark.github.io/Longterm-Perception-WS/assets/proceedings/DUFOMap/poster.pdf)
8+
[![video](https://img.shields.io/badge/video-YouTube-FF0000?logo=youtube&logoColor=white)](https://youtu.be/isDnAVoVD5M)
79

810
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:
911

@@ -12,27 +14,35 @@ Quick Demo: Run with the **same parameter setting** without tuning for different
1214
| ![](assets/imgs/dufomap_leica.gif) | ![](assets/imgs/doals_train_128.gif) | ![](assets/imgs/two_floor_mid360.gif) |
1315
<!-- | ------- | ------- | ------- | -->
1416

15-
🚀 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).
1618

17-
## 0. Setup
1819

20+
Clone quickly and init submodules:
1921
```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
2228
```
2329

2430

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+
2635
```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
2838
```
2939

3040
Or you can directly build docker image through our [Dockerfile](Dockerfile):
3141
```bash
3242
docker build -t dufomap .
3343
```
3444

35-
## 1. Build & Run
45+
### 1. Build & Run
3646

3747
Build:
3848

0 commit comments

Comments
 (0)