Scanbot SDK
Loading...
Searching...
No Matches
ScanbotSDKOcrEngine.h
Go to the documentation of this file.
1// Auto-generated with ScanbotSDKCodegenV3. Modifications will be overwritten.
2// Generated from SchemasV3/CoreSchemas/schemas/OCREngine.yaml
6
7#pragma once
8#ifndef SCANBOTSDK_OCRENGINE_H
9#define SCANBOTSDK_OCRENGINE_H
10
11
12#include <ScanbotSDKImage.h>
14#include <stdbool.h>
15#include <stddef.h>
16#include <stdint.h>
17#include <ScanbotSDKErrorCode.h>
18#include <ScanbotSDKDefs.h>
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24
33
44);
45
54);
55
69 scanbotsdk_image_t* image,
70 scanbotsdk_page_t** result
71);
72
73
74#ifdef __cplusplus
75} /* extern "C" */
76#endif
77
78#endif /* SCANBOTSDK_OCRENGINE_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_page_t scanbotsdk_page_t
scanbotsdk_page_t class
Definition ScanbotSDKOcrTypes.h:404
SBSDK_API scanbotsdk_error_code_t scanbotsdk_ocr_engine_free(scanbotsdk_ocr_engine_t *self)
Frees the memory allocated for the instance of scanbotsdk_ocr_engine_t. If null is passed,...
SBSDK_API scanbotsdk_error_code_t scanbotsdk_ocr_engine_create(scanbotsdk_ocr_engine_t **result)
Creates a new instance of scanbotsdk_ocr_engine with given params and stores it in the location speci...
SBSDK_API scanbotsdk_error_code_t scanbotsdk_ocr_engine_run(scanbotsdk_ocr_engine_t *self, scanbotsdk_image_t *image, scanbotsdk_page_t **result)
Recognize text in the given image.
struct scanbotsdk_ocr_engine_t scanbotsdk_ocr_engine_t
scanbotsdk_ocr_engine_t class
Definition ScanbotSDKOcrEngine.h:32