|
| 1 | +/* tslint:disable */ |
| 2 | +/* eslint-disable */ |
| 3 | +/** |
| 4 | + * Regula Document Reader Web API |
| 5 | + * Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core |
| 6 | + * |
| 7 | + * The version of the OpenAPI document: 7.2.0 |
| 8 | + * |
| 9 | + * |
| 10 | + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). |
| 11 | + * https://openapi-generator.tech |
| 12 | + * Do not edit the class manually. |
| 13 | + */ |
| 14 | + |
| 15 | + |
| 16 | + |
| 17 | +/** |
| 18 | + * Input image quality checks for the document processing |
| 19 | + * @export |
| 20 | + * @enum {string} |
| 21 | + */ |
| 22 | +export enum InputImageQualityChecks { |
| 23 | + /** |
| 24 | + * Signals glare presence on the image |
| 25 | + */ |
| 26 | + Glares = 'glaresCheck', |
| 27 | + /** |
| 28 | + * Signals whether image is in focus |
| 29 | + */ |
| 30 | + Focus = 'focusCheck', |
| 31 | + /** |
| 32 | + * Signals if image resolution is below threshold |
| 33 | + */ |
| 34 | + Resolution = 'dpiThreshold', |
| 35 | + /** |
| 36 | + * Signals if image is colorless |
| 37 | + */ |
| 38 | + Colorness = 'colornessCheck', |
| 39 | + /** |
| 40 | + * Signals if document in the image has prespective distortion above threshold |
| 41 | + */ |
| 42 | + Perspective = 'perspectiveCheck', |
| 43 | + /** |
| 44 | + * Signals if document is not fully present in the image |
| 45 | + */ |
| 46 | + Bounds = 'documentPosition', |
| 47 | + /** |
| 48 | + * Signals if the portrait is present |
| 49 | + */ |
| 50 | + Portrait = 'portraitCheck', |
| 51 | + /** |
| 52 | + * Signals if the document image is bright enough |
| 53 | + */ |
| 54 | + Brightness = 'brightnessCheck' |
| 55 | +} |
| 56 | + |
| 57 | + |
| 58 | + |
0 commit comments