nx_metadata_sdk  1.0
Metadata SDK
base_library_supported_types.h
1 // Copyright 2018-present Network Optix, Inc. Licensed under MPL 2.0: www.mozilla.org/MPL/2.0/
2 
3 #pragma once
4 
5 #include <string>
6 
7 namespace nx {
8 namespace vms_server_plugins {
9 namespace analytics {
10 namespace stub {
11 namespace taxonomy_features {
12 
13 static const std::string kBaseLibrarySupportedTypes = /*suppress newline*/ 1 + (const char*) R"json(
14  {
15  "attributes":
16  [
17  "Color",
18  "Speed",
19  "Brand",
20  "Model",
21  "Size",
22  "License Plate",
23  "Driver buckled up",
24  "Lane"
25  ],
26  "objectTypeId":"nx.base.Vehicle"
27  },
28  {
29  "attributes":
30  [
31  "Gender",
32  "Race",
33  "Age",
34  "Height",
35  "Activity",
36  "Hat",
37  "Scarf",
38  "Body Shape",
39  "Top Clothing Color",
40  "Top Clothing Length",
41  "Top Clothing Grain",
42  "Top Clothing Type",
43  "Bottom Clothing Color",
44  "Bottom Clothing Length",
45  "Bottom Clothing Grain",
46  "Bottom Clothing Type",
47  "Things",
48  "Gloves",
49  "Shoes",
50  "Name",
51  "Temperature",
52  "Tattoo"
53  ],
54  "objectTypeId":"nx.base.Person"
55  },
56  {
57  "attributes":
58  [
59  "Gender",
60  "Race",
61  "Age",
62  "Shape",
63  "Length",
64  "Emotion",
65  "Hat",
66  "Hair Color",
67  "Hair Type",
68  "Eyelid",
69  "Eyebrow Width",
70  "Eyebrow Space",
71  "Eyebrow Color",
72  "Eyes",
73  "Mouth",
74  "Eyes Shape",
75  "Eyes Color",
76  "Nose Length",
77  "Nose Bridge",
78  "Nose Wing",
79  "Nose End",
80  "Facial Hair",
81  "Ear Type",
82  "Lip Type",
83  "Chin Type",
84  "Freckles",
85  "Tattoo",
86  "Mole",
87  "Scar",
88  "Things",
89  "Temperature",
90  "Name"
91  ],
92  "objectTypeId": "nx.base.Face"
93  },
94  {
95  "attributes":
96  [
97  "Number",
98  "Country",
99  "Province",
100  "Size",
101  "Color"
102  ],
103  "objectTypeId": "nx.base.LicensePlate"
104  },
105  {
106  "attributes": [ "Size", "Color" ],
107  "objectTypeId": "nx.base.Animal"
108  },
109  {
110  "attributes":
111  [
112  "Bag",
113  "Weapon",
114  "Cigarette",
115  "Mobile Phone",
116  "Cart",
117  "Bottle",
118  "Umbrella",
119  "Box",
120  "Mask",
121  "Glasses",
122  "Helmet"
123  ],
124  "objectTypeId": "nx.base.Things"
125  },
126  {
127  "objectTypeId": "nx.base.Unknown"
128  },
129  {
130  "attributes": [ "Type" ],
131  "objectTypeId": "nx.base.Car"
132  },
133  {
134  "attributes": [ "Type" ],
135  "objectTypeId": "nx.base.Truck"
136  },
137  {
138  "attributes": [ "Type" ],
139  "objectTypeId": "nx.base.Bus"
140  },
141  {
142  "objectTypeId": "nx.base.Train"
143  },
144  {
145  "objectTypeId": "nx.base.Tram"
146  },
147  {
148  "attributes": [ "Type" ],
149  "objectTypeId": "nx.base.Bike"
150  },
151  {
152  "attributes": [ "Type" ],
153  "objectTypeId": "nx.base.Special"
154  },
155  {
156  "objectTypeId": "nx.base.WaterTransport"
157  },
158  {
159  "objectTypeId": "nx.base.AirTransport"
160  },
161  {
162  "objectTypeId": "nx.base.Cat"
163  },
164  {
165  "objectTypeId": "nx.base.Dog"
166  },
167  {
168  "objectTypeId": "nx.base.Fish"
169  },
170  {
171  "objectTypeId": "nx.base.Snake"
172  },
173  {
174  "objectTypeId": "nx.base.Bird"
175  },
176  {
177  "attributes": [ "Type" ],
178  "objectTypeId": "nx.base.FacialHair"
179  },
180  {
181  "attributes": [ "Color", "Type" ],
182  "objectTypeId": "nx.base.Hat"
183  },
184  {
185  "attributes": [ "Color" ],
186  "objectTypeId": "nx.base.Scarf"
187  },
188  {
189  "attributes": [ "Color" ],
190  "objectTypeId": "nx.base.Gloves"
191  },
192  {
193  "attributes": [ "Color", "Type" ],
194  "objectTypeId": "nx.base.Shoes"
195  },
196  {
197  "attributes": [ "Type" ],
198  "objectTypeId": "nx.base.Glasses"
199  },
200  {
201  "objectTypeId": "nx.base.Mask"
202  },
203  {
204  "objectTypeId": "nx.base.Helmet"
205  },
206  {
207  "attributes": [ "Color", "Open" ],
208  "objectTypeId": "nx.base.Umbrella"
209  },
210  {
211  "attributes": [ "Color", "Lug" ],
212  "objectTypeId": "nx.base.Box"
213  },
214  {
215  "objectTypeId": "nx.base.Weapon"
216  },
217  {
218  "attributes": [ "Type" ],
219  "objectTypeId": "nx.base.Cigarette"
220  },
221  {
222  "attributes": [ "Position" ],
223  "objectTypeId": "nx.base.MobilePhone"
224  },
225  {
226  "attributes": [ "Type" ],
227  "objectTypeId": "nx.base.Cart"
228  },
229  {
230  "objectTypeId": "nx.base.Bottle"
231  },
232  {
233  "attributes": [ "Size", "Color", "Type" ],
234  "objectTypeId": "nx.base.Bag"
235  },)json";
236 
237 } // namespace taxonomy_features
238 } // namespace stub
239 } // namespace analytics
240 } // namespace vms_server_plugins
241 } // namespace nx
Definition: apple_utils.h:6