summaryrefslogtreecommitdiffstats
path: root/inc/vision-artificial/image/ocr.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/vision-artificial/image/ocr.h')
-rw-r--r--inc/vision-artificial/image/ocr.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/inc/vision-artificial/image/ocr.h b/inc/vision-artificial/image/ocr.h
new file mode 100644
index 0000000..adf30b9
--- /dev/null
+++ b/inc/vision-artificial/image/ocr.h
@@ -0,0 +1,64 @@
+/******************************************************************************
+ * Copyright (C) 2018 Alejandro Colomar Andrés *
+ * SPDX-License-Identifier: GPL-2.0-only *
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* include guard ********************************************************
+ ******************************************************************************/
+#ifndef VA_IMAGE_OCR_H
+#define VA_IMAGE_OCR_H
+
+
+/******************************************************************************
+ ******* headers **************************************************************
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* macros ***************************************************************
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* enums ****************************************************************
+ ******************************************************************************/
+enum Img_OCR_Action {
+ IMG_OCR_ACT_FOO = 0x000000u,
+
+ IMG_OCR_ACT_OCR = 0x001000u,
+ IMG_OCR_ACT_READ
+};
+
+
+/******************************************************************************
+ ******* structs / unions *****************************************************
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* extern functions *****************************************************
+ ******************************************************************************/
+void img_ocr_act (int action, const void *data);
+
+
+/******************************************************************************
+ ******* static inline functions (prototypes) *********************************
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* static inline functions (definitions) ********************************
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* include guard ********************************************************
+ ******************************************************************************/
+#endif /* vision-artificial/image/ocr.h */
+
+
+/******************************************************************************
+ ******* end of file **********************************************************
+ ******************************************************************************/