opencv/doc/tutorials/app/orbbec_uvc.markdown
sirudoi 485c7d5be7
Merge pull request #27230 from sirudoi:4.x
videoio: add Orbbec Gemini 330 camera support #27230

### Pull Request Readiness Checklist

See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request

- [x] I agree to contribute to the project under Apache 2 License.
- [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
- [x] The PR is proposed to the proper branch
- [x] The feature is well documented and sample code can be built with the project CMake

### Description of Changes
#### motivated:
- Orbbec has launched a new RGB-D camera — the Gemini 330. To fully leverage the capabilities of the Gemini 330, Orbbec simultaneously released version 2 of the open-source OrbbecSDK. This PR adapts the support for the Gemini 330 series cameras to better meet and respond to users’ application requirements.
#### change:
- Add support for the Orbbec Gemini330 camera.
- Fixed an issue with Femto Mega on Windows 10/11; for details, see [issue](https://github.com/opencv/opencv/pull/23237#issuecomment-2242347295).
- When enabling `HAVE_OBSENSOR_ORBBEC_SDK`, the build now fetches version 2 of the OrbbecSDK, and the sample API calls have been updated to the v2 format.

### Testing
|     OS     |                Compiler                 |      Camera       | Result |
|:----------:|:---------------------------------------:|:-----------------:|:------:|
| Windows 11 | (VS2022) MSVC runtime library version 14.40       | Gemini 335/336L   | Pass   |
| Windows 11 | (VS2022) MSVC runtime library version 14.19       | Gemini 335/336L   | Pass   |
| Ubuntu22.04| GCC 11.4                               | Gemini 335/336L   | Pass   |
| Ubuntu18.04| GCC 7.5                                | Gemini 335/336L   | Pass   |

### Acknowledgements
Thank you to the OpenCV team for the continuous support and for creating such a robust open source project. I appreciate the valuable feedback from the community and reviewers, which has helped improve the quality of this contribution!
2025-04-25 11:04:19 +03:00

5.3 KiB
Raw Blame History

Using Orbbec 3D cameras (UVC)

@tableofcontents

@prev_tutorial{tutorial_orbbec_astra_openni} @next_tutorial{tutorial_intelperc}

Original author Jinyue Chen
Compatibility OpenCV >= 4.10

Introduction

This tutorial is devoted to the Orbbec 3D cameras based on UVC protocol. For the use of the older Orbbec 3D cameras which depends on OpenNI, please refer to the previous tutorial.

Unlike working with the OpenNI based Astra 3D cameras which requires OpenCV built with OpenNI2 SDK, Orbbec SDK is not required to be installed for accessing Orbbec UVC 3D cameras via OpenCV. By using cv::VideoCapture class, users get the stream data from 3D cameras, similar to working with USB cameras. The calibration and alignment of the depth map and color image are done internally.

Instructions

In order to use the 3D cameras with OpenCV. You can refer to Get Started to install OpenCV.

Note since 4.11 on, Mac OS users need to compile OpenCV from source with flag -DOBSENSOR_USE_ORBBEC_SDK=ON in order to use the cameras:

cmake -DOBSENSOR_USE_ORBBEC_SDK=ON ..
make
sudo make install

Code

@add_toggle_python This tutorial code's is shown lines below. You can also download it from here @include samples/python/videocapture_obsensor.py @end_toggle

@add_toggle_cpp This tutorial code's is shown lines below. You can also download it from here @include samples/cpp/videocapture_obsensor.cpp @end_toggle

Code Explanation

Python

  • Open Orbbec Depth Sensor: Using cv.VideoCapture(0, cv.CAP_OBSENSOR) to attempt to open the first Orbbec depth sensor device. If the camera fails to open, the program will exit and display an error message.

  • Loop to Grab and Process Data: In an infinite loop, the code continuously grabs data from the camera. The orbbec_cap.grab() method attempts to grab a frame.

  • Process BGR Image: Using orbbec_cap.retrieve(None, cv.CAP_OBSENSOR_BGR_IMAGE) to retrieve the BGR image data. If successfully retrieved, the BGR image is displayed in a window using cv.imshow("BGR", bgr_image).

  • Process Depth Image: Using orbbec_cap.retrieve(None, cv.CAP_OBSENSOR_DEPTH_MAP) to retrieve the depth image data. If successfully retrieved, the depth image is first normalized to a range of 0 to 255, then a false color image is applied, and the result is displayed in a window using cv.imshow("DEPTH", color_depth_map).

  • Keyboard Interrupt: Using cv.pollKey() to detect keyboard events. If a key is pressed, the loop breaks and the program ends.

  • Release Resources: After exiting the loop, the camera resources are released using orbbec_cap.release().

C++

  • Open Orbbec Depth Sensor: Using VideoCapture obsensorCapture(0, CAP_OBSENSOR) to attempt to open the first Orbbec depth sensor device. If the camera fails to open, an error message is displayed, and the program exits.

  • Retrieve Camera Intrinsic Parameters: Using obsensorCapture.get() to retrieve the intrinsic parameters of the camera, including focal lengths (fx, fy) and principal points (cx, cy).

  • Loop to Grab and Process Data: In an infinite loop, the code continuously grabs data from the camera. The obsensorCapture.grab() method attempts to grab a frame.

  • Process BGR Image: Using obsensorCapture.retrieve(image, CAP_OBSENSOR_BGR_IMAGE) to retrieve the BGR image data. If successfully retrieved, the BGR image is displayed in a window using imshow("BGR", image).

  • Process Depth Image: Using obsensorCapture.retrieve(depthMap, CAP_OBSENSOR_DEPTH_MAP) to retrieve the depth image data. If successfully retrieved, the depth image is normalized and a false color image is applied, then the result is displayed in a window using imshow("DEPTH", adjDepthMap). The retrieved depth values are in millimeters and are truncated to a range between 300 and 5000 (millimeter). This fixed range can be interpreted as a truncation based on the depth camera's depth range, removing invalid pixels on the depth map.

  • Overlay Depth Map on BGR Image: Convert the depth map to an 8-bit image, resize it to match the BGR image size, and overlay it on the BGR image with a specified transparency (alpha). The overlaid image is displayed in a window using imshow("DepthToColor", image).

  • Keyboard Interrupt: Using pollKey() to detect keyboard events. If a key is pressed, the loop breaks and the program ends.

  • Release Resources: After exiting the loop, the camera resources are released.

Results

Python

BGR And DEPTH frame

C++

BGR And DEPTH And DepthToColor frame

Note

  • Mac users need sudo privileges to execute the code.
  • Firmware: If youre using an Orbbec UVC 3D camera, please ensure your cameras firmware is updated to the latest version to avoid potential compatibility issues. For more details, see Orbbecs Release Notes.