-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprocessor_config.json
More file actions
112 lines (112 loc) · 2.86 KB
/
processor_config.json
File metadata and controls
112 lines (112 loc) · 2.86 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"0": {
"host": "127.0.0.1",
"port": 8001,
"name": "basic_processor",
"conda_env": "whatsai2",
"dependencies": [],
"expects_input": "image",
"description": "A simple processor that returns the original image without changes.",
"enabled": true
},
"1": {
"host": "127.0.0.1",
"port": 8002,
"name": "depth_processor",
"conda_env": "depth-pro",
"dependencies": [],
"expects_input": "image",
"description": "Utilizes MediaPipe for counting fingers.",
"enabled": true
},
"2": {
"host": "127.0.0.1",
"port": 8003,
"name": "scene_captioning_processor",
"conda_env": "whatsai2",
"dependencies": [],
"expects_input": "image",
"description": "A processor for creating dense region captioning from an image.",
"enabled": false
},
"3": {
"host": "127.0.0.1",
"port": 8004,
"name": "region_processor",
"conda_env": "whatsai2",
"dependencies": [],
"expects_input": "image",
"description": "Provides fine camera input and output functionalities to learn about curated objects.",
"enabled": false
},
"4": {
"host": "127.0.0.1",
"port": 8005,
"name": "scene_object_processor",
"conda_env": "whatsai2",
"dependencies": [],
"expects_input": "image",
"description": "Performs object detection using YOLO.",
"enabled": true
},
"5": {
"host": "127.0.0.1",
"port": 8006,
"name": "fast_processor",
"conda_env": "whatsai2",
"dependencies": [],
"expects_input": "image",
"description": "Performs scene description using local VLM.",
"enabled": true
},
"6": {
"host": "127.0.0.1",
"port": 8007,
"name": "switch_panel_processor",
"conda_env": "whatsai2",
"dependencies": [],
"expects_input": "image",
"description": "Helps navigate a switch panel.",
"enabled": false
},
"7": {
"host": "127.0.0.1",
"port": 8008,
"name": "thermostat_panel_processor",
"conda_env": "whatsai2",
"dependencies": [],
"expects_input": "image",
"description": "Helps navigate a thermostat panel.",
"enabled": false
},
"8": {
"host": "127.0.0.1",
"port": 8009,
"name": "elevator_panel_processor",
"conda_env": "whatsai2",
"dependencies": [],
"expects_input": "image",
"description": "Helps navigate a switch elevator panel",
"enabled": false
},
"9": {
"host": "127.0.0.1",
"port": 8010,
"name": "keyboard_panel_processor",
"conda_env": "whatsai2",
"dependencies": [],
"expects_input": "image",
"description": "Helps navigate a keyboard panel.",
"enabled": false
},
"10": {
"host": "127.0.0.1",
"port": 8011,
"name": "printer_panel_processor",
"conda_env": "whatsai2",
"dependencies": [],
"expects_input": "image",
"description": "Helps navigate a printer panel.",
"enabled": false
}
}