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_conda.yml 552 B

12345678910111213141516171819202122232425262728
  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:
  21. source: plot.py
  22. conda_env: base
  23. inputs:
  24. image: webcam/image
  25. bbox: object_detection/bbox
  26. assistant_message: object_detection/stdout