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.

dataflow.yml 687 B

12345678910111213141516171819202122232425
  1. nodes:
  2. - id: webcam
  3. build: pip install -r ../../nodes_hub/opencv-video-capture/requirements.txt
  4. path: ../../nodes_hub/opencv-video-capture/video_capture.py
  5. inputs:
  6. tick: dora/timer/millis/50
  7. outputs:
  8. - image
  9. env:
  10. DURATION: 100
  11. - id: object_detection
  12. build: pip install -r ../../nodes_hub/ultralytics-yolo/requirements.txt
  13. path: ../../nodes_hub/ultralytics-yolo/yolo.py
  14. inputs:
  15. image: webcam/image
  16. outputs:
  17. - bbox
  18. - id: plot
  19. build: pip install -r ../../nodes_hub/opencv-plot/requirements.txt
  20. path: ../../nodes_hub/opencv-plot/plot.py
  21. inputs:
  22. image: webcam/image
  23. bbox: object_detection/bbox