BlinkID C SDK version 5.16.0
|
A recognizer that can scan and parse identity cards. More...
#include <IdBarcodeRecognizer.h>
Public Member Functions | |
MB_API MBRecognizerErrorStatus MB_CALL | barcodeIdRecognizerCreate (MBIdBarcodeRecognizer **barcodeIdRecognizer) |
Allocates and initializes new IDBarcodeRecognizer object. More... | |
MB_API MBRecognizerErrorStatus MB_CALL | barcodeIdRecognizerResult (MBIdBarcodeRecognizerResult *result, MBIdBarcodeRecognizer const *barcodeIdRecognizer) |
Obtains the result from the given IDBarcodeRecognizer object. More... | |
MB_API MBRecognizerErrorStatus MB_CALL | barcodeIdRecognizerDelete (MBIdBarcodeRecognizer **barcodeIdRecognizer) |
Destroys the given IDBarcodeRecognizer. More... | |
A recognizer that can scan and parse identity cards.
Typedef for the MBIdBarcodeRecognizer structure.
MB_API MBRecognizerErrorStatus MB_CALL barcodeIdRecognizerCreate | ( | MBIdBarcodeRecognizer ** | barcodeIdRecognizer | ) |
Allocates and initializes new IDBarcodeRecognizer object.
barcodeIdRecognizer | Pointer to pointer referencing the created IDBarcodeRecognizer object. |
MB_API MBRecognizerErrorStatus MB_CALL barcodeIdRecognizerDelete | ( | MBIdBarcodeRecognizer ** | barcodeIdRecognizer | ) |
Destroys the given IDBarcodeRecognizer.
barcodeIdRecognizer | Pointer to pointer to IDBarcodeRecognizer structure that needs to be destroyed. After destruction, the pointer to IDBarcodeRecognizer structure will be set to NULL. |
MB_API MBRecognizerErrorStatus MB_CALL barcodeIdRecognizerResult | ( | MBIdBarcodeRecognizerResult * | result, |
MBIdBarcodeRecognizer const * | barcodeIdRecognizer | ||
) |
Obtains the result from the given IDBarcodeRecognizer object.
result | IDBarcodeRecognizerResult structure that will be filled with the recognized data. Note that all pointers in structure will remain valid until given recognizer is destroyed with barcodeIdRecognizerDelete function or is used for performing the new recognition. |
barcodeIdRecognizer | IDBarcodeRecognizer from which result should be obtained. |