Skip to content

Commit 9944a12

Browse files
committed
add mrz format filter
1 parent a283962 commit 9944a12

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

p-process.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,9 +288,31 @@ components:
288288
description: "This option allows returning input images in output if enabled."
289289
type: boolean
290290
# default false
291+
mrzFormatsFilter:
292+
description: "This option allows limiting MRZ formats to be recognized by specifying them in array."
293+
type: array
294+
items:
295+
$ref: '#/components/schemas/MRZFormat'
291296
required:
292297
- scenario
293298

299+
MRZFormat:
300+
type: string
301+
enum:
302+
- '1x30'
303+
- '3x30'
304+
- '2x36'
305+
- '2x44'
306+
- '1x6'
307+
- '2x30'
308+
x-enum-varnames:
309+
- 'IDL'
310+
- 'ID1'
311+
- 'ID2'
312+
- 'ID3'
313+
- 'CAN'
314+
- 'ID1_2_30'
315+
294316
MeasureSystem:
295317
type: integer
296318
example: 0

0 commit comments

Comments
 (0)