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
- Disparity/Depth/Point Cloud extraction using OpenCV Transparent API
43
+
- Depth tuning using OpenCV control GUI
42
44
43
45
## Description
44
46
45
47
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
48
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.
49
+
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, ZED 2i, and ZED Mini). A synchronization mechanism is provided to get the correct sensor data associated to a video frame.
48
50
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.
51
+
**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[see `zed_open_capture_rectify_example` example].
50
52
51
53
## Build
52
54
@@ -56,6 +58,7 @@ The open-source library provides methods to access raw video frames, calibration
56
58
* Linux OS
57
59
* GCC (v7.5+)
58
60
* CMake (v3.1+)
61
+
* OpenCV (v3.4.0+) -Optional for the examples-
59
62
60
63
### Install prerequisites
61
64
@@ -156,6 +159,8 @@ After installing the library and examples, you will have the following sample ap
156
159
*[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
160
*[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
161
*[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.
162
+
*[zed_open_capture_depth_example](https://github.com/stereolabs/zed-open-capture/blob/fix_doc/examples/zed_oc_depth_example.cpp): This application captures and displays video frames, calculates disparity map, then extracts the depth map and the point cloud displaying the result and the performances estimation.
163
+
*[zed_open_capture_depth_tune_stereo](https://github.com/stereolabs/zed-open-capture/blob/fix_doc/examples/tools/zed_oc_tune_stereo_sgbm.cpp): This application captures the first available stereo frames and provides GUI Controls to tune the disparity map results and save them to be used in the `zed_open_capture_depth_example` example
159
164
160
165
To run the examples, open a terminal console and enter the following commands:
Copy file name to clipboardexpand all lines: changelog.md
+7
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,12 @@
1
1
# Changelog
2
2
3
+
v0.5.0 - 2021 09 10
4
+
-------------------
5
+
* Add example to extract disparity map, depth map and point cloud using OpenCV and T-API (OpenCL)
6
+
`cv::StereoSGBM` algorithm based on the paper "Heiko Hirschmuller. Stereo processing by semiglobal matching and mutual information. Pattern Analysis and Machine Intelligence, IEEE Transactions on, 30(2):328–341, 2008."
7
+
* Add example to tune disparity map creation
8
+
* Add tool to load/save StereoSGBM depth matching parameters
9
+
3
10
v0.4.1 - 2021 05 28
4
11
-------------------
5
12
* Fix udev rules to access the sensors module of the new ZED2i
0 commit comments