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

1234567891011121314151617181920212223242526272829303132
  1. nodes:
  2. - id: camera
  3. build: pip install -e ../../node-hub/opencv-video-capture
  4. path: opencv-video-capture
  5. inputs:
  6. tick: dora/timer/millis/20
  7. outputs:
  8. - image
  9. env:
  10. CAPTURE_PATH: 0
  11. IMAGE_WIDTH: 640
  12. IMAGE_HEIGHT: 480
  13. VIRTUAL_ENV: env_1
  14. - id: object-detection
  15. build: pip install -e ../../node-hub/dora-yolo
  16. path: dora-yolo
  17. inputs:
  18. image: camera/image
  19. outputs:
  20. - bbox
  21. env:
  22. VIRTUAL_ENV: env_2
  23. - id: plot
  24. build: pip install dora-rerun
  25. path: dora-rerun
  26. inputs:
  27. image: camera/image
  28. boxes2d: object-detection/bbox
  29. env:
  30. VIRTUAL_ENV: env_1