Update guide docs

This commit is contained in:
John Zhao 2018-04-15 22:16:22 +08:00
parent ad11dfe6e1
commit c8f7900e95
4 changed files with 73 additions and 0 deletions

View File

@ -794,8 +794,10 @@ INPUT = mainpage.md \
guides.md \
guide_build_linux.md \
guide_samples.md \
guide_tools.md \
guide_log.md \
guide_opencv.md \
guide_ros.md \
specs_data.md \
spec_hardware_info.md \
spec_image_params.md \

30
doc/zh-Hans/guide_ros.md Normal file
View File

@ -0,0 +1,30 @@
# ROS 封装 {#guide_ros}
ROS 封装实现在 ``<sdk>/wrappers/ros`` 目录。
## 依赖
* [ROS](http://www.ros.org/) 环境。
## 编译
```bash
cd <sdk>
make ros
```
## 运行
运行发布节点,
```bash
source wrappers/ros/devel/setup.bash
roslaunch mynt_eye_ros_wrapper mynteye.launch
```
运行发布节点,同时打开 RViz 预览图像,
```bash
source wrappers/ros/devel/setup.bash
roslaunch mynt_eye_ros_wrapper display.launch
```

View File

@ -0,0 +1,39 @@
# 工具 {#guide_tools}
样例在 `<sdk>/tools` 目录,其提供一些有用的工具。
## 准备
```bash
make tools
cd tools/
sudo pip install -r requirements.txt
```
## 录制数据集
```bash
./tools/_output/bin/dataset/record
```
默认录制进 `dataset` 目录,加参数可指定该目录。
## 分析数据集
分析 IMU 数据,
```bash
python tools/analytics/imu_analytics.py -i dataset -c tools/config/mynteye/mynteye_config.yaml \
-al=-1.2,1.2 -gl= -gdu=d -gsu=d -kl=
```
分析图像 & IMU 时间戳,
```bash
python tools/analytics/stamp_analytics.py -i dataset -c tools/config/mynteye/mynteye_config.yaml
```
## 结语
如果用 ROS ,分析脚本也支持 ROS Bag 格式。关于 ROS 的录制和分析,请见 `tools/README.md`

View File

@ -2,5 +2,7 @@
* @subpage guide_build_linux
* @subpage guide_samples
* @subpage guide_tools
* @subpage guide_log
* @subpage guide_opencv
* @subpage guide_ros