Skip to content

Commit 1efbd5a

Browse files
authored
Update README.md
1 parent 09cc288 commit 1efbd5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,20 +53,20 @@ More recent version would be OK.
5353
* Build and Compile: `cd build && cmake .. -Wno-dev && make -j` <details>
5454
<summary>TroubleShooting</summary>
5555
If you have installed g2o through ROS (if you have ROS packages like `base_local_planner`/`teb_local_planner`/`mpc_local_planner`), please exclude it from LD_LIBRARY_PATH environment variable, or `source config/settings.sh`. </details>
56-
56+
* Argparse Support (Acknowledge [argparse](https://github.com/p-ranav/argparse/tree/master) ) : use `-h` or `--help` for each executable cpp file to view help.
5757
## Step 1: Estimate Camera and Lidar Poses
5858
### orb_slam
5959
An example command for KITTI 00 Sequence:
6060
```
61-
./orb_store ../data/00/ ../config/orb_ori/KITTI00-02.yaml ../data/Vocabulary/ORBvoc.txt ../KITTI-00/slam_res/Twc.txt ../KITTI-00/KeyFrames/ ../KITTI-00/Map.yml 1.5
61+
./orb_store ../data/00/ ../config/orb_ori/KITTI00-02.yaml ../data/Vocabulary/ORBvoc.txt ../KITTI-00/slam_res/Twc.txt ../KITTI-00/KeyFrames/ ../KITTI-00/Map.yml --slow_rate 1.5
6262
```
6363
* `../data/00/`: sequence directory of KITTI Sequence 00
6464
* `../config/orb_ori/KITTI00-02.yaml`: yaml file for ORB_SLAM
6565
* `../data/Vocabulary/ORBvoc.txt`: DBoW2 Vocabulary txt file for ORB_SLAM
6666
* `../KITTI-00/slam_res/Twc.txt`: KeyFrame poses saved by ORB_SLAM, in KITTI format
6767
* `../KITTI-00/KeyFrames/`: KeyFrame information saved by ORB_SLAM, can be restored during runtime
6868
* `../KITTI-00/Map.yml`: Map saved by ORB_SLAM, can be restored during runtime
69-
* `1.5`: Slow Rate of ORB_SLAM2. Duration between Frames: computation + wait_time >= 1.5 * real timestamp
69+
* `--slow_rate 1.5 [Optional]`: Slow Rate of ORB_SLAM2. Duration between Frames: computation + wait_time >= 1.5 * real timestamp. Smaller `slow_rate` is needed for more powerful CPU.
7070

7171
### F-LOAM
7272
an example command for KITTI 00 Sequence:

0 commit comments

Comments
 (0)