新版文档更新
This commit is contained in:
parent
82719ed1f0
commit
fb37635a72
10
docs/api/contents.rst
Normal file
10
docs/api/contents.rst
Normal file
|
@ -0,0 +1,10 @@
|
|||
API DOCS
|
||||
==============
|
||||
|
||||
.. toctree::
|
||||
|
||||
api
|
||||
device
|
||||
enums
|
||||
types
|
||||
utils
|
|
@ -7,84 +7,17 @@ MYNT® EYE S SDK
|
|||
===============
|
||||
|
||||
.. toctree::
|
||||
:caption: Product
|
||||
:maxdepth: 6
|
||||
:titlesonly:
|
||||
:maxdepth: 2
|
||||
|
||||
src/mynteye/product_description
|
||||
src/mynteye/product_surface
|
||||
src/mynteye/pro_intro
|
||||
src/mynteye/support_resolutions
|
||||
src/mynteye/imu_coord
|
||||
|
||||
.. toctree::
|
||||
:caption: SDK
|
||||
:maxdepth: 5
|
||||
|
||||
src/sdk/SDKContents
|
||||
src/sdk/InstallContents
|
||||
src/sdk/ProjectContents
|
||||
src/sdk/LogContents
|
||||
|
||||
.. toctree::
|
||||
:caption: Firmware
|
||||
:maxdepth: 4
|
||||
|
||||
src/firmware/FirmwareContents
|
||||
src/firmware/FirmwareUpdate
|
||||
src/firmware/UpdateLog
|
||||
|
||||
.. toctree::
|
||||
:caption: SDK Sample
|
||||
:maxdepth: 13
|
||||
|
||||
src/data/get_device_info
|
||||
src/data/get_img_params
|
||||
src/data/get_imu_params
|
||||
src/data/get_stereo
|
||||
src/data/get_stereo_rectified
|
||||
src/data/ get_disparity
|
||||
src/data/get_depth
|
||||
src/data/get_points
|
||||
src/data/get_imu
|
||||
src/data/get_imu_correspondence
|
||||
src/data/get_from_callbacks
|
||||
src/data/get_with_plugin
|
||||
|
||||
.. toctree::
|
||||
:caption: SDK Tools
|
||||
:maxdepth: 3
|
||||
|
||||
src/analytics/analytics_dataset
|
||||
src/analytics/analytics_imu
|
||||
src/analytics/analytics_stamp
|
||||
|
||||
.. toctree::
|
||||
:caption: Open Source Support
|
||||
:maxdepth: 7
|
||||
|
||||
src/slam/vins
|
||||
src/slam/vins_fusion
|
||||
src/slam/orb_slam2
|
||||
src/slam/okvis
|
||||
src/slam/viorb
|
||||
src/slam/maplab
|
||||
|
||||
.. toctree::
|
||||
:caption: API DOC
|
||||
:maxdepth: 6
|
||||
|
||||
api/api
|
||||
api/device
|
||||
api/enums
|
||||
api/types
|
||||
api/utils
|
||||
|
||||
.. toctree::
|
||||
:caption: Technical Support
|
||||
:maxdepth: 3
|
||||
|
||||
api/api
|
||||
api/device
|
||||
src/mynteye/contents
|
||||
src/sdk/contents
|
||||
src/firmware/contents
|
||||
src/data/contents
|
||||
src/analytics/contents
|
||||
src/slam/contents
|
||||
api/contents
|
||||
src/support/contents
|
||||
|
||||
..
|
||||
Indices and tables
|
||||
|
|
9
docs/src/analytics/contents.rst
Normal file
9
docs/src/analytics/contents.rst
Normal file
|
@ -0,0 +1,9 @@
|
|||
SDK TOOLS
|
||||
==================
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
||||
analytics_dataset
|
||||
analytics_imu
|
||||
analytics_stamp
|
|
@ -1,6 +1,4 @@
|
|||
.. _data:
|
||||
|
||||
MYNT® EYE Data
|
||||
SDK SAMPLES
|
||||
==============
|
||||
|
||||
.. toctree::
|
||||
|
@ -16,7 +14,4 @@ MYNT® EYE Data
|
|||
get_imu
|
||||
get_imu_correspondence
|
||||
get_from_callbacks
|
||||
get_with_plugin
|
||||
save_params
|
||||
write_img_params
|
||||
write_imu_params
|
||||
get_with_plugin
|
|
@ -1,6 +1,6 @@
|
|||
.. _data_get_depth:
|
||||
|
||||
Get depth image
|
||||
Get Depth Image
|
||||
===============
|
||||
|
||||
Depth images belongs to the upper layer of synthetic data. You need to start the ``EnableStreamData()`` beforehand, to get it through ``GetStreamData()``. The depth image type is CV_16UC1. In addition, it should be check not be empty before use.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _data_get_device_info:
|
||||
|
||||
Get device information
|
||||
Get Device Information
|
||||
======================
|
||||
|
||||
Use ``GetInfo()`` function to get various current information values.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _data_get_disparity:
|
||||
|
||||
Get disparity image
|
||||
Get Disparity Image
|
||||
===================
|
||||
|
||||
Disparity image belongs to the upper layer of synthetic data. You need to start the ``EnableStreamData()`` beforehand, to get it through ``GetStreamData()``. In addition, it should be check not be empty before use.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _data_get_from_callbacks:
|
||||
|
||||
Get data from callbacks
|
||||
Get Data From Callbacks
|
||||
========================
|
||||
|
||||
API offers function ``SetStreamCallback()`` and ``SetMotionCallback()`` to set callbacks for various data.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _data_get_img_params:
|
||||
|
||||
Get image calibration parameters
|
||||
Get Image Calibration Parameters
|
||||
================================
|
||||
|
||||
Use ``GetIntrinsics()`` & ``GetExtrinsics()`` to get image calibration parameters.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _data_get_imu_data:
|
||||
|
||||
Get IMU data
|
||||
Get IMU Data
|
||||
=============
|
||||
|
||||
The API offers ``Start()`` / ``Stop()`` function to start/stop capturing data. You can set the argument to``Source::MOTION_TRACKING`` to capture IMU data only, or set it to ``Source::ALL`` to capture both image and IMU data.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _data_get_imu_correspondence:
|
||||
|
||||
Get IMU data with timestamp correspondence
|
||||
Get IMU Data With Timestamp Correspondence
|
||||
===========================================
|
||||
|
||||
If wanna get image with timestamp in the middle of IMU datas, you could call `EnableTimestampCorrespondence()`` to enable this feature.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _data_get_imu_params:
|
||||
|
||||
Get IMU calibration parameters
|
||||
Get IMU Calibration Parameters
|
||||
==============================
|
||||
|
||||
Use ``GetMotionIntrinsics()`` & ``GetMotionExtrinsics()`` to get current IMU calibration parameters.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _data_get_points:
|
||||
|
||||
Get point image
|
||||
Get Point Image
|
||||
================
|
||||
|
||||
Point images belongs to upper layer of synthetic data. To get this kind of data through ``GetStreamData()``, you need to start the ``EnableStreamData()`` beforehand. It should be check not empty before use.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _data_get_stereo:
|
||||
|
||||
Get original binocular image
|
||||
Get Original Binocular Image
|
||||
=============================
|
||||
|
||||
Use ``Start()`` or ``Stop()`` , to start or stop data capturing. If you only need the image data, use ``Source::VIDEO_STREAMING`` .
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _data_get_stereo_rectified:
|
||||
|
||||
Get stereo camera correction image
|
||||
Get Stereo Camera Correction Image
|
||||
==================================
|
||||
|
||||
The ``GetStreamData()`` API provided can only get the raw data of the hardware, for example, the stereo camera raw image.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _data_get_with_plugin:
|
||||
|
||||
Using the plugin to get data
|
||||
Using The Plugin To Get Data
|
||||
============================
|
||||
|
||||
API provides a ``EnablePlugin()`` function to enable plugins under a path.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _data_save_params:
|
||||
|
||||
Save device infomation and parameters
|
||||
Save Device Infomation And Parameters
|
||||
=====================================
|
||||
|
||||
The SDK provides a tool ``save_all_infos`` for save information and parameters. For more information, please read `tools/README.md <https://github.com/slightech/MYNT-EYE-S-SDK/tree/master/tools>`_ .
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _data_write_img_params:
|
||||
|
||||
Write image parameters
|
||||
Write Image Parameters
|
||||
=======================
|
||||
|
||||
The SDK provides a tool ``img_params_writer`` for writing image parameters. For details, read `tools/README.md <https://github.com/slightech/MYNT-EYE-S-SDK/tree/master/tools>`_ .
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _data_write_imu_params:
|
||||
|
||||
Write IMU parameters
|
||||
Write IMU Parameters
|
||||
=====================
|
||||
|
||||
SDK provides the tool ``imu_params_writer`` to write IMU parameters. For deltail, please read `tools/README.md <https://github.com/slightech/MYNT-EYE-S-SDK/tree/master/tools>`_ .
|
||||
|
|
9
docs/src/firmware/contents.rst
Normal file
9
docs/src/firmware/contents.rst
Normal file
|
@ -0,0 +1,9 @@
|
|||
FIRMWARE
|
||||
==================
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
||||
FirmwareContents
|
||||
FirmwareUpdate
|
||||
UpdateLogToDos
|
11
docs/src/mynteye/contents.rst
Normal file
11
docs/src/mynteye/contents.rst
Normal file
|
@ -0,0 +1,11 @@
|
|||
PRODUCT
|
||||
==================
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
||||
product_description
|
||||
product_surface
|
||||
pro_intro
|
||||
support_resolutions
|
||||
imu_coord
|
|
@ -1,6 +1,6 @@
|
|||
.. _sdk:
|
||||
|
||||
Update Log
|
||||
Change Log
|
||||
==================
|
||||
|
||||
.. toctree::
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _sdk:
|
||||
|
||||
Program Reference
|
||||
Project Reference
|
||||
==================
|
||||
|
||||
.. toctree::
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _sdk_changelog:
|
||||
|
||||
Changelog
|
||||
Change Log
|
||||
=========
|
||||
|
||||
2019-04-19(v2.3.7)
|
||||
|
|
10
docs/src/sdk/contents.rst
Normal file
10
docs/src/sdk/contents.rst
Normal file
|
@ -0,0 +1,10 @@
|
|||
SDK
|
||||
==================
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 5
|
||||
|
||||
platform
|
||||
InstallContents
|
||||
ProjectContentsToDos
|
||||
changelog
|
|
@ -1,6 +1,6 @@
|
|||
.. _sdk:
|
||||
.. _sdk_platform:
|
||||
|
||||
Supported platforms
|
||||
Supported Platforms
|
||||
====================
|
||||
|
||||
SDK is built on CMake and can be used cross multiple platforms such as "Linux, Windows, etc. We provides two installation: Download and install, and Compile and install from source code.
|
||||
|
|
11
docs/src/slam/contents.rst
Normal file
11
docs/src/slam/contents.rst
Normal file
|
@ -0,0 +1,11 @@
|
|||
OPEN SOURCE SUPPORT
|
||||
==============
|
||||
|
||||
.. toctree::
|
||||
|
||||
vins
|
||||
vins_fusion
|
||||
orb_slam2
|
||||
okvis
|
||||
viorb
|
||||
maplab
|
|
@ -1,4 +1,4 @@
|
|||
.. _maplab:
|
||||
|
||||
How to use in `Maplab <https://github.com/ethz-asl/maplab>`_ x
|
||||
How To Use In `Maplab <https://github.com/ethz-asl/maplab>`_ x
|
||||
===============================================================
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _okvis:
|
||||
|
||||
How to use in `OKVIS <https://github.com/ethz-asl/okvis>`_
|
||||
How To Use In `OKVIS <https://github.com/ethz-asl/okvis>`_
|
||||
=============================================================
|
||||
|
||||
If you wanna run OKVIS with MYNT EYE camera, please follow the steps:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _orb_slam2:
|
||||
|
||||
How to use in `ORB_SLAM2 <https://github.com/raulmur/ORB_SLAM2>`_
|
||||
How To Use In `ORB_SLAM2 <https://github.com/raulmur/ORB_SLAM2>`_
|
||||
==================================================================
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _vins:
|
||||
|
||||
How to use in `VINS-Mono <https://github.com/HKUST-Aerial-Robotics/VINS-Mono>`_
|
||||
How To Use In `VINS-Mono <https://github.com/HKUST-Aerial-Robotics/VINS-Mono>`_
|
||||
================================================================================
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _vins_fusion:
|
||||
|
||||
How to use in `VINS-Fusion <https://github.com/HKUST-Aerial-Robotics/Vins-Fusion>`_
|
||||
How To Use In `VINS-Fusion <https://github.com/HKUST-Aerial-Robotics/Vins-Fusion>`_
|
||||
====================================================================================
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.. _viorb:
|
||||
|
||||
How to use in `VIORB <https://github.com/jingpang/LearnVIORB>`_
|
||||
How To Use In `VIORB <https://github.com/jingpang/LearnVIORB>`_
|
||||
================================================================
|
||||
|
||||
|
||||
|
|
6
docs/src/support/contact.rst
Normal file
6
docs/src/support/contact.rst
Normal file
|
@ -0,0 +1,6 @@
|
|||
Contact Us
|
||||
==================
|
||||
|
||||
If you continue to encounter problems, please contact customer service.
|
||||
|
||||
http://support.myntai.com/hc/request/new/
|
10
docs/src/support/contents.rst
Normal file
10
docs/src/support/contents.rst
Normal file
|
@ -0,0 +1,10 @@
|
|||
TECHNICAL SUPPORT
|
||||
==================
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
||||
.. toctree::
|
||||
|
||||
problem
|
||||
contact
|
6
docs/src/support/problem.rst
Normal file
6
docs/src/support/problem.rst
Normal file
|
@ -0,0 +1,6 @@
|
|||
FAQ
|
||||
==================
|
||||
|
||||
If you have problems using MYNT EYE, please first check the following docs:
|
||||
|
||||
http://support.myntai.com/hc/
|
Loading…
Reference in New Issue
Block a user