Added Qt help generation support

This commit is contained in:
Maksim Shabunin
2014-12-26 18:39:40 +03:00
parent 3ffae9f7b7
commit 11591b3e9d
5 changed files with 16 additions and 9 deletions

View File

@@ -271,7 +271,8 @@ enum InterpolationFlags{
WARP_INVERSE_MAP = 16
};
enum { INTER_BITS = 5,
enum InterpolationMasks {
INTER_BITS = 5,
INTER_BITS2 = INTER_BITS * 2,
INTER_TAB_SIZE = 1 << INTER_BITS,
INTER_TAB_SIZE2 = INTER_TAB_SIZE * INTER_TAB_SIZE
@@ -329,7 +330,8 @@ enum AdaptiveThresholdTypes {
};
//! cv::undistort mode
enum { PROJ_SPHERICAL_ORTHO = 0,
enum UndistortTypes {
PROJ_SPHERICAL_ORTHO = 0,
PROJ_SPHERICAL_EQRECT = 1
};