Skip to content

Commit 7d581a7

Browse files
authored
Fix doc and code improvements (#3)
* 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
1 parent 382b3b8 commit 7d581a7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+734
-3197
lines changed

CMakeLists.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@ set(CMAKE_CXX_FLAGS "${${PROJECT_NAME}_CXX_FLAGS} -Wall -pedantic -g")
1313

1414
if(NOT CMAKE_BUILD_TYPE)
1515
SET(CMAKE_BUILD_TYPE Release)
16-
set(CMAKE_CXX_FLAGS_RELEASE "-O2")
16+
set(CMAKE_CXX_FLAGS_RELEASE "-O2 -s -flto") # File size optimization
17+
message("* Release mode")
1718
endif()
1819

1920
if(CMAKE_BUILD_TYPE MATCHES Debug)
2021
message("* Debug mode")
2122
SET(CMAKE_DEBUG_POSTFIX "d")
2223
else()
24+
set(CMAKE_CXX_FLAGS_RELEASE "-O2 -s -flto") # File size optimization
2325
message("* Release mode")
2426
endif()
2527

README.md

+134-63
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,63 @@
1-
![](./images/Picto+STEREOLABS_Black.jpg)
2-
3-
# ZED Open Capture API
4-
5-
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/).
9-
10-
[Online documentation](https://stereolabs.github.io/zed-open-capture)
11-
12-
## Installation
1+
<h1 align="center">
2+
Open Capture Camera API
3+
</h1>
4+
5+
<h4 align="center">A platform-agnostic camera and sensor capture API for the ZED stereo camera family</h4>
6+
7+
<p align="center">
8+
<a href="#key-features">Key Features</a> •
9+
<a href="#build">Build</a> •
10+
<a href="#run">Run</a> •
11+
<a href="#documentation">Documentation</a> •
12+
<a href="#running-the-examples">Examples</a> •
13+
<a href="#related">Related</a> •
14+
<a href="#license">License</a>
15+
</p>
16+
<br>
17+
18+
19+
## Key Features
20+
* Open source C++ capture library compatible with C++11 standard
21+
* Video Capture
22+
- YUV 4:2:2 data format
23+
- Camera controls
24+
* Sensor Data Capture
25+
- 6-DOF IMU (3-DOF accelerometer + 3-DOF gyroscope)
26+
- 3-DOF Magnetometer
27+
- Barometer
28+
- Sensors temperature
29+
* Sensors/video Synchronization
30+
* Portable
31+
- Tested on Linux
32+
- Tested on x64, ARM
33+
* Small Size
34+
- ~100KB library size
35+
- libusb, hidapi dependencies
36+
* Complete set of examples
37+
- Video capture
38+
- Camera control
39+
- Stereo rectification
40+
- IMU, magnetometer and barometer data capture
41+
- Video and sensors synchronization
42+
43+
## Description
44+
45+
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
1352

1453
### Prerequisites
1554

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]
22-
* git [if installing from source]
55+
* Stereo camera: [ZED 2](https://www.stereolabs.com/zed-2/), [ZED](https://www.stereolabs.com/zed/), [ZED Mini](https://www.stereolabs.com/zed-mini/)
56+
* Linux OS
57+
* GCC (v7.5+)
58+
* CMake (v3.1+)
2359

24-
#### Install prerequisites
60+
### Install prerequisites
2561

2662
* Install GCC compiler and build tools
2763

@@ -35,95 +71,130 @@ Calibration data can be accessed using the [ZED SDK](https://www.stereolabs.com/
3571

3672
`$ sudo apt install libusb-1.0-0-dev libhidapi-libusb0 libhidapi-dev`
3773

38-
* Install OpenCV to compile the examples
74+
* Install OpenCV to build the examples (optional)
3975

4076
`$ sudo apt install opencv-dev`
4177

42-
### Install the udev rule
43-
To be able to access the USB you must install the udev rule contained in the `udev` folder:
78+
### Add udev rule
79+
Stereo cameras such as ZED 2 and ZED Mini have built-in sensors (e.g. IMU) that are identified as USB HID devices.
80+
To be able to access the USB HID device, you must add a udev rule contained in the `udev` folder:
4481

4582
$ cd udev
4683
$ bash install_udev_rule.sh
4784
$ cd ..
48-
$ udevadm trigger
4985

5086
### Clone the repository
51-
87+
5288
$ git clone https://github.com/stereolabs/zed-open-capture.git
5389
$ cd zed-open-capture
5490

55-
### Compile
56-
57-
#### Option 1
91+
### Build
5892

59-
Compile the library and the examples
93+
#### Build library and examples
6094

6195
$ mkdir build
6296
$ cd build
6397
$ cmake ..
6498
$ make -j$(nproc)
6599

66-
#### Option 2
67-
68-
Compile only the library
100+
#### Build only the library
69101

70102
$ mkdir build
71103
$ cd build
72-
$ cmake .. -DBUILD_EXAMPLES=OFF
104+
$ cmake .. -DBUILD_EXAMPLES=OFF
73105
$ make -j$(nproc)
74106

75-
#### Option 3
76-
77-
Compile only the video library with the video example
107+
#### Build only the video capture library
78108

79109
$ mkdir build
80110
$ cd build
81-
$ cmake .. -DBUILD_SENSORS=OFF
111+
$ cmake .. -DBUILD_SENSORS=OFF -DBUILD_EXAMPLES=OFF
82112
$ make -j$(nproc)
83113

84-
#### Option 4
85-
86-
Compile only the video library
114+
#### Build only the sensor capture library
87115

88116
$ mkdir build
89117
$ cd build
90-
$ cmake .. -DBUILD_SENSORS=OFF -DBUILD_EXAMPLES=OFF
118+
$ cmake .. -DBUILD_VIDEO=OFF -DBUILD_EXAMPLES=OFF
91119
$ make -j$(nproc)
92120

93-
#### Option 5
121+
## Run
94122

95-
Compile only the sensors library with the sensors example
96-
97-
$ mkdir build
98-
$ cd build
99-
$ cmake .. -DBUILD_VIDEO=OFF
100-
$ make -j$(nproc)
123+
To install the library, go to the `build` folder and launch the following commands:
124+
125+
$ sudo make install
126+
$ sudo ldconfig
101127

102-
#### Option 6
128+
### Get video data
103129

104-
Compile only the sensors library
130+
Include the `videocapture.hpp` header, declare a `VideoCapture` object and retrieve a video frame (in YUV 4:2:2 format) with `getLastFrame()`:
131+
132+
#include "videocapture.hpp"
133+
sl_oc::video::VideoCapture cap;
134+
cap.initializeVideo();
135+
const sl_oc::video::Frame frame = cap.getLastFrame();
105136

106-
$ mkdir build
107-
$ cd build
108-
$ cmake .. -DBUILD_VIDEO=OFF -DBUILD_EXAMPLES=OFF
109-
$ make -j$(nproc)
137+
### Get sensors data
138+
139+
Include the `SensorCapture` header, declare a `SensorCapture` object, get a list of available devices, initialize the first one and finally retrieve sensors data:
140+
141+
#include "sensorcapture.hpp"
142+
sl_oc::sensors::SensorCapture sens;
143+
std::vector<int> devs = sens.getDeviceList();
144+
sens.initializeSensors( devs[0] );
145+
const sl_oc::sensors::data::Imu imuData = sens.getLastIMUData(5000);
146+
const sl_oc::sensors::data::Magnetometer magData = sens.getLastMagnetometerData(100);
147+
const sl_oc::sensors::data::Environment envData = sens.getLastEnvironmentData(100);
148+
const sl_oc::sensors::data::Temperature tempData = sens.getLastCameraTemperatureData(100);
110149

111-
### Install
150+
## Running the examples
112151

113-
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.
115171

116-
$ sudo make install
117-
$ sudo ldconfig
118172

119173
## Documentation
120174

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
122176

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.
124178

179+
125180
$ sudo apt-get install -y doxygen # if not previously installed
126181
$ cd doc
127182
$ ./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
189+
190+
![](./images/imu_axis.jpg)
191+
192+
## Related
193+
194+
- [Stereolabs](https://www.stereolabs.com)
195+
- [ZED 2 multi-sensor camera](https://www.stereolabs.com/zed-2/)
196+
- [ZED SDK](https://www.stereolabs.com/developers/)
197+
198+
## License
199+
200+
This library is licensed under the MIT License.

changelog.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
# Changelog
22

3-
v0.1.1 - 2012 06 10
3+
v0.2 - 2012 06 10
44
-------------------
5+
* Fix issue downloading camera settings for the rectification example
56
* Documentation refactoring
67
* New "sl_oc::video" namespace
78
* New "sl_oc::sensors" namespace
89
* New "sl_oc::sensors::data" namespace
910
* New "sl_oc::sensors::usb" namespace
11+
* Sensors data and image data are now returned as reference instead of pointer
12+
* Improved sensors data validity field
1013

1114
v0.1 - 2012 06 04
1215
-----------------

doc/api_doc/Documentation_C++.html

-6
This file was deleted.

0 commit comments

Comments
 (0)