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.

qwenvl_cotracker.yml 1.9 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. nodes:
  2. - id: camera
  3. build: pip install -e ../../node-hub/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: dora-qwenvl
  15. build: pip install -e ../../node-hub/dora-qwen2-5-vl
  16. path: dora-qwen2-5-vl
  17. inputs:
  18. image: camera/image
  19. text_1: dora/timer/millis/600
  20. outputs:
  21. - text
  22. env:
  23. DEFAULT_QUESTION: Output the bounding box of the eyes.
  24. IMAGE_RESIZE_RATIO: "0.5"
  25. # ACTIVATION_WORDS: grab pick give output take catch grabs picks gives output takes catches have
  26. #SYSTEM_PROMPT: You're a robot.
  27. - id: parse_bbox
  28. path: parse_bbox.py
  29. inputs:
  30. text: dora-qwenvl/text
  31. outputs:
  32. - bbox
  33. env:
  34. IMAGE_RESIZE_RATIO: "0.5"
  35. - id: tracker
  36. build: pip install -e ../../node-hub/dora-cotracker
  37. path: dora-cotracker
  38. inputs:
  39. image: camera/image
  40. boxes2d: parse_bbox/bbox
  41. # points_to_track: input/points_to_track # uncomment this if using input node
  42. outputs:
  43. - tracked_image
  44. - points
  45. env:
  46. INTERACTIVE_MODE: false
  47. - id: plot
  48. build: pip install -e ../../node-hub/dora-rerun
  49. path: dora-rerun
  50. inputs:
  51. image: camera/image
  52. boxes2d: parse_bbox/bbox
  53. tracked_image: tracker/tracked_image
  54. # replace with your own node that outputs tracking points # uncomment if input via node
  55. # (e.g., YOLO detector, pose estimator, etc.)
  56. # - id: point_source
  57. # build: pip install your-node # Replace with your node's name
  58. # path: your-point-source-node # Replace with your node's path
  59. # inputs:
  60. # image: camera/image # If your node needs image input
  61. # outputs:
  62. # - points_to_track # Must output points in required format