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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. nodes:
  2. - id: webcam
  3. custom:
  4. source: ./webcam.py
  5. inputs:
  6. tick:
  7. source: dora/timer/millis/10
  8. queue_size: 1000
  9. outputs:
  10. - image
  11. - text
  12. envs:
  13. IMAGE_WIDTH: 960
  14. IMAGE_HEIGHT: 540
  15. - id: object_detection
  16. custom:
  17. source: ./object_detection.py
  18. inputs:
  19. image: webcam/image
  20. outputs:
  21. - bbox
  22. envs:
  23. IMAGE_WIDTH: 960
  24. IMAGE_HEIGHT: 540
  25. - id: rerun
  26. custom:
  27. source: dora-rerun
  28. inputs:
  29. image: webcam/image
  30. text: webcam/text
  31. boxes2d: object_detection/bbox
  32. envs:
  33. IMAGE_WIDTH: 960
  34. IMAGE_HEIGHT: 540
  35. IMAGE_DEPTH: 3
  36. - id: matplotlib
  37. custom:
  38. source: ./plot.py
  39. inputs:
  40. image: webcam/image
  41. bbox: object_detection/bbox
  42. envs:
  43. IMAGE_WIDTH: 960
  44. IMAGE_HEIGHT: 540