EstervQrCode 1.1.1
Library for qr code manipulation
interface.h
1 #ifndef OPENCV_IMGPROC_HAL_INTERFACE_H
2 #define OPENCV_IMGPROC_HAL_INTERFACE_H
3 
6 
10 #define CV_HAL_INTER_NEAREST 0
11 #define CV_HAL_INTER_LINEAR 1
12 #define CV_HAL_INTER_CUBIC 2
13 #define CV_HAL_INTER_AREA 3
14 #define CV_HAL_INTER_LANCZOS4 4
16 
20 #define CV_HAL_MORPH_ERODE 0
21 #define CV_HAL_MORPH_DILATE 1
23 
27 #define CV_HAL_THRESH_BINARY 0
28 #define CV_HAL_THRESH_BINARY_INV 1
29 #define CV_HAL_THRESH_TRUNC 2
30 #define CV_HAL_THRESH_TOZERO 3
31 #define CV_HAL_THRESH_TOZERO_INV 4
32 #define CV_HAL_THRESH_MASK 7
33 #define CV_HAL_THRESH_OTSU 8
34 #define CV_HAL_THRESH_TRIANGLE 16
36 
40 #define CV_HAL_ADAPTIVE_THRESH_MEAN_C 0
41 #define CV_HAL_ADAPTIVE_THRESH_GAUSSIAN_C 1
43 
45 
46 #endif