You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- nodes:
- - id: camera
- build: pip install -e ../../node-hub/dora-pyrealsense
- path: dora-pyrealsense
- inputs:
- tick: dora/timer/millis/100
- outputs:
- - image
- - depth
-
- - id: dora-mediapipe
- build: pip install -e ../../node-hub/dora-mediapipe
- path: dora-mediapipe
- inputs:
- image: camera/image
- depth: camera/depth
- outputs:
- - points3d
-
- - id: human-shadowing
- build: pip install scipy
- path: human_shadowing.py
- inputs:
- human_pose: dora-mediapipe/points3d
- outputs:
- - pose
-
- - id: plot
- build: pip install -e ../../node-hub/dora-rerun
- path: dora-rerun
- inputs:
- realsense/image: camera/image
- realsense/depth: camera/depth
- realsense/points3d: dora-mediapipe/points3d
- jointstate_reachy: human-shadowing/pose
- env:
- # git clone chttps://github.com/haixuanTao/reachy_description
- reachy_urdf: reachy_description/reachy.urdf
|