@celluloid/vision-api 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +173 -0
- package/dist/client/client.gen.d.ts +3 -0
- package/dist/client/client.gen.d.ts.map +1 -0
- package/dist/client/client.gen.js +239 -0
- package/dist/client/client.gen.js.map +1 -0
- package/dist/client/index.d.ts +9 -0
- package/dist/client/index.d.ts.map +1 -0
- package/dist/client/index.js +18 -0
- package/dist/client/index.js.map +1 -0
- package/dist/client/types.gen.d.ts +118 -0
- package/dist/client/types.gen.d.ts.map +1 -0
- package/dist/client/types.gen.js +4 -0
- package/dist/client/types.gen.js.map +1 -0
- package/dist/client/utils.gen.d.ts +34 -0
- package/dist/client/utils.gen.d.ts.map +1 -0
- package/dist/client/utils.gen.js +240 -0
- package/dist/client/utils.gen.js.map +1 -0
- package/dist/client.gen.d.ts +13 -0
- package/dist/client.gen.d.ts.map +1 -0
- package/dist/client.gen.js +7 -0
- package/dist/client.gen.js.map +1 -0
- package/dist/core/auth.gen.d.ts +19 -0
- package/dist/core/auth.gen.d.ts.map +1 -0
- package/dist/core/auth.gen.js +19 -0
- package/dist/core/auth.gen.js.map +1 -0
- package/dist/core/bodySerializer.gen.d.ts +26 -0
- package/dist/core/bodySerializer.gen.d.ts.map +1 -0
- package/dist/core/bodySerializer.gen.js +61 -0
- package/dist/core/bodySerializer.gen.js.map +1 -0
- package/dist/core/params.gen.d.ts +44 -0
- package/dist/core/params.gen.d.ts.map +1 -0
- package/dist/core/params.gen.js +105 -0
- package/dist/core/params.gen.js.map +1 -0
- package/dist/core/pathSerializer.gen.d.ts +34 -0
- package/dist/core/pathSerializer.gen.d.ts.map +1 -0
- package/dist/core/pathSerializer.gen.js +116 -0
- package/dist/core/pathSerializer.gen.js.map +1 -0
- package/dist/core/queryKeySerializer.gen.d.ts +19 -0
- package/dist/core/queryKeySerializer.gen.d.ts.map +1 -0
- package/dist/core/queryKeySerializer.gen.js +99 -0
- package/dist/core/queryKeySerializer.gen.js.map +1 -0
- package/dist/core/serverSentEvents.gen.d.ts +72 -0
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -0
- package/dist/core/serverSentEvents.gen.js +138 -0
- package/dist/core/serverSentEvents.gen.js.map +1 -0
- package/dist/core/types.gen.d.ts +79 -0
- package/dist/core/types.gen.d.ts.map +1 -0
- package/dist/core/types.gen.js +4 -0
- package/dist/core/types.gen.js.map +1 -0
- package/dist/core/utils.gen.d.ts +20 -0
- package/dist/core/utils.gen.d.ts.map +1 -0
- package/dist/core/utils.gen.js +94 -0
- package/dist/core/utils.gen.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -0
- package/dist/schemas.gen.d.ts +541 -0
- package/dist/schemas.gen.d.ts.map +1 -0
- package/dist/schemas.gen.js +692 -0
- package/dist/schemas.gen.js.map +1 -0
- package/dist/sdk.gen.d.ts +38 -0
- package/dist/sdk.gen.d.ts.map +1 -0
- package/dist/sdk.gen.js +40 -0
- package/dist/sdk.gen.js.map +1 -0
- package/dist/types.gen.d.ts +479 -0
- package/dist/types.gen.d.ts.map +1 -0
- package/dist/types.gen.js +4 -0
- package/dist/types.gen.js.map +1 -0
- package/package.json +36 -0
|
@@ -0,0 +1,692 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.VideoMetadataModelSchema = exports.ValidationErrorSchema = exports.SpriteMetadataModelSchema = exports.ResultsMetadataModelSchema = exports.ProcessingMetadataModelSchema = exports.ModelMetadataModelSchema = exports.JobStatusResponseSchema = exports.JobCompletedWebhookSchema = exports.HealthResponseSchema = exports.HTTPValidationErrorSchema = exports.DetectionStatisticsModelSchema = exports.DetectionResultsModelSchema = exports.DetectionObjectModelSchema = exports.DetectionFrameModelSchema = exports.BoundingBoxModelSchema = exports.AnalysisResponseSchema = exports.AnalysisRequestSchema = void 0;
|
|
5
|
+
exports.AnalysisRequestSchema = {
|
|
6
|
+
properties: {
|
|
7
|
+
project_id: {
|
|
8
|
+
type: 'string',
|
|
9
|
+
title: 'Project Id',
|
|
10
|
+
description: 'Project identifier'
|
|
11
|
+
},
|
|
12
|
+
video_url: {
|
|
13
|
+
type: 'string',
|
|
14
|
+
title: 'Video Url',
|
|
15
|
+
description: 'URL or path to video file'
|
|
16
|
+
},
|
|
17
|
+
similarity_threshold: {
|
|
18
|
+
type: 'number',
|
|
19
|
+
maximum: 1,
|
|
20
|
+
minimum: 0,
|
|
21
|
+
title: 'Similarity Threshold',
|
|
22
|
+
description: 'Similarity threshold for object tracking',
|
|
23
|
+
default: 0.5
|
|
24
|
+
},
|
|
25
|
+
callback_url: {
|
|
26
|
+
anyOf: [
|
|
27
|
+
{
|
|
28
|
+
type: 'string'
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
type: 'null'
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
title: 'Callback Url',
|
|
35
|
+
description: 'Callback URL for job completion notifications'
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
type: 'object',
|
|
39
|
+
required: [
|
|
40
|
+
'project_id',
|
|
41
|
+
'video_url'
|
|
42
|
+
],
|
|
43
|
+
title: 'AnalysisRequest'
|
|
44
|
+
};
|
|
45
|
+
exports.AnalysisResponseSchema = {
|
|
46
|
+
properties: {
|
|
47
|
+
job_id: {
|
|
48
|
+
type: 'string',
|
|
49
|
+
title: 'Job Id'
|
|
50
|
+
},
|
|
51
|
+
status: {
|
|
52
|
+
type: 'string',
|
|
53
|
+
title: 'Status'
|
|
54
|
+
},
|
|
55
|
+
queue_position: {
|
|
56
|
+
type: 'integer',
|
|
57
|
+
title: 'Queue Position'
|
|
58
|
+
},
|
|
59
|
+
message: {
|
|
60
|
+
type: 'string',
|
|
61
|
+
title: 'Message'
|
|
62
|
+
},
|
|
63
|
+
callback_url: {
|
|
64
|
+
anyOf: [
|
|
65
|
+
{
|
|
66
|
+
type: 'string'
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
type: 'null'
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
title: 'Callback Url'
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
type: 'object',
|
|
76
|
+
required: [
|
|
77
|
+
'job_id',
|
|
78
|
+
'status',
|
|
79
|
+
'queue_position',
|
|
80
|
+
'message',
|
|
81
|
+
'callback_url'
|
|
82
|
+
],
|
|
83
|
+
title: 'AnalysisResponse'
|
|
84
|
+
};
|
|
85
|
+
exports.BoundingBoxModelSchema = {
|
|
86
|
+
properties: {
|
|
87
|
+
x: {
|
|
88
|
+
type: 'integer',
|
|
89
|
+
title: 'X'
|
|
90
|
+
},
|
|
91
|
+
y: {
|
|
92
|
+
type: 'integer',
|
|
93
|
+
title: 'Y'
|
|
94
|
+
},
|
|
95
|
+
width: {
|
|
96
|
+
type: 'integer',
|
|
97
|
+
title: 'Width'
|
|
98
|
+
},
|
|
99
|
+
height: {
|
|
100
|
+
type: 'integer',
|
|
101
|
+
title: 'Height'
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
type: 'object',
|
|
105
|
+
required: [
|
|
106
|
+
'x',
|
|
107
|
+
'y',
|
|
108
|
+
'width',
|
|
109
|
+
'height'
|
|
110
|
+
],
|
|
111
|
+
title: 'BoundingBoxModel'
|
|
112
|
+
};
|
|
113
|
+
exports.DetectionFrameModelSchema = {
|
|
114
|
+
properties: {
|
|
115
|
+
frame_idx: {
|
|
116
|
+
type: 'integer',
|
|
117
|
+
title: 'Frame Idx'
|
|
118
|
+
},
|
|
119
|
+
timestamp: {
|
|
120
|
+
type: 'number',
|
|
121
|
+
title: 'Timestamp'
|
|
122
|
+
},
|
|
123
|
+
objects: {
|
|
124
|
+
items: {
|
|
125
|
+
$ref: '#/components/schemas/DetectionObjectModel'
|
|
126
|
+
},
|
|
127
|
+
type: 'array',
|
|
128
|
+
title: 'Objects'
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
type: 'object',
|
|
132
|
+
required: [
|
|
133
|
+
'frame_idx',
|
|
134
|
+
'timestamp',
|
|
135
|
+
'objects'
|
|
136
|
+
],
|
|
137
|
+
title: 'DetectionFrameModel'
|
|
138
|
+
};
|
|
139
|
+
exports.DetectionObjectModelSchema = {
|
|
140
|
+
properties: {
|
|
141
|
+
id: {
|
|
142
|
+
type: 'string',
|
|
143
|
+
title: 'Id'
|
|
144
|
+
},
|
|
145
|
+
class_name: {
|
|
146
|
+
type: 'string',
|
|
147
|
+
title: 'Class Name'
|
|
148
|
+
},
|
|
149
|
+
confidence: {
|
|
150
|
+
type: 'number',
|
|
151
|
+
title: 'Confidence'
|
|
152
|
+
},
|
|
153
|
+
bbox: {
|
|
154
|
+
$ref: '#/components/schemas/BoundingBoxModel'
|
|
155
|
+
},
|
|
156
|
+
thumbnail: {
|
|
157
|
+
type: 'string',
|
|
158
|
+
title: 'Thumbnail'
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
type: 'object',
|
|
162
|
+
required: [
|
|
163
|
+
'id',
|
|
164
|
+
'class_name',
|
|
165
|
+
'confidence',
|
|
166
|
+
'bbox',
|
|
167
|
+
'thumbnail'
|
|
168
|
+
],
|
|
169
|
+
title: 'DetectionObjectModel'
|
|
170
|
+
};
|
|
171
|
+
exports.DetectionResultsModelSchema = {
|
|
172
|
+
properties: {
|
|
173
|
+
version: {
|
|
174
|
+
type: 'string',
|
|
175
|
+
title: 'Version'
|
|
176
|
+
},
|
|
177
|
+
metadata: {
|
|
178
|
+
$ref: '#/components/schemas/ResultsMetadataModel'
|
|
179
|
+
},
|
|
180
|
+
frames: {
|
|
181
|
+
items: {
|
|
182
|
+
$ref: '#/components/schemas/DetectionFrameModel'
|
|
183
|
+
},
|
|
184
|
+
type: 'array',
|
|
185
|
+
title: 'Frames'
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
type: 'object',
|
|
189
|
+
required: [
|
|
190
|
+
'version',
|
|
191
|
+
'metadata',
|
|
192
|
+
'frames'
|
|
193
|
+
],
|
|
194
|
+
title: 'DetectionResultsModel'
|
|
195
|
+
};
|
|
196
|
+
exports.DetectionStatisticsModelSchema = {
|
|
197
|
+
properties: {
|
|
198
|
+
total_detections: {
|
|
199
|
+
anyOf: [
|
|
200
|
+
{
|
|
201
|
+
type: 'integer'
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
type: 'null'
|
|
205
|
+
}
|
|
206
|
+
],
|
|
207
|
+
title: 'Total Detections'
|
|
208
|
+
},
|
|
209
|
+
person_detections: {
|
|
210
|
+
anyOf: [
|
|
211
|
+
{
|
|
212
|
+
type: 'integer'
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
type: 'null'
|
|
216
|
+
}
|
|
217
|
+
],
|
|
218
|
+
title: 'Person Detections'
|
|
219
|
+
},
|
|
220
|
+
person_with_face: {
|
|
221
|
+
anyOf: [
|
|
222
|
+
{
|
|
223
|
+
type: 'integer'
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
type: 'null'
|
|
227
|
+
}
|
|
228
|
+
],
|
|
229
|
+
title: 'Person With Face'
|
|
230
|
+
},
|
|
231
|
+
person_without_face: {
|
|
232
|
+
anyOf: [
|
|
233
|
+
{
|
|
234
|
+
type: 'integer'
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
type: 'null'
|
|
238
|
+
}
|
|
239
|
+
],
|
|
240
|
+
title: 'Person Without Face'
|
|
241
|
+
},
|
|
242
|
+
other_detections: {
|
|
243
|
+
anyOf: [
|
|
244
|
+
{
|
|
245
|
+
type: 'integer'
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
type: 'null'
|
|
249
|
+
}
|
|
250
|
+
],
|
|
251
|
+
title: 'Other Detections'
|
|
252
|
+
},
|
|
253
|
+
class_counts: {
|
|
254
|
+
anyOf: [
|
|
255
|
+
{
|
|
256
|
+
additionalProperties: {
|
|
257
|
+
type: 'integer'
|
|
258
|
+
},
|
|
259
|
+
type: 'object'
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
type: 'null'
|
|
263
|
+
}
|
|
264
|
+
],
|
|
265
|
+
title: 'Class Counts'
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
type: 'object',
|
|
269
|
+
title: 'DetectionStatisticsModel'
|
|
270
|
+
};
|
|
271
|
+
exports.HTTPValidationErrorSchema = {
|
|
272
|
+
properties: {
|
|
273
|
+
detail: {
|
|
274
|
+
items: {
|
|
275
|
+
$ref: '#/components/schemas/ValidationError'
|
|
276
|
+
},
|
|
277
|
+
type: 'array',
|
|
278
|
+
title: 'Detail'
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
type: 'object',
|
|
282
|
+
title: 'HTTPValidationError'
|
|
283
|
+
};
|
|
284
|
+
exports.HealthResponseSchema = {
|
|
285
|
+
properties: {
|
|
286
|
+
status: {
|
|
287
|
+
type: 'string',
|
|
288
|
+
title: 'Status'
|
|
289
|
+
},
|
|
290
|
+
timestamp: {
|
|
291
|
+
type: 'string',
|
|
292
|
+
title: 'Timestamp'
|
|
293
|
+
},
|
|
294
|
+
queue_size: {
|
|
295
|
+
type: 'integer',
|
|
296
|
+
title: 'Queue Size'
|
|
297
|
+
},
|
|
298
|
+
processing_jobs: {
|
|
299
|
+
type: 'integer',
|
|
300
|
+
title: 'Processing Jobs'
|
|
301
|
+
},
|
|
302
|
+
current_job: {
|
|
303
|
+
anyOf: [
|
|
304
|
+
{
|
|
305
|
+
type: 'string'
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
type: 'null'
|
|
309
|
+
}
|
|
310
|
+
],
|
|
311
|
+
title: 'Current Job'
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
type: 'object',
|
|
315
|
+
required: [
|
|
316
|
+
'status',
|
|
317
|
+
'timestamp',
|
|
318
|
+
'queue_size',
|
|
319
|
+
'processing_jobs',
|
|
320
|
+
'current_job'
|
|
321
|
+
],
|
|
322
|
+
title: 'HealthResponse'
|
|
323
|
+
};
|
|
324
|
+
exports.JobCompletedWebhookSchema = {
|
|
325
|
+
properties: {
|
|
326
|
+
job_id: {
|
|
327
|
+
type: 'string',
|
|
328
|
+
title: 'Job Id'
|
|
329
|
+
},
|
|
330
|
+
project_id: {
|
|
331
|
+
type: 'string',
|
|
332
|
+
title: 'Project Id'
|
|
333
|
+
},
|
|
334
|
+
status: {
|
|
335
|
+
type: 'string',
|
|
336
|
+
title: 'Status'
|
|
337
|
+
},
|
|
338
|
+
timestamp: {
|
|
339
|
+
type: 'string',
|
|
340
|
+
format: 'date-time',
|
|
341
|
+
title: 'Timestamp'
|
|
342
|
+
}
|
|
343
|
+
},
|
|
344
|
+
type: 'object',
|
|
345
|
+
required: [
|
|
346
|
+
'job_id',
|
|
347
|
+
'project_id',
|
|
348
|
+
'status',
|
|
349
|
+
'timestamp'
|
|
350
|
+
],
|
|
351
|
+
title: 'JobCompletedWebhook'
|
|
352
|
+
};
|
|
353
|
+
exports.JobStatusResponseSchema = {
|
|
354
|
+
properties: {
|
|
355
|
+
job_id: {
|
|
356
|
+
type: 'string',
|
|
357
|
+
title: 'Job Id'
|
|
358
|
+
},
|
|
359
|
+
project_id: {
|
|
360
|
+
type: 'string',
|
|
361
|
+
title: 'Project Id'
|
|
362
|
+
},
|
|
363
|
+
video_url: {
|
|
364
|
+
type: 'string',
|
|
365
|
+
title: 'Video Url'
|
|
366
|
+
},
|
|
367
|
+
similarity_threshold: {
|
|
368
|
+
type: 'number',
|
|
369
|
+
title: 'Similarity Threshold'
|
|
370
|
+
},
|
|
371
|
+
status: {
|
|
372
|
+
type: 'string',
|
|
373
|
+
title: 'Status'
|
|
374
|
+
},
|
|
375
|
+
progress: {
|
|
376
|
+
type: 'number',
|
|
377
|
+
title: 'Progress'
|
|
378
|
+
},
|
|
379
|
+
queue_position: {
|
|
380
|
+
anyOf: [
|
|
381
|
+
{
|
|
382
|
+
type: 'integer'
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
type: 'null'
|
|
386
|
+
}
|
|
387
|
+
],
|
|
388
|
+
title: 'Queue Position'
|
|
389
|
+
},
|
|
390
|
+
estimated_wait_time: {
|
|
391
|
+
anyOf: [
|
|
392
|
+
{
|
|
393
|
+
type: 'string'
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
type: 'null'
|
|
397
|
+
}
|
|
398
|
+
],
|
|
399
|
+
title: 'Estimated Wait Time'
|
|
400
|
+
},
|
|
401
|
+
start_time: {
|
|
402
|
+
anyOf: [
|
|
403
|
+
{
|
|
404
|
+
type: 'string'
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
type: 'null'
|
|
408
|
+
}
|
|
409
|
+
],
|
|
410
|
+
title: 'Start Time'
|
|
411
|
+
},
|
|
412
|
+
end_time: {
|
|
413
|
+
anyOf: [
|
|
414
|
+
{
|
|
415
|
+
type: 'string'
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
type: 'null'
|
|
419
|
+
}
|
|
420
|
+
],
|
|
421
|
+
title: 'End Time'
|
|
422
|
+
},
|
|
423
|
+
result_path: {
|
|
424
|
+
anyOf: [
|
|
425
|
+
{
|
|
426
|
+
type: 'string'
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
type: 'null'
|
|
430
|
+
}
|
|
431
|
+
],
|
|
432
|
+
title: 'Result Path'
|
|
433
|
+
},
|
|
434
|
+
metadata: {
|
|
435
|
+
anyOf: [
|
|
436
|
+
{
|
|
437
|
+
additionalProperties: true,
|
|
438
|
+
type: 'object'
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
type: 'null'
|
|
442
|
+
}
|
|
443
|
+
],
|
|
444
|
+
title: 'Metadata'
|
|
445
|
+
},
|
|
446
|
+
error_message: {
|
|
447
|
+
anyOf: [
|
|
448
|
+
{
|
|
449
|
+
type: 'string'
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
type: 'null'
|
|
453
|
+
}
|
|
454
|
+
],
|
|
455
|
+
title: 'Error Message'
|
|
456
|
+
}
|
|
457
|
+
},
|
|
458
|
+
type: 'object',
|
|
459
|
+
required: [
|
|
460
|
+
'job_id',
|
|
461
|
+
'project_id',
|
|
462
|
+
'video_url',
|
|
463
|
+
'similarity_threshold',
|
|
464
|
+
'status',
|
|
465
|
+
'progress',
|
|
466
|
+
'queue_position',
|
|
467
|
+
'estimated_wait_time',
|
|
468
|
+
'start_time',
|
|
469
|
+
'end_time',
|
|
470
|
+
'result_path',
|
|
471
|
+
'metadata',
|
|
472
|
+
'error_message'
|
|
473
|
+
],
|
|
474
|
+
title: 'JobStatusResponse'
|
|
475
|
+
};
|
|
476
|
+
exports.ModelMetadataModelSchema = {
|
|
477
|
+
properties: {
|
|
478
|
+
name: {
|
|
479
|
+
type: 'string',
|
|
480
|
+
title: 'Name'
|
|
481
|
+
},
|
|
482
|
+
type: {
|
|
483
|
+
type: 'string',
|
|
484
|
+
title: 'Type'
|
|
485
|
+
},
|
|
486
|
+
version: {
|
|
487
|
+
type: 'string',
|
|
488
|
+
title: 'Version'
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
type: 'object',
|
|
492
|
+
required: [
|
|
493
|
+
'name',
|
|
494
|
+
'type',
|
|
495
|
+
'version'
|
|
496
|
+
],
|
|
497
|
+
title: 'ModelMetadataModel'
|
|
498
|
+
};
|
|
499
|
+
exports.ProcessingMetadataModelSchema = {
|
|
500
|
+
properties: {
|
|
501
|
+
start_time: {
|
|
502
|
+
anyOf: [
|
|
503
|
+
{
|
|
504
|
+
type: 'string'
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
type: 'null'
|
|
508
|
+
}
|
|
509
|
+
],
|
|
510
|
+
title: 'Start Time'
|
|
511
|
+
},
|
|
512
|
+
end_time: {
|
|
513
|
+
anyOf: [
|
|
514
|
+
{
|
|
515
|
+
type: 'string'
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
type: 'null'
|
|
519
|
+
}
|
|
520
|
+
],
|
|
521
|
+
title: 'End Time'
|
|
522
|
+
},
|
|
523
|
+
duration_seconds: {
|
|
524
|
+
anyOf: [
|
|
525
|
+
{
|
|
526
|
+
type: 'number'
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
type: 'null'
|
|
530
|
+
}
|
|
531
|
+
],
|
|
532
|
+
title: 'Duration Seconds'
|
|
533
|
+
},
|
|
534
|
+
frames_processed: {
|
|
535
|
+
anyOf: [
|
|
536
|
+
{
|
|
537
|
+
type: 'integer'
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
type: 'null'
|
|
541
|
+
}
|
|
542
|
+
],
|
|
543
|
+
title: 'Frames Processed'
|
|
544
|
+
},
|
|
545
|
+
frames_with_detections: {
|
|
546
|
+
anyOf: [
|
|
547
|
+
{
|
|
548
|
+
type: 'integer'
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
type: 'null'
|
|
552
|
+
}
|
|
553
|
+
],
|
|
554
|
+
title: 'Frames With Detections'
|
|
555
|
+
},
|
|
556
|
+
processing_speed: {
|
|
557
|
+
anyOf: [
|
|
558
|
+
{
|
|
559
|
+
type: 'number'
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
type: 'null'
|
|
563
|
+
}
|
|
564
|
+
],
|
|
565
|
+
title: 'Processing Speed'
|
|
566
|
+
},
|
|
567
|
+
detection_statistics: {
|
|
568
|
+
anyOf: [
|
|
569
|
+
{
|
|
570
|
+
$ref: '#/components/schemas/DetectionStatisticsModel'
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
type: 'null'
|
|
574
|
+
}
|
|
575
|
+
]
|
|
576
|
+
}
|
|
577
|
+
},
|
|
578
|
+
type: 'object',
|
|
579
|
+
title: 'ProcessingMetadataModel'
|
|
580
|
+
};
|
|
581
|
+
exports.ResultsMetadataModelSchema = {
|
|
582
|
+
properties: {
|
|
583
|
+
video: {
|
|
584
|
+
$ref: '#/components/schemas/VideoMetadataModel'
|
|
585
|
+
},
|
|
586
|
+
model: {
|
|
587
|
+
$ref: '#/components/schemas/ModelMetadataModel'
|
|
588
|
+
},
|
|
589
|
+
sprite: {
|
|
590
|
+
$ref: '#/components/schemas/SpriteMetadataModel'
|
|
591
|
+
},
|
|
592
|
+
processing: {
|
|
593
|
+
$ref: '#/components/schemas/ProcessingMetadataModel'
|
|
594
|
+
}
|
|
595
|
+
},
|
|
596
|
+
type: 'object',
|
|
597
|
+
required: [
|
|
598
|
+
'video',
|
|
599
|
+
'model',
|
|
600
|
+
'sprite',
|
|
601
|
+
'processing'
|
|
602
|
+
],
|
|
603
|
+
title: 'ResultsMetadataModel'
|
|
604
|
+
};
|
|
605
|
+
exports.SpriteMetadataModelSchema = {
|
|
606
|
+
properties: {
|
|
607
|
+
path: {
|
|
608
|
+
type: 'string',
|
|
609
|
+
title: 'Path'
|
|
610
|
+
},
|
|
611
|
+
thumbnail_size: {
|
|
612
|
+
items: {
|
|
613
|
+
type: 'integer'
|
|
614
|
+
},
|
|
615
|
+
type: 'array',
|
|
616
|
+
title: 'Thumbnail Size'
|
|
617
|
+
}
|
|
618
|
+
},
|
|
619
|
+
type: 'object',
|
|
620
|
+
required: [
|
|
621
|
+
'path',
|
|
622
|
+
'thumbnail_size'
|
|
623
|
+
],
|
|
624
|
+
title: 'SpriteMetadataModel'
|
|
625
|
+
};
|
|
626
|
+
exports.ValidationErrorSchema = {
|
|
627
|
+
properties: {
|
|
628
|
+
loc: {
|
|
629
|
+
items: {
|
|
630
|
+
anyOf: [
|
|
631
|
+
{
|
|
632
|
+
type: 'string'
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
type: 'integer'
|
|
636
|
+
}
|
|
637
|
+
]
|
|
638
|
+
},
|
|
639
|
+
type: 'array',
|
|
640
|
+
title: 'Location'
|
|
641
|
+
},
|
|
642
|
+
msg: {
|
|
643
|
+
type: 'string',
|
|
644
|
+
title: 'Message'
|
|
645
|
+
},
|
|
646
|
+
type: {
|
|
647
|
+
type: 'string',
|
|
648
|
+
title: 'Error Type'
|
|
649
|
+
}
|
|
650
|
+
},
|
|
651
|
+
type: 'object',
|
|
652
|
+
required: [
|
|
653
|
+
'loc',
|
|
654
|
+
'msg',
|
|
655
|
+
'type'
|
|
656
|
+
],
|
|
657
|
+
title: 'ValidationError'
|
|
658
|
+
};
|
|
659
|
+
exports.VideoMetadataModelSchema = {
|
|
660
|
+
properties: {
|
|
661
|
+
fps: {
|
|
662
|
+
type: 'number',
|
|
663
|
+
title: 'Fps'
|
|
664
|
+
},
|
|
665
|
+
frame_count: {
|
|
666
|
+
type: 'integer',
|
|
667
|
+
title: 'Frame Count'
|
|
668
|
+
},
|
|
669
|
+
width: {
|
|
670
|
+
type: 'integer',
|
|
671
|
+
title: 'Width'
|
|
672
|
+
},
|
|
673
|
+
height: {
|
|
674
|
+
type: 'integer',
|
|
675
|
+
title: 'Height'
|
|
676
|
+
},
|
|
677
|
+
source: {
|
|
678
|
+
type: 'string',
|
|
679
|
+
title: 'Source'
|
|
680
|
+
}
|
|
681
|
+
},
|
|
682
|
+
type: 'object',
|
|
683
|
+
required: [
|
|
684
|
+
'fps',
|
|
685
|
+
'frame_count',
|
|
686
|
+
'width',
|
|
687
|
+
'height',
|
|
688
|
+
'source'
|
|
689
|
+
],
|
|
690
|
+
title: 'VideoMetadataModel'
|
|
691
|
+
};
|
|
692
|
+
//# sourceMappingURL=schemas.gen.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schemas.gen.js","sourceRoot":"","sources":["../client/schemas.gen.ts"],"names":[],"mappings":"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"}
|