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.

demo.yml 1.1 kB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
12345678910111213141516171819202122232425262728293031323334353637383940
  1. nodes:
  2. - id: camera
  3. build: pip install opencv-video-capture
  4. path: opencv-video-capture
  5. inputs:
  6. tick: dora/timer/millis/100
  7. outputs:
  8. - image
  9. env:
  10. CAPTURE_PATH: "0"
  11. ENCODING: "rgb8"
  12. IMAGE_WIDTH: "640"
  13. IMAGE_HEIGHT: "480"
  14. - id: tracker
  15. build: pip install -e .
  16. path: dora-cotracker
  17. inputs:
  18. image: camera/image
  19. # points_to_track: input/points_to_track # uncomment this if using input node
  20. outputs:
  21. - tracked_image
  22. - points
  23. - id: plot
  24. build: pip install dora-rerun
  25. path: dora-rerun
  26. inputs:
  27. image: camera/image
  28. tracked_image: tracker/tracked_image
  29. # replace with your own node that outputs tracking points # uncomment if input via node
  30. # (e.g., YOLO detector, pose estimator, etc.)
  31. # - id: point_source
  32. # build: pip install your-node # Replace with your node's name
  33. # path: your-point-source-node # Replace with your node's path
  34. # inputs:
  35. # image: camera/image # If your node needs image input
  36. # outputs:
  37. # - points_to_track # Must output points in required format