-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathrt-face-detection.yml
More file actions
62 lines (60 loc) · 1.46 KB
/
rt-face-detection.yml
File metadata and controls
62 lines (60 loc) · 1.46 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
openapi: 3.0.4
components:
schemas:
FaceDetectionItem:
title: "FaceDetectionItem"
type: object
properties:
FaceDetection:
$ref: "#/components/schemas/FaceDetection"
FaceDetection:
title: "FaceDetection"
type: object
required:
- Count
- CountFalseDetection
- Res
properties:
Count:
type: integer
CountFalseDetection:
type: integer
Res:
type: array
items:
$ref: "#/components/schemas/FaceItem"
Reserved1:
type: integer
Reserved2:
type: integer
FaceItem:
title: "FaceItem"
type: object
required:
- CoincidenceToPhotoArea
- FaceRect
- FieldRect
- GraphFieldNumber
- Landmarks
- LightType
- Orientation
- Probability
properties:
CoincidenceToPhotoArea:
type: integer
FaceRect:
$ref: "./common.yml#/components/schemas/RectangleCoordinates"
FieldRect:
$ref: "./common.yml#/components/schemas/RectangleCoordinates"
GraphFieldNumber:
type: integer
Landmarks:
type: array
items:
$ref: "./common.yml#/components/schemas/Point"
LightType:
$ref: "./common.yml#/components/schemas/Light"
Orientation:
type: integer
Probability:
type: integer