Searched refs:acctype (Results 1 – 4 of 4) sorted by relevance
/external/opencv/cxcore/src/ |
D | cxsumpixels.cpp | 682 #define ICV_ACC_ROWS_FUNC( name, flavor, arrtype, acctype, \ argument 686 acctype* dst, CvSize size ) \ 699 acctype s0 = load_macro(src[i]); \ 700 acctype s1 = load_macro(src[i+1]); \ 701 acctype a0 = dst[i], a1 = dst[i+1]; \ 702 a0 = (acctype)__op__(a0,s0); a1 = (acctype)__op__(a1,s1); \ 708 a0 = (acctype)__op__(a0,s0); a1 = (acctype)__op__(a1,s1); \ 714 acctype s0 = load_macro(src[i]), a0 = dst[i]; \ 715 a0 = (acctype)__op__(a0,s0); \ 724 #define ICV_ACC_COLS_FUNC_C1( name, flavor, arrtype, worktype, acctype, __op__ )\ argument [all …]
|
/external/opencv/cv/src/ |
D | _cvipp.h | 102 #define IPCV_ACCUM( flavor, arrtype, acctype ) \ argument 105 ( const arrtype* src, int srcstep, acctype* dst, int dststep, CvSize size )) \ 108 ( const arrtype* src, int srcstep, acctype* dst, int dststep, CvSize size )) \ 112 acctype* dst, int dststep, CvSize size )) \ 115 ( const arrtype* src, int srcstep, acctype* dst, int dststep, \ 116 CvSize size, acctype alpha )) \ 121 acctype* dst, int dststep, CvSize size )) \ 125 acctype* dst, int dststep, CvSize size )) \ 129 const uchar* mask, int maskstep, acctype* dst, int dststep, CvSize size )) \ 133 acctype* dst, int dststep, CvSize size, acctype alpha )) \ [all …]
|
/external/opencv3/modules/imgproc/src/ |
D | accum.cpp | 706 #define DEF_ACC_FUNCS(suffix, type, acctype) \ argument 707 static void acc_##suffix(const type* src, acctype* dst, \ 711 static void accSqr_##suffix(const type* src, acctype* dst, \ 716 acctype* dst, const uchar* mask, int len, int cn) \ 719 static void accW_##suffix(const type* src, acctype* dst, \
|
/external/opencv3/modules/video/src/ |
D | lkpyramid.cpp | 217 typedef int64 acctype; typedef 220 typedef float acctype; typedef 283 acctype iA11 = 0, iA12 = 0, iA22 = 0; in operator ()() 524 acctype ib1 = 0, ib2 = 0; in operator ()()
|