summaryrefslogtreecommitdiffstats
path: root/modules/image/inc/img_zbar.hpp
blob: 31321759de2606cf4189228e589c81765c46c2b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/******************************************************************************
 *	Copyright (C) 2018	Alejandro Colomar Andrés		      *
 ******************************************************************************/


/******************************************************************************
 ******* include guard ********************************************************
 ******************************************************************************/
# ifndef		VA_IMG_ZBAR_H
	# define	VA_IMG_ZBAR_H


/******************************************************************************
 ******* headers **************************************************************
 ******************************************************************************/
/* Packages ------------------------------------------------------------------*/
		/* openCV */
	#include <opencv2/opencv.hpp>


/******************************************************************************
 ******* enums ****************************************************************
 ******************************************************************************/
	enum	Img_ZB_Action {
		IMG_ZB_ACT_FOO = 0,

		IMG_ZB_ACT_ZB = 0x0200,
		IMG_ZB_ACT_DECODE
	};


/******************************************************************************
 ******* functions ************************************************************
 ******************************************************************************/
void	img_zb_act	(class cv::Mat  *imgptr, int action, void *data);


/******************************************************************************
 ******* include guard ********************************************************
 ******************************************************************************/
# endif			/* img_zbar.h */


/******************************************************************************
 ******* end of file **********************************************************
 ******************************************************************************/