Home | History | Annotate | Download | only in src

Lines Matching refs:DEPTH

138     template <int DEPTH> struct NppWarpFunc
140 typedef typename NPPTypeTraits<DEPTH>::npp_type npp_type;
147 template <int DEPTH, typename NppWarpFunc<DEPTH>::func_t func> struct NppWarp
149 typedef typename NppWarpFunc<DEPTH>::npp_type npp_type;
192 CV_Assert( src.depth() <= CV_32F && src.channels() <= 4 );
243 bool useNpp = borderMode == BORDER_CONSTANT && ofs.x == 0 && ofs.y == 0 && useNppTab[src.depth()][src.channels() - 1][interpolation];
245 useNpp = useNpp && src.depth() != CV_32F;
277 const func_t func = funcs[(flags & WARP_INVERSE_MAP) != 0][src.depth()][src.channels() - 1];
299 const func_t func = funcs[src.depth()][src.channels() - 1];
331 CV_Assert( src.depth() <= CV_32F && src.channels() <= 4 );
382 bool useNpp = borderMode == BORDER_CONSTANT && ofs.x == 0 && ofs.y == 0 && useNppTab[src.depth()][src.channels() - 1][interpolation];
384 useNpp = useNpp && src.depth() != CV_32F;
416 const func_t func = funcs[(flags & WARP_INVERSE_MAP) != 0][src.depth()][src.channels() - 1];
438 const func_t func = funcs[src.depth()][src.channels() - 1];
466 template <int DEPTH> struct NppRotateFunc
468 typedef typename NPPTypeTraits<DEPTH>::npp_type npp_type;
475 template <int DEPTH, typename NppRotateFunc<DEPTH>::func_t func> struct NppRotate
477 typedef typename NppRotateFunc<DEPTH>::npp_type npp_type;
522 CV_Assert( src.depth() == CV_8U || src.depth() == CV_16U || src.depth() == CV_32F );
531 funcs[src.depth()][src.channels() - 1](src, dst, dsize, angle, xShift, yShift, interpolation, StreamAccessor::getStream(stream));