Skip to content

Commit 969d153

Browse files
authored
Merge pull request #20 from stereolabs/feat_depth_tapi
Feat depth tapi
2 parents 830d9d0 + 96f56b0 commit 969d153

27 files changed

+1356
-216
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

-35
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

-20
This file was deleted.

.github/ISSUE_TEMPLATE/question.md

-10
This file was deleted.

CMakeLists.txt

+56-13
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ project(${PROJECT_NAME} CXX)
77
############################################################################
88
# Flags
99

10+
cmake_policy(SET CMP0054 NEW)
11+
1012
# if CMAKE_BUILD_TYPE is not specified, take 'Release' as default
1113
set(${PROJECT_NAME}_CXX_FLAGS "-std=c++14")
1214
set(CMAKE_CXX_FLAGS "${${PROJECT_NAME}_CXX_FLAGS} -Wall -pedantic -g")
@@ -25,6 +27,8 @@ else()
2527
message("* Release mode")
2628
endif()
2729

30+
31+
2832
############################################################################
2933
# Options
3034
option(BUILD_VIDEO "Build the ZED Open Capture Video Modules (only for Linux)" ON)
@@ -135,41 +139,80 @@ if(BUILD_EXAMPLES)
135139
include_directories(${OpenCV_INCLUDE_DIRS})
136140

137141
##### Video Example
138-
add_executable(${PROJECT_NAME}_video_example "${PROJECT_SOURCE_DIR}/examples/zed_oc_video_example.cpp")
139-
set_target_properties(${PROJECT_NAME}_video_example PROPERTIES PREFIX "")
140-
target_link_libraries(${PROJECT_NAME}_video_example
142+
set(VIDEO_EXAMPLE ${PROJECT_NAME}_video_example)
143+
add_executable(${VIDEO_EXAMPLE} "${PROJECT_SOURCE_DIR}/examples/zed_oc_video_example.cpp")
144+
set_target_properties(${VIDEO_EXAMPLE} PROPERTIES PREFIX "")
145+
target_link_libraries(${VIDEO_EXAMPLE}
141146
${PROJECT_NAME}
142147
${OpenCV_LIBS}
143148
)
144-
install(TARGETS ${PROJECT_NAME}_video_example
149+
install(TARGETS ${VIDEO_EXAMPLE}
145150
RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin
146151
)
147152

148153
##### Control Example
149-
add_executable(${PROJECT_NAME}_control_example "${PROJECT_SOURCE_DIR}/examples/zed_oc_control_example.cpp")
150-
set_target_properties(${PROJECT_NAME}_control_example PROPERTIES PREFIX "")
151-
target_link_libraries(${PROJECT_NAME}_control_example
154+
set(CONTROL_EXAMPLE ${PROJECT_NAME}_control_example)
155+
add_executable(${CONTROL_EXAMPLE} "${PROJECT_SOURCE_DIR}/examples/zed_oc_control_example.cpp")
156+
set_target_properties(${CONTROL_EXAMPLE} PROPERTIES PREFIX "")
157+
target_link_libraries(${CONTROL_EXAMPLE}
152158
${PROJECT_NAME}
153159
${OpenCV_LIBS}
154160
)
155-
install(TARGETS ${PROJECT_NAME}_control_example
161+
install(TARGETS ${CONTROL_EXAMPLE}
156162
RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin
157163
)
158164

159165
##### Rectify Example
166+
set(RECTIFY_EXAMPLE ${PROJECT_NAME}_rectify_example)
167+
include_directories( ${PROJECT_SOURCE_DIR}/examples/include)
168+
add_executable(${RECTIFY_EXAMPLE} "${PROJECT_SOURCE_DIR}/examples/zed_oc_rectify_example.cpp")
169+
set_target_properties(${RECTIFY_EXAMPLE} PROPERTIES PREFIX "")
170+
target_link_libraries(${RECTIFY_EXAMPLE}
171+
${PROJECT_NAME}
172+
${OpenCV_LIBS}
173+
)
174+
install(TARGETS ${RECTIFY_EXAMPLE}
175+
RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin
176+
)
177+
178+
##### Depth Example
179+
find_package(OpenMP)
180+
181+
set(DEPTH_EXAMPLE ${PROJECT_NAME}_depth_example)
182+
include_directories( ${PROJECT_SOURCE_DIR}/examples/include)
183+
add_executable(${DEPTH_EXAMPLE} "${PROJECT_SOURCE_DIR}/examples/zed_oc_depth_example.cpp")
184+
set_target_properties(${DEPTH_EXAMPLE} PROPERTIES PREFIX "")
185+
186+
if(OpenMP_CXX_FOUND)
187+
include_directories(${OpenMP_CXX_INCLUDE_DIRS})
188+
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}")
189+
target_link_libraries(${DEPTH_EXAMPLE}
190+
OpenMP::OpenMP_CXX
191+
${PROJECT_NAME}
192+
${OpenCV_LIBS}
193+
)
194+
else()
195+
target_link_libraries(${DEPTH_EXAMPLE}
196+
${PROJECT_NAME}
197+
${OpenCV_LIBS}
198+
)
199+
endif()
200+
201+
##### Depth Tune Stereo
202+
set(STEREO_TUNE_APP ${PROJECT_NAME}_depth_tune_stereo)
160203
include_directories( ${PROJECT_SOURCE_DIR}/examples/include)
161-
add_executable(${PROJECT_NAME}_rectify_example "${PROJECT_SOURCE_DIR}/examples/zed_oc_rectify_example.cpp")
162-
set_target_properties(${PROJECT_NAME}_rectify_example PROPERTIES PREFIX "")
163-
target_link_libraries(${PROJECT_NAME}_rectify_example
204+
add_executable(${STEREO_TUNE_APP} "${PROJECT_SOURCE_DIR}/examples/tools/zed_oc_tune_stereo_sgbm.cpp")
205+
set_target_properties(${STEREO_TUNE_APP} PROPERTIES PREFIX "")
206+
target_link_libraries(${STEREO_TUNE_APP}
164207
${PROJECT_NAME}
165208
${OpenCV_LIBS}
166209
)
167-
install(TARGETS ${PROJECT_NAME}_rectify_example
210+
install(TARGETS ${STEREO_TUNE_APP}
168211
RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin
169212
)
170213

171214
if(DEBUG_CAM_REG)
172-
##### Video with AEG/AGC reisters log
215+
##### Video with AEG/AGC registers log
173216
add_executable(${PROJECT_NAME}_video_reg_log "${PROJECT_SOURCE_DIR}/examples/zed_oc_video_reg_log.cpp")
174217
set_target_properties(${PROJECT_NAME}_video_reg_log PROPERTIES PREFIX "")
175218
target_link_libraries(${PROJECT_NAME}_video_reg_log

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Stereolabs
3+
Copyright (c) 2021 Stereolabs
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+15-7
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
* Video Capture
2222
- YUV 4:2:2 data format
2323
- Camera controls
24-
* Sensor Data Capture
24+
* Sensor Data Capture [Not available for ZED]
2525
- 6-DOF IMU (3-DOF accelerometer + 3-DOF gyroscope)
26-
- 3-DOF Magnetometer
27-
- Barometer
28-
- Sensors temperature
26+
- 3-DOF Magnetometer [Only ZED2 and ZED2i]
27+
- Barometer [Only ZED2 and ZED2i]
28+
- Sensors temperature [Only ZED2 and ZED2i]
2929
* Sensors/video Synchronization
3030
* Portable
3131
- Tested on Linux
@@ -39,14 +39,16 @@
3939
- Stereo rectification
4040
- IMU, magnetometer and barometer data capture
4141
- Video and sensors synchronization
42+
- Disparity/Depth/Point Cloud extraction using OpenCV Transparent API
43+
- Depth tuning using OpenCV control GUI
4244

4345
## Description
4446

4547
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.
4648

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

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].
5052

5153
## Build
5254

@@ -56,6 +58,7 @@ The open-source library provides methods to access raw video frames, calibration
5658
* Linux OS
5759
* GCC (v7.5+)
5860
* CMake (v3.1+)
61+
* OpenCV (v3.4.0+) -Optional for the examples-
5962

6063
### Install prerequisites
6164

@@ -156,6 +159,8 @@ After installing the library and examples, you will have the following sample ap
156159
* [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.
157160
* [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.
158161
* [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
159164

160165
To run the examples, open a terminal console and enter the following commands:
161166

@@ -165,9 +170,11 @@ $ zed_open_capture_control_example
165170
$ zed_open_capture_rectify_example
166171
$ zed_open_capture_sensors_example
167172
$ zed_open_capture_sync_example
173+
$ zed_open_capture_depth_example
174+
$ zed_open_capture_depth_tune_stereo
168175
```
169176

170-
**Note:** OpenCV is used in the examples for controls and display.
177+
**Note:** OpenCV is used in the examples for controls, display, and depth extraction.
171178

172179

173180
## Documentation
@@ -201,3 +208,4 @@ This library is licensed under the MIT License.
201208

202209
## Support
203210
If you need assistance go to our Community site at https://community.stereolabs.com/
211+

changelog.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

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+
310
v0.4.1 - 2021 05 28
411
-------------------
512
* Fix udev rules to access the sensors module of the new ZED2i

doc/api_doc/doxyfile

+24-12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Doxyfile 1.9.3
1+
# Doxyfile 1.9.2
22

33
# This file describes the settings to be used by the documentation system
44
# doxygen (www.doxygen.org) for a project.
@@ -38,7 +38,7 @@ PROJECT_NAME = "ZED Open Capture"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = v0.4.1
41+
PROJECT_NUMBER = v0.5.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a
@@ -874,6 +874,8 @@ WARN_LOGFILE =
874874
INPUT = ../../src \
875875
../../include \
876876
../../examples \
877+
../../examples/include \
878+
../../examples/tools \
877879
. \
878880
main_page.md
879881

@@ -955,21 +957,25 @@ EXCLUDE_SYMBOLS =
955957
# that contain example code fragments that are included (see the \include
956958
# command).
957959

958-
EXAMPLE_PATH = ../../examples
960+
EXAMPLE_PATH = ../../examples \
961+
../../examples/include \
962+
../../examples/tools \
963+
../../examples/zed_oc_depth_example.cpp \
964+
../../examples/tools/zed_oc_tune_stereo_sgbm.cpp
959965

960966
# If the value of the EXAMPLE_PATH tag contains directories, you can use the
961967
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
962968
# *.h) to filter out the source-files in the directories. If left blank all
963969
# files are included.
964970

965-
EXAMPLE_PATTERNS = *
971+
EXAMPLE_PATTERNS =
966972

967973
# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
968974
# searched for input files to be used with the \include or \dontinclude commands
969975
# irrespective of the value of the RECURSIVE tag.
970976
# The default value is: NO.
971977

972-
EXAMPLE_RECURSIVE = NO
978+
EXAMPLE_RECURSIVE = YES
973979

974980
# The IMAGE_PATH tag can be used to specify one or more files or directories
975981
# that contain images that are to be included in the documentation (see the
@@ -2273,6 +2279,15 @@ EXTERNAL_PAGES = YES
22732279
# Configuration options related to the dot tool
22742280
#---------------------------------------------------------------------------
22752281

2282+
# If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram
2283+
# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to
2284+
# NO turns the diagrams off. Note that this option also works with HAVE_DOT
2285+
# disabled, but it is recommended to install and use dot, since it yields more
2286+
# powerful graphs.
2287+
# The default value is: YES.
2288+
2289+
CLASS_DIAGRAMS = YES
2290+
22762291
# You can include diagrams made with dia in doxygen documentation. Doxygen will
22772292
# then run dia to produce the diagram and insert it in the documentation. The
22782293
# DIA_PATH tag allows you to specify the directory where the dia binary resides.
@@ -2329,14 +2344,11 @@ DOT_FONTSIZE = 10
23292344

23302345
DOT_FONTPATH =
23312346

2332-
# If the CLASS_GRAPH tag is set to YES (or GRAPH) then doxygen will generate a
2333-
# graph for each documented class showing the direct and indirect inheritance
2334-
# relations. In case HAVE_DOT is set as well dot will be used to draw the graph,
2335-
# otherwise the built-in generator will be used. If the CLASS_GRAPH tag is set
2336-
# to TEXT the direct and indirect inheritance relations will be shown as texts /
2337-
# links.
2338-
# Possible values are: NO, YES, TEXT and GRAPH.
2347+
# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for
2348+
# each documented class showing the direct and indirect inheritance relations.
2349+
# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO.
23392350
# The default value is: YES.
2351+
# This tag requires that the tag HAVE_DOT is set to YES.
23402352

23412353
CLASS_GRAPH = YES
23422354

0 commit comments

Comments
 (0)