217 |
217 |
DEF_INTEGRAL_FUNC(8u32s, uchar, int, double)
|
218 |
218 |
DEF_INTEGRAL_FUNC(8u32f, uchar, float, double)
|
219 |
219 |
DEF_INTEGRAL_FUNC(8u64f, uchar, double, double)
|
|
220 |
DEF_INTEGRAL_FUNC(16u64f, ushort, double, double)
|
|
221 |
DEF_INTEGRAL_FUNC(16s64f, short, double, double)
|
220 |
222 |
DEF_INTEGRAL_FUNC(32f, float, float, double)
|
221 |
223 |
DEF_INTEGRAL_FUNC(32f64f, float, double, double)
|
222 |
224 |
DEF_INTEGRAL_FUNC(64f, double, double, double)
|
... | ... | |
307 |
309 |
func = (IntegralFunc)integral_8u32f;
|
308 |
310 |
else if( depth == CV_8U && sdepth == CV_64F )
|
309 |
311 |
func = (IntegralFunc)integral_8u64f;
|
|
312 |
else if( depth == CV_16U && sdepth == CV_64F )
|
|
313 |
func = (IntegralFunc)integral_16u64f;
|
|
314 |
else if( depth == CV_16S && sdepth == CV_64F )
|
|
315 |
func = (IntegralFunc)integral_16s64f;
|
310 |
316 |
else if( depth == CV_32F && sdepth == CV_32F )
|
311 |
317 |
func = (IntegralFunc)integral_32f;
|
312 |
318 |
else if( depth == CV_32F && sdepth == CV_64F )
|