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.
|
- nodes:
- - id: webcam
- build: pip install -r ../../nodes_hub/opencv-video-capture/requirements.txt
- path: ../../nodes_hub/opencv-video-capture/video_capture.py
- inputs:
- tick: dora/timer/millis/50
- outputs:
- - image
- env:
- DURATION: 100
-
- - id: object_detection
- build: pip install -r ../../nodes_hub/ultralytics-yolo/requirements.txt
- path: ../../nodes_hub/ultralytics-yolo/yolo.py
- inputs:
- image: webcam/image
- outputs:
- - bbox
-
- - id: plot
- build: pip install -r ../../nodes_hub/opencv-plot/requirements.txt
- path: ../../nodes_hub/opencv-plot/plot.py
- inputs:
- image: webcam/image
- bbox: object_detection/bbox
|