ProcessParams

interface ProcessParams {
    alreadyCropped?: boolean;
    authParams?: AuthParams;
    checkAuth?: boolean;
    checkRequiredTextFields?: boolean;
    config?: PerDocumentConfig[];
    convertCase?: TextPostProcessing;
    customParams?: { [key: string]: object };
    dateFormat?: string;
    depersonalizeLog?: boolean;
    deviceId?: number;
    deviceType?: number;
    deviceTypeHex?: string;
    disablePerforationOCR?: boolean;
    documentGroupFilter?: DocumentType[];
    documentIdList?: number[];
    doDetectCan?: boolean;
    doublePageSpread?: boolean;
    faceApi?: FaceApi;
    fastDocDetect?: boolean;
    fieldTypesFilter?: TextFieldType[];
    forceDocFormat?: DocumentFormat;
    forceDocID?: number;
    forceReadMrzBeforeLocate?: boolean;
    generateDoublePageSpreadImage?: boolean;
    generateDTCVC?: boolean;
    generateNumericCodes?: boolean;
    ignoreDeviceIdFromImage?: boolean;
    imageDpiOutMax?: number;
    imageOutputMaxHeight?: number;
    imageOutputMaxWidth?: number;
    imageQa?: ImageQA;
    lcidFilter?: number[];
    lcidIgnoreFilter?: number[];
    log?: boolean;
    logLevel?: LogLevel;
    matchTextFieldMask?: boolean;
    measureSystem?: MeasureSystem;
    minimalHolderAge?: number;
    mrzDetectMode?: MrzDetectModeEnum;
    mrzFormatsFilter?: MRZFormat[];
    multiDocOnImage?: boolean;
    noGraphics?: boolean;
    oneShotIdentification?: boolean;
    parseBarcodes?: boolean;
    processAuth?: number;
    respectImageQuality?: boolean;
    resultTypeOutput?: Result[];
    returnCroppedBarcode?: boolean;
    returnUncroppedImage?: boolean;
    rfid?: ProcessParamsRfid;
    scenario: Scenario;
    selectLongestNames?: boolean;
    shiftExpiryDate?: number;
    splitNames?: boolean;
    strictBarcodeDigitalSignatureCheck?: boolean;
    strictImageQuality?: boolean;
    updateOCRValidityByGlare?: boolean;
    useFaceApi?: boolean;
}

Properties

alreadyCropped?: boolean

This option can be enabled if you know for sure that the image you provide contains already cropped document by its edges. This was designed to process on the server side images captured and cropped on mobile. Disabled by default.

ProcessParams

authParams?: AuthParams

ProcessParams

checkAuth?: boolean

This parameter is used to enable authenticity checks

ProcessParams

checkRequiredTextFields?: boolean

When enabled, each field in template will be checked for value presence and if the field is marked as required, but has no value, it will have 'error' in validity status. Disabled by default.

ProcessParams

This option allows setting additional custom configuration per document type. If recognized document has ID specified in config, processing adjusts according to designated configuration.

ProcessParams

convertCase?: TextPostProcessing

ProcessParams

customParams?: { [key: string]: object }

This option allows passing custom processing parameters that can be implemented in future without changing API.

ProcessParams

dateFormat?: string

This option allows you to set dates format so that solution will return dates in this format. For example, if you supply 'MM/dd/yyyy', and document have printed date '09 JUL 2020' for the date os issue, you will get '07/09/2020' as a result. By default it is set to system locale default (where the service is running).

ProcessParams

depersonalizeLog?: boolean

When enabled, all personal data will be forcibly removed from the logs. Disabled by default.

ProcessParams

deviceId?: number

This parameter is used to specify the document reader device type from which input images were captured. Default 0.

ProcessParams

deviceType?: number

This parameter is used to specify the document reader device type from which input images were captured. Default 0.

ProcessParams

deviceTypeHex?: string

This parameter is used to specify the document reader device type from which input images were captured

ProcessParams

disablePerforationOCR?: boolean

When enabled, OCR of perforated fields in the document template will not be performed. Disabled by default.

ProcessParams

documentGroupFilter?: DocumentType[]

List of specific eligible document types from DocumentType enum to recognize from. You may, for example, specify only passports to be recognized by setting this property. Empty by default.

ProcessParams

documentIdList?: number[]

List of the document ID's to process. All documents will be processed, if empty.

ProcessParams

doDetectCan?: boolean

This parameter allows enabling the CAN (Card Access Number) detection and recognition when using scenarios with document location and MRZ reading, such as the MrzAndLocate scenario.

ProcessParams

doublePageSpread?: boolean

Enable this option if the image you provide contains double page spread of the passport and you want to process both pages in one go. It makes sense to use it for documents that have meaningful information on both pages, like Russian domestic passport, or some others. Disabled by default.

ProcessParams

faceApi?: FaceApi

ProcessParams

fastDocDetect?: boolean

When enabled, shorten the list of candidates to process during document detection in a single image process mode. Reduces processing time for specific backgrounds. Enabled by default.

ProcessParams

fieldTypesFilter?: TextFieldType[]

List of text field types to extract. If empty, all text fields from template will be extracted. Narrowing the list can shorten processing time. Empty by default.

ProcessParams

forceDocFormat?: DocumentFormat

ProcessParams

forceDocID?: number

Force use of specific template ID and skip document type identification step.

ProcessParams

forceReadMrzBeforeLocate?: boolean

When enabled, make sure that in series processing MRZ is located fully inside the result document image, if present on the document. Enabling this option may add extra processing time, by disabling optimizations, but allows more stability in output image quality. Disabled by default.

ProcessParams

generateDoublePageSpreadImage?: boolean

When enabled together with "doublePageSpread" and there is a passport with two pages spread in the image, pages will be cropped, straightened and aligned together, as if the document was captured on a flatbed scanner. Disabled by default.

ProcessParams

generateDTCVC?: boolean

This parameter is used to generate separate DTC-VC data container from RFID session data.

ProcessParams

generateNumericCodes?: boolean

This parameter is used to generate numeric representation for issuing state and nationality codes

ProcessParams

ignoreDeviceIdFromImage?: boolean

This parameter is used to tell the processing engine to ignore any parameters saved in the image when scanned from the document reader device. Default false

ProcessParams

imageDpiOutMax?: number

This parameter controls maximum resolution in dpi of output images. Resolution will remain original in case 0 is supplied. By default is set to return images in response with resolution not greater than 300 dpi for all scenarios except FullAuth. In FullAuth scenario this limit is 1000 dpi by default.

ProcessParams

imageOutputMaxHeight?: number

This parameter allows setting maximum height in pixels of output images and thus reducing image size to desired. Does not change the aspect ratio. Changes disabled if equals to 0. Default 0.

ProcessParams

imageOutputMaxWidth?: number

This parameter allows setting maximum width in pixels of output images and thus reducing image size to desired. Does not change the aspect ratio. Changes disabled if equals to 0. Default 0.

ProcessParams

imageQa?: ImageQA

ProcessParams

lcidFilter?: number[]

The list of LCID types to recognize. If empty, values with all LCID types will be extracted. Empty by default.

ProcessParams

lcidIgnoreFilter?: number[]

The list of LCID types to ignore during the recognition. If empty, values with all LCID types will be extracted. Narrowing down the list can reduce processing time. Empty by default.

ProcessParams

log?: boolean

When enabled, results will contain transaction processing log. Disabled by default

ProcessParams

logLevel?: LogLevel

ProcessParams

matchTextFieldMask?: boolean

When disabled, text field OCR will be done as is and then the recognized value will be matched to the field mask for validity. If enabled, we are trying to read a field value with maximum efforts to match the mask and provide a correctly formatted value, making assumptions based on the provided field mask in the template. Enabled by default.

ProcessParams

measureSystem?: MeasureSystem

ProcessParams

minimalHolderAge?: number

This options allows specifying the minimal age in years of the document holder for the document to be considered valid.

ProcessParams

mrzDetectMode?: MrzDetectModeEnum

ProcessParams

mrzFormatsFilter?: MRZFormat[]

This option allows limiting MRZ formats to be recognized by specifying them in array.

ProcessParams

multiDocOnImage?: boolean

This option allows locating and cropping multiple documents from one image if enabled. Disabled by default.

ProcessParams

noGraphics?: boolean

When enabled, no graphic fields will be cropped from document image. Disabled by default.

ProcessParams

oneShotIdentification?: boolean

This parameter allows processing an image that contains a person and a document and compare the portrait photo from the document with the person's face

ProcessParams

parseBarcodes?: boolean

This option can be disabled to stop parsing after barcode is read. Enabled by default.

ProcessParams

processAuth?: number

Authenticity checks that should be performed regardless of the document type. The available checks are listed in the eRPRM_Authenticity enum. Note that only supported by your license checks can be added.

ProcessParams

respectImageQuality?: boolean

Deprecated. Please use strictImageQuality instead. When enabled, image quality checks status affects document optical and overall status. Disabled by default.

ProcessParams

resultTypeOutput?: Result[]

Types of results to return in response. See 'Result' enum for available options

ProcessParams

returnCroppedBarcode?: boolean

When enabled, returns cropped barcode images for unknown documents. Disabled by default.

ProcessParams

returnUncroppedImage?: boolean

When enabled, returns input images in output. Disabled by default.

ProcessParams

ProcessParams

scenario: Scenario

ProcessParams

selectLongestNames?: boolean

Select the longest value from the different value sources and write it to the value field if comparison is done successfully. The parameter applies this logic to the personal names, such as given name, surname, surname and given name, middle name and etc.

ProcessParams

shiftExpiryDate?: number

This option allows shifting the date of expiry into the future or past for number of months specified. This is useful, for example, in some cases when document might be still valid for some period after original expiration date to prevent negative validity status for such documents. Or by shifting the date to the past will set negative validity for the documents that is about to expire in a specified number of months. 0 by default

ProcessParams

splitNames?: boolean

When enabled, the Surname and GivenNames fields from MRZ will be divided into ft_First_Name, ft_Second_Name, ft_Third_Name, ft_Fourth_Name, ft_Last_Name fields. Disabled by default.

ProcessParams

strictBarcodeDigitalSignatureCheck?: boolean

This parameter if enabled will require all necessary certificates to verify digital signature in barcode data to be present in order for the Barcode format check to succeed.

ProcessParams

strictImageQuality?: boolean

When enabled, the image quality check status affects the document optical and overall status. Disabled by default.

ProcessParams

updateOCRValidityByGlare?: boolean

When enabled, fail OCR field validity, if there is a glare over the text field on the image. Disabled by default.

ProcessParams

useFaceApi?: boolean

This parameter allows comparing faces on Regula Face Web Service

ProcessParams