Skip to content

Commit

Permalink
* Doc minor fixes
Browse files Browse the repository at this point in the history
* Change default resolutions for examples
  • Loading branch information
Myzhar committed Jun 5, 2020
1 parent b56a663 commit faa03bc
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
![](./images/Picto+STEREOLABS_Black.jpg)

# ZED Open Capture
# ZED Open Capture API

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.

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

[Online documentation](https://stereolabs.github.io/zed-open-capture)

## Installation

### Prerequisites
Expand Down Expand Up @@ -116,7 +118,9 @@ From inside the `build` folder:

## Documentation

HTML Documentation can be locally generated using Doxygen
Full online documentation: https://stereolabs.github.io/zed-open-capture

Documentation can be locally generated in HTML format using Doxygen:

$ sudo apt-get install -y doxygen # if not previously installed
$ cd doc
Expand Down
2 changes: 1 addition & 1 deletion doc/api_doc/add-on.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

/*! \mainpage ZED Open Capture
/*! \mainpage ZED Open Capture API

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

Expand Down
4 changes: 2 additions & 2 deletions examples/zed_oc_control_example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ int main(int argc, char *argv[])

// ----> 1) Set Video parameters
sl_oc::VideoParams params;
params.res = sl_oc::RESOLUTION::HD720;
params.fps = sl_oc::FPS::FPS_60;
params.res = sl_oc::RESOLUTION::HD2K;
params.fps = sl_oc::FPS::FPS_15;
params.verbose = verbose;
// <---- Set Video parameters

Expand Down
4 changes: 2 additions & 2 deletions examples/zed_oc_rectify_example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ int main(int argc, char** argv) {

// ----> 1) Set Video parameters
sl_oc::VideoParams params;
params.res = sl_oc::RESOLUTION::HD720;
params.fps = sl_oc::FPS::FPS_60;
params.res = sl_oc::RESOLUTION::HD2K;
params.fps = sl_oc::FPS::FPS_15;
params.verbose = verbose;
// <---- Set Video parameters

Expand Down
4 changes: 2 additions & 2 deletions examples/zed_oc_sync_example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ int main(int argc, char *argv[])

// ----> 1) Set the video parameters
sl_oc::VideoParams params;
params.res = sl_oc::RESOLUTION::HD720;
params.fps = sl_oc::FPS::FPS_60;
params.res = sl_oc::RESOLUTION::HD2K;
params.fps = sl_oc::FPS::FPS_15;
params.verbose = verbose;
// <---- Video parameters

Expand Down

0 comments on commit faa03bc

Please sign in to comment.