8#ifndef SCANBOTSDK_BARCODESCANNER_H
9#define SCANBOTSDK_BARCODESCANNER_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_barcode_scanner_configuration_t scanbotsdk_barcode_scanner_configuration_t
scanbotsdk_barcode_scanner_configuration_t class
Definition ScanbotSDKBarcodeScannerTypes.h:501
struct scanbotsdk_barcode_scanner_t scanbotsdk_barcode_scanner_t
scanbotsdk_barcode_scanner_t class
Definition ScanbotSDKBarcodeScanner.h:32
struct scanbotsdk_barcode_scanner_result_t scanbotsdk_barcode_scanner_result_t
scanbotsdk_barcode_scanner_result_t class
Definition ScanbotSDKBarcodeScannerTypes.h:827
SBSDK_API scanbotsdk_error_code_t scanbotsdk_barcode_scanner_create(scanbotsdk_barcode_scanner_configuration_t *configuration, scanbotsdk_barcode_scanner_t **result)
Creates a new instance of scanbotsdk_barcode_scanner with given params and stores it in the location ...
SBSDK_API scanbotsdk_error_code_t scanbotsdk_barcode_scanner_clear_frame_accumulation_cache(scanbotsdk_barcode_scanner_t *self)
Clear the cache of the barcode frame accumulator.
SBSDK_API scanbotsdk_error_code_t scanbotsdk_barcode_scanner_run(scanbotsdk_barcode_scanner_t *self, scanbotsdk_image_t *image, scanbotsdk_barcode_scanner_result_t **result)
Recognize barcodes in the given image.
SBSDK_API scanbotsdk_error_code_t scanbotsdk_barcode_scanner_free(scanbotsdk_barcode_scanner_t *self)
Frees the memory allocated for the instance of scanbotsdk_barcode_scanner_t. If null is passed,...
struct scanbotsdk_image_t scanbotsdk_image_t
Represents an instance of the opaque image.
Definition ScanbotSDKImage.h:31