This repository contains the documentation for OrbbecSDK V2 ROS1 Wrapper in both English and Chinese.
- English Version:
docs/en/- Full English documentation - 中文版本:
docs/zh/- 完整中文文档 - Published Versions:
docs/version-manifest.json- Version list for GitHub Pages
cd docs/en
pip install -r requirements.txt
make clean && make htmlcd docs/zh
pip install -r requirements.txt
make clean && make htmlpip install -r docs/en/requirements.txt -r docs/zh/requirements.txt jieba
python docs/build_versions.pyAfter building, open the following files in your browser:
- English:
docs/en/_build/html/index.html - Chinese:
docs/zh/_build/html/index.html - Full GitHub Pages site:
site/index.html
docs/
├── en/ # English documentation
│ ├── source/ # Source files
│ ├── conf.py # Sphinx configuration
│ ├── requirements.txt
│ └── README.md
└── zh/ # Chinese documentation
├── source/ # Source files
├── conf.py # Sphinx configuration
├── requirements.txt
└── README.md
The documentation covers:
- Overview - Introduction and device compatibility
- Installation - Build and installation instructions
- Quick Starts - Getting started guides
- Application Guide - Detailed usage instructions
- Advanced Guide - Advanced configurations and features
- Benchmark - Performance benchmarks
- Developer Guide - Development guidelines
- FAQ - Frequently asked questions
When updating documentation:
- Make changes to the English version first (
docs/en/) - Translate and adapt for the Chinese version (
docs/zh/) - Ensure both versions build successfully
- Test all links and references
- Python 3.6+
- Sphinx
- Required extensions (see requirements.txt in each language folder)
For questions about the documentation or the OrbbecSDK ROS1 Wrapper, please visit:
- GitHub: https://github.com/orbbec/OrbbecSDK_ROS1
- Gitee (中国用户): https://gitee.com/orbbecdeveloper/OrbbecSDK_ROS1