8#ifndef SCANBOTSDK_DOCUMENTCLASSIFIER_H
9#define SCANBOTSDK_DOCUMENTCLASSIFIER_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.
SBSDK_API scanbotsdk_error_code_t scanbotsdk_document_classifier_create(scanbotsdk_document_classifier_configuration_t *configuration, scanbotsdk_document_classifier_t **result)
Creates a new instance of scanbotsdk_document_classifier with given params and stores it in the locat...
struct scanbotsdk_document_classifier_t scanbotsdk_document_classifier_t
scanbotsdk_document_classifier_t class
Definition ScanbotSDKDocumentClassifier.h:32
struct scanbotsdk_document_classifier_result_t scanbotsdk_document_classifier_result_t
scanbotsdk_document_classifier_result_t class
Definition ScanbotSDKDocumentClassifierTypes.h:146
struct scanbotsdk_document_classifier_configuration_t scanbotsdk_document_classifier_configuration_t
scanbotsdk_document_classifier_configuration_t class
Definition ScanbotSDKDocumentClassifierTypes.h:29
SBSDK_API scanbotsdk_error_code_t scanbotsdk_document_classifier_free(scanbotsdk_document_classifier_t *self)
Frees the memory allocated for the instance of scanbotsdk_document_classifier_t. If null is passed,...
SBSDK_API scanbotsdk_error_code_t scanbotsdk_document_classifier_run(scanbotsdk_document_classifier_t *self, scanbotsdk_image_t *image, scanbotsdk_document_classifier_result_t **result)
Classify the document in the given image.
struct scanbotsdk_image_t scanbotsdk_image_t
Represents an instance of the opaque image.
Definition ScanbotSDKImage.h:31