Scanbot SDK
Loading...
Searching...
No Matches
ScanbotSDKTextPatternScanner.h
Go to the documentation of this file.
1// Auto-generated with ScanbotSDKCodegenV3. Modifications will be overwritten.
2// Generated from SchemasV3/CoreSchemas/schemas/TextPatternScanner.yaml
6
7#pragma once
8#ifndef SCANBOTSDK_TEXTPATTERNSCANNER_H
9#define SCANBOTSDK_TEXTPATTERNSCANNER_H
10
11
12#include <ScanbotSDKImage.h>
13#include <stdbool.h>
14#include <stddef.h>
15#include <stdint.h>
17#include <ScanbotSDKErrorCode.h>
18#include <ScanbotSDKDefs.h>
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24
33
47);
48
57);
58
72 scanbotsdk_image_t* image,
74);
75
86);
87
88
89#ifdef __cplusplus
90} /* extern "C" */
91#endif
92
93#endif /* SCANBOTSDK_TEXTPATTERNSCANNER_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
struct scanbotsdk_text_pattern_scanner_t scanbotsdk_text_pattern_scanner_t
scanbotsdk_text_pattern_scanner_t class
Definition ScanbotSDKTextPatternScanner.h:32
SBSDK_API scanbotsdk_error_code_t scanbotsdk_text_pattern_scanner_free(scanbotsdk_text_pattern_scanner_t *self)
Frees the memory allocated for the instance of scanbotsdk_text_pattern_scanner_t. If null is passed,...
struct scanbotsdk_text_pattern_scanner_configuration_t scanbotsdk_text_pattern_scanner_configuration_t
scanbotsdk_text_pattern_scanner_configuration_t class
Definition ScanbotSDKTextPatternScannerTypes.h:527
SBSDK_API scanbotsdk_error_code_t scanbotsdk_text_pattern_scanner_create(scanbotsdk_text_pattern_scanner_configuration_t *configuration, scanbotsdk_text_pattern_scanner_t **result)
Creates a new instance of scanbotsdk_text_pattern_scanner with given params and stores it in the loca...
SBSDK_API scanbotsdk_error_code_t scanbotsdk_text_pattern_scanner_run(scanbotsdk_text_pattern_scanner_t *self, scanbotsdk_image_t *image, scanbotsdk_text_pattern_scanner_result_t **result)
Recognize text line in the given image.
SBSDK_API scanbotsdk_error_code_t scanbotsdk_text_pattern_scanner_clean_recognition_queue(scanbotsdk_text_pattern_scanner_t *self)
Clean the queue of recognize text lines.
struct scanbotsdk_text_pattern_scanner_result_t scanbotsdk_text_pattern_scanner_result_t
scanbotsdk_text_pattern_scanner_result_t class
Definition ScanbotSDKTextPatternScannerTypes.h:150