HomeSort by relevance Sort by last modified time
    Searched refs:transformSmart (Results 1 - 2 of 2) sorted by null

  /external/opencv3/modules/core/include/opencv2/core/cuda/detail/
transform_detail.hpp 208 static __global__ void transformSmart(const PtrStepSz<T> src_, PtrStep<D> dst_, const Mask mask, const UnOp op)
256 static __global__ void transformSmart(const PtrStepSz<T1> src1_, const PtrStep<T2> src2_, PtrStep<D> dst_,
362 transformSmart<T, D><<<grid, threads, 0, stream>>>(src, dst, mask, op);
387 transformSmart<T1, T2, D><<<grid, threads, 0, stream>>>(src1, src2, dst, mask, op);
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
transform.hpp 182 // transformSmart
185 __global__ void transformSmart(const GlobPtr<SrcType> src_, GlobPtr<DstType> dst_, const UnOp op, const MaskPtr mask, const int rows, const int cols)
220 __global__ void transformSmart(const GlobPtr<SrcType1> src1_, const GlobPtr<SrcType2> src2_, GlobPtr<DstType> dst_, const BinOp op, const MaskPtr mask, const int rows, const int cols)
317 transformSmart<Policy::shift><<<grid, block, 0, stream>>>(src, dst, op, mask, rows, cols);
339 transformSmart<Policy::shift><<<grid, block, 0, stream>>>(src1, src2, dst, op, mask, rows, cols);

Completed in 268 milliseconds