8#ifndef SCANBOTSDK_VINSCANNER_H
9#define SCANBOTSDK_VINSCANNER_H
18#include <ScanbotSDKDefs.h>
ScanbotSDK Error Code C API.
scanbotsdk_error_code_t
The error codes returned by most of the Scanbot SDK functions.
Definition ScanbotSDKErrorCode.h:25
ScanbotSDK Image Ref C API.
struct scanbotsdk_image_t scanbotsdk_image_t
Represents an instance of the opaque image.
Definition ScanbotSDKImage.h:31
SBSDK_API scanbotsdk_error_code_t scanbotsdk_vin_scanner_clean_recognition_queue(scanbotsdk_vin_scanner_t *self)
Clean the queue of recognized VIN.
SBSDK_API scanbotsdk_error_code_t scanbotsdk_vin_scanner_create(scanbotsdk_vin_scanner_configuration_t *configuration, scanbotsdk_vin_scanner_t **result)
Creates a new instance of scanbotsdk_vin_scanner with given params and stores it in the location spec...
SBSDK_API scanbotsdk_error_code_t scanbotsdk_vin_scanner_run(scanbotsdk_vin_scanner_t *self, scanbotsdk_image_t *image, scanbotsdk_vin_scanner_result_t **result)
Recognize VIN in the given image.
struct scanbotsdk_vin_scanner_configuration_t scanbotsdk_vin_scanner_configuration_t
scanbotsdk_vin_scanner_configuration_t class
Definition ScanbotSDKVinScannerTypes.h:152
struct scanbotsdk_vin_scanner_result_t scanbotsdk_vin_scanner_result_t
scanbotsdk_vin_scanner_result_t class
Definition ScanbotSDKVinScannerTypes.h:116
struct scanbotsdk_vin_scanner_t scanbotsdk_vin_scanner_t
scanbotsdk_vin_scanner_t class
Definition ScanbotSDKVinScanner.h:30
SBSDK_API scanbotsdk_error_code_t scanbotsdk_vin_scanner_free(scanbotsdk_vin_scanner_t *self)
Frees the memory allocated for the instance of scanbotsdk_vin_scanner_t. If null is passed,...