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

1234567891011121314151617181920212223242526
  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. send_stdout_as: stdout
  12. python: object_detection.py
  13. inputs:
  14. image: webcam/image
  15. outputs:
  16. - bbox
  17. - stdout
  18. - id: plot
  19. operator:
  20. python: plot.py
  21. inputs:
  22. image: webcam/image
  23. bbox: object_detection/bbox
  24. assistant_message: object_detection/stdout