-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added depth image and data output for the dora-pyorbbecksdk node (#740)
The code has been validated through the dora-rerun node. ``` nodes: - id: dora-pyorbbecksdk path: dora-pyorbbecksdk inputs: tick: dora/timer/millis/30 outputs: - image - depth_image - depth_data - id: view path: dora-rerun inputs: image_1: source: dora-pyorbbecksdk/image queue_size: 1 depth_image: source: dora-pyorbbecksdk/depth_image queue_size: 1 ``` ![屏幕截图 2025-01-03 143912](https://github.com/user-attachments/assets/2564bb53-6da0-47d1-824f-214f893135f1) In addition to depth images, I also added output depth data to facilitate the processing of depth information.
- Loading branch information
Showing
2 changed files
with
67 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
[tool.poetry] | ||
name = "dora-pyorbbecksdk" | ||
version = "0.3.8" | ||
authors = ["Haixuan Xavier Tao <[email protected]>"] | ||
authors = [ | ||
"Haixuan Xavier Tao <[email protected]>", | ||
"Xiang Yang <[email protected]>", | ||
] | ||
description = "Dora Node for capturing video with PyOrbbeck SDK" | ||
readme = "README.md" | ||
|
||
|