Searched defs:dst_rows (Results 1 - 2 of 2) sorted by relevance

/external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
H A Dpyr_down.hpp186 __host__ void pyrDown(const SrcPtr& src, const GlobPtr<DstType>& dst, int src_rows, int src_cols, int dst_rows, int dst_cols, cudaStream_t stream) argument
189 const dim3 grid(divUp(src_cols, block.x), dst_rows); local
H A Dpyr_up.hpp61 __global__ void pyrUp(const SrcPtr src, GlobPtr<DstType> dst, const int src_rows, const int src_cols, const int dst_rows, const int dst_cols) argument
152 if (x < dst_cols && y < dst_rows)
157 __host__ void pyrUp(const SrcPtr& src, const GlobPtr<DstType>& dst, int src_rows, int src_cols, int dst_rows, int dst_cols, cudaStream_t stream) argument
160 const dim3 grid(divUp(dst_cols, block.x), divUp(dst_rows, block.y));
162 pyrUp<<<grid, block, 0, stream>>>(src, dst, src_rows, src_cols, dst_rows, dst_cols);

Completed in 297 milliseconds