Skip to content

Commit faa03bc

Browse files
committed
* Doc minor fixes
* Change default resolutions for examples
1 parent b56a663 commit faa03bc

5 files changed

+13
-9
lines changed

README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
![](./images/Picto+STEREOLABS_Black.jpg)
22

3-
# ZED Open Capture
3+
# ZED Open Capture API
44

55
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.
66

77
**Note:** The provided data are not calibrated, images are not rectified in a stereoscopic way, IMU data may drift or be misaligned.
88
Calibration data can be accessed using the [ZED SDK](https://www.stereolabs.com/developers/release/).
99

10+
[Online documentation](https://stereolabs.github.io/zed-open-capture)
11+
1012
## Installation
1113

1214
### Prerequisites
@@ -116,7 +118,9 @@ From inside the `build` folder:
116118

117119
## Documentation
118120

119-
HTML Documentation can be locally generated using Doxygen
121+
Full online documentation: https://stereolabs.github.io/zed-open-capture
122+
123+
Documentation can be locally generated in HTML format using Doxygen:
120124

121125
$ sudo apt-get install -y doxygen # if not previously installed
122126
$ cd doc

doc/api_doc/add-on.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
/*! \mainpage ZED Open Capture
2+
/*! \mainpage ZED Open Capture API
33

44
![](img/ZED-2-front.jpg)
55

examples/zed_oc_control_example.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ int main(int argc, char *argv[])
7373

7474
// ----> 1) Set Video parameters
7575
sl_oc::VideoParams params;
76-
params.res = sl_oc::RESOLUTION::HD720;
77-
params.fps = sl_oc::FPS::FPS_60;
76+
params.res = sl_oc::RESOLUTION::HD2K;
77+
params.fps = sl_oc::FPS::FPS_15;
7878
params.verbose = verbose;
7979
// <---- Set Video parameters
8080

examples/zed_oc_rectify_example.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ int main(int argc, char** argv) {
4242

4343
// ----> 1) Set Video parameters
4444
sl_oc::VideoParams params;
45-
params.res = sl_oc::RESOLUTION::HD720;
46-
params.fps = sl_oc::FPS::FPS_60;
45+
params.res = sl_oc::RESOLUTION::HD2K;
46+
params.fps = sl_oc::FPS::FPS_15;
4747
params.verbose = verbose;
4848
// <---- Set Video parameters
4949

examples/zed_oc_sync_example.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ int main(int argc, char *argv[])
5656

5757
// ----> 1) Set the video parameters
5858
sl_oc::VideoParams params;
59-
params.res = sl_oc::RESOLUTION::HD720;
60-
params.fps = sl_oc::FPS::FPS_60;
59+
params.res = sl_oc::RESOLUTION::HD2K;
60+
params.fps = sl_oc::FPS::FPS_15;
6161
params.verbose = verbose;
6262
// <---- Video parameters
6363

0 commit comments

Comments
 (0)