You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Improved documentation
* Add missing README image
* Add missing doc files
* Doc refactoring
* Add `video` namespace
* Add `sensors` namespace
* Add `sensors::data` namespace
*Sensors Data names refactoring
* Add doxyfile
* Update doxygen.yml
* New "sensors::usb" namespace
* Update changelog.md
* Update defines.hpp
* Update changelog.md
* Fix downloading calibration file
* Fix calibration file downloading on Ubuntu 20.04
* Minor fixes
* Compilation flag to reduce final size of the library
* Compile flag changed to O2 to improve performances
* Changed returned data type from pointers to references
* Minor fixes to video examples
* Improved sensors data validity info
The ZED Open Capture library allows the low level control of ZED, ZED Mini and ZED 2 camera. The library provides methods to access raw video frames, to control the video parameters and to acquire raw data from the internal sensors (only ZED Mini and ZED2). A synchronization mechanism is provided to get the correct sensor data associated to each video frame.
6
-
7
-
**Note:** The provided data are not calibrated, images are not rectified in a stereoscopic way, IMU data may drift or be misaligned.
8
-
Calibration data can be accessed using the [ZED SDK](https://www.stereolabs.com/developers/release/).
The ZED Open Capture is a multi-platform, open-source C++ library for low-level camera and sensor capture for the ZED stereo camera family. It doesn't require CUDA and therefore can be used on many desktop and embedded platforms.
46
+
47
+
The open-source library provides methods to access raw video frames, calibration data, camera controls and raw data from the camera sensors (on ZED 2 and ZED Mini). A synchronization mechanism is provided to get the correct sensor data associated to a video frame.
48
+
49
+
**Note:** While in the ZED SDK all output data is calibrated and compensated, here the extracted raw data is not corrected by the camera and sensor calibration parameters. You can retrieve camera and sensor calibration data using the [ZED SDK](https://www.stereolabs.com/docs/video/camera-calibration/) to correct your camera data.
50
+
51
+
## Build
13
52
14
53
### Prerequisites
15
54
16
-
* A Stereolabs camera: [ZED](https://www.stereolabs.com/zed/), [ZED Mini](https://www.stereolabs.com/zed-mini/), [ZED2](https://www.stereolabs.com/zed-2/)
17
-
* Linux OS [Tested on Ubuntu 16.04, 18.04 and 20.04]
18
-
* GCC compiler [at least v7.5]
19
-
* CMake build system [at least v3.1]
20
-
* HIDAPI and LIBUSB Libraries for USB communication
21
-
* OpenCV [at least v3.4. Required only by examples]
Include the `SensorCapture` header, declare a `SensorCapture` object, get a list of available devices, initialize the first one and finally retrieve sensors data:
After compiling it is possible to install the library and the examples.
114
-
From inside the `build` folder:
152
+
After installing the library and examples, you will have the following sample applications in your `build` directory:
153
+
154
+
*[zed_open_capture_video_example](https://github.com/stereolabs/zed-open-capture/blob/fix_doc/examples/zed_oc_video_example.cpp): This application captures and displays video frames from the camera.
155
+
*[zed_open_capture_control_example](https://github.com/stereolabs/zed-open-capture/blob/fix_doc/examples/zed_oc_control_example.cpp): This application captures and displays video frames from the camera and provides runtime control of camera parameters using keyboard shortcuts.
156
+
*[zed_open_capture_rectify_example](https://github.com/stereolabs/zed-open-capture/blob/fix_doc/examples/zed_oc_rectify_example.cpp): This application downloads factory stereo calibration parameters from Stereolabs server, performs stereo image rectification and displays original and rectified frames.
157
+
*[zed_open_capture_sensors_example](https://github.com/stereolabs/zed-open-capture/blob/fix_doc/examples/zed_oc_sensors_example.cpp): This application creates a `SensorCapture` object and displays on the command console the values of camera sensors acquired at full rate.
158
+
*[zed_open_capture_sync_example](https://github.com/stereolabs/zed-open-capture/blob/fix_doc/examples/zed_oc_sync_example.cpp): This application creates a `VideoCapture` and a `SensorCapture` object, initialize the camera/sensors synchronization and displays on screen the video stream with the synchronized IMU data.
159
+
160
+
To run the examples, open a terminal console and enter the following commands:
161
+
162
+
```
163
+
$ zed_open_capture_video_example
164
+
$ zed_open_capture_control_example
165
+
$ zed_open_capture_rectify_example
166
+
$ zed_open_capture_sensors_example
167
+
$ zed_open_capture_sync_example
168
+
```
169
+
170
+
**Note:** OpenCV is used in the examples for controls and display.
115
171
116
-
$ sudo make install
117
-
$ sudo ldconfig
118
172
119
173
## Documentation
120
174
121
-
Full online documentation: https://stereolabs.github.io/zed-open-capture
175
+
The API is documented in the Include.h files. It is also generated as a Doxygen for simpler navigation: https://stereolabs.github.io/zed-open-capture
122
176
123
-
Documentation can be locally generated in HTML format using Doxygen:
177
+
You can also generate the documentation locally in HTML format (with Doxygen) using the commands below. Access the docs by opening `doc/html/index.html` in your web browser.
124
178
179
+
125
180
$ sudo apt-get install -y doxygen # if not previously installed
126
181
$ cd doc
127
182
$ ./generate_doc.sh
128
-
129
-
The documentation will be available opening the file `doc/html/index.html` with a standard web browser.
183
+
184
+
185
+
186
+
## Coordinates system
187
+
188
+
The coordinate system is only used for sensors data. The given IMU and Magnetometer data are expressed in the RAW coordinate system as show below
0 commit comments