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

123456789101112131415161718192021222324252627
  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. - id: object-detection
  14. build: pip install -e ../../node-hub/dora-yolo
  15. path: dora-yolo
  16. inputs:
  17. image: camera/image
  18. outputs:
  19. - bbox
  20. - id: plot
  21. build: pip install -e ../../node-hub/dora-rerun
  22. path: dora-rerun
  23. inputs:
  24. image: camera/image
  25. boxes2d: object-detection/bbox