-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathrt-mrz-detector.yml
More file actions
61 lines (58 loc) · 1.26 KB
/
rt-mrz-detector.yml
File metadata and controls
61 lines (58 loc) · 1.26 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
openapi: 3.0.4
components:
schemas:
ResultMRZDetectorItem:
title: "ResultMRZDetectorItem"
type: object
required:
- ResultMRZDetector
properties:
ResultMRZDetector:
$ref: "#/components/schemas/ResultMRZDetector"
ResultMRZDetector:
title: "ResultMRZDetector"
type: object
required:
- MRZFormat
- MRZRows
- MRZRowsNum
- boundingQuadrangle
properties:
MRZFormat:
type: integer
MRZRows:
type: array
items:
$ref: "#/components/schemas/MRZRowsItem"
MRZRowsNum:
type: integer
boundingQuadrangle:
type: array
items:
type: number
MRZRowsItem:
title: "MRZRowsItem"
type: object
required:
- length
- maxLength
- symbols
properties:
length:
type: integer
maxLength:
type: integer
symbols:
type: array
items:
$ref: "#/components/schemas/Symbol"
Symbol:
title: "Symbol"
type: object
required:
- boundingRect
properties:
boundingRect:
type: array
items:
type: integer