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 opencv-video-capture
- path: opencv-video-capture
- inputs:
- tick: dora/timer/millis/100
- outputs:
- - image
- env:
- CAPTURE_PATH: "0"
- ENCODING: "rgb8"
- IMAGE_WIDTH: "640"
- IMAGE_HEIGHT: "480"
-
- - id: tracker
- build: pip install -e .
- path: dora-cotracker
- inputs:
- image: camera/image
- # points_to_track: input/points_to_track
- outputs:
- - tracked_image
- - tracked_points
-
- - id: plot
- build: pip install dora-rerun
- path: dora-rerun
- inputs:
- image: camera/image
- tracked_image: tracker/tracked_image
-
-
- # replace with your own node that outputs tracking points # optional uncomment if input via node
- # - id: input
- # build: pip install -e .
- # path: point-input-node
- # outputs:
- # - points_to_track
|