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

1234567891011121314151617181920212223
  1. nodes:
  2. - id: camera
  3. build: pip install ../../node-hub/opencv-video-capture
  4. path: opencv-video-capture
  5. inputs:
  6. tick: dora/timer/millis/16
  7. stop: plot/end
  8. outputs:
  9. - image
  10. - text
  11. env:
  12. CAPTURE_PATH: 0
  13. IMAGE_WIDTH: 640
  14. IMAGE_HEIGHT: 480
  15. - id: plot
  16. build: pip install ../../node-hub/opencv-plot
  17. path: opencv-plot
  18. inputs:
  19. image: camera/image
  20. text: camera/text
  21. outputs:
  22. - end