File size: 865 Bytes
b98ffbb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
nodes:
  - id: robot
    operator:
      python: ../operators/robot.py
      inputs:
        blaster: 
          source: planning/blaster
          queue_size: 1
        led:
          source: planning/led
          queue_size: 1
        tick:
          source: dora/timer/millis/50
          queue_size: 1
      outputs:
        - image
        - position
  - id: plot
    operator:
      python: ../operators/plot.py
      inputs:
        image: robot/image
        bbox: object_detection/bbox
  - id: object_detection
    operator:
      python: ../operators/object_detection.py
      inputs:
        image:
          source: robot/image
          queue_size: 1
      outputs:
        - bbox
  - id: planning
    operator:
      python: ../operators/reaction_op.py
      inputs:
        bbox: object_detection/bbox
      outputs:
        - led
        - blaster