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 482 B

12345678910111213141516171819202122232425
  1. nodes:
  2. - id: webcam
  3. operator:
  4. python: webcam.py
  5. inputs:
  6. tick: dora/timer/millis/50
  7. outputs:
  8. - image
  9. - id: object_detection
  10. operator:
  11. python: object_detection.py
  12. inputs:
  13. image: webcam/image
  14. outputs:
  15. - bbox
  16. - logs
  17. - id: plot
  18. operator:
  19. python: plot.py
  20. inputs:
  21. image: webcam/image
  22. bbox: object_detection/bbox
  23. object_detection_logs: object_detection/logs