opencv/doc/tutorials/gapi/oak_devices/oak_devices.markdown

27 lines
1.1 KiB
Markdown
Raw Normal View History

2022-10-04 20:45:44 +08:00
Using DepthAI Hardware / OAK depth sensors {#tutorial_gapi_oak_devices}
=======================================================================
2022-09-12 11:53:20 +08:00
@tableofcontents
@prev_tutorial{tutorial_gapi_face_beautification}
2022-10-04 20:45:44 +08:00
![Oak-D and Oak-D-Light cameras](pics/oak.jpg)
2022-09-12 11:53:20 +08:00
Depth sensors compatible with Luxonis DepthAI library are supported through OpenCV Graph API (or G-API) module. RGB image and some other formats of output can be retrieved by using familiar interface of G-API module.
In order to use DepthAI sensor with OpenCV you should do the following preliminary steps:
2022-10-04 20:45:44 +08:00
-# Install Luxonis DepthAI library [depthai-core](https://github.com/luxonis/depthai-core).
2022-09-12 11:53:20 +08:00
2022-10-04 20:45:44 +08:00
-# Configure OpenCV with DepthAI library support by setting `WITH_OAK` flag in CMake. If DepthAI library is found in install folders OpenCV will be built with depthai-core (see a status `WITH_OAK` in CMake log).
2022-09-12 11:53:20 +08:00
-# Build OpenCV.
Source code
-----------
You can find source code how to process heterogeneous graphs in the `modules/gapi/samples/oak_basic_infer.cpp` of the OpenCV source code library.
@add_toggle_cpp
@include modules/gapi/samples/oak_basic_infer.cpp
@end_toggle