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

  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
glob.hpp 62 template <typename T> struct GlobPtr
85 template <typename T> struct GlobPtrSz : GlobPtr<T>
91 __host__ __device__ GlobPtr<T> globPtr(T* data, size_t step)
93 GlobPtr<T> p;
100 __host__ __device__ GlobPtrSz<T> globPtr(T* data, size_t step, int rows, int cols)
111 __host__ GlobPtrSz<T> globPtr(const GpuMat& mat)
121 template <typename T> struct PtrTraits< GlobPtrSz<T> > : PtrTraitsBase<GlobPtrSz<T>, GlobPtr<T> >
gpumat.hpp 109 //! convert to GlobPtr
111 __host__ operator GlobPtr<T>() const;
156 template <typename T> struct PtrTraits< GpuMat_<T> > : PtrTraitsBase<GpuMat_<T>, GlobPtr<T> >
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
split_merge.hpp 63 __global__ void mergeC2(const Src1Ptr src1, const Src2Ptr src2, GlobPtr<DstType> dst, const MaskPtr mask, const int rows, const int cols)
80 __host__ void mergeC2(const Src1Ptr& src1, const Src2Ptr& src2, const GlobPtr<DstType>& dst, const MaskPtr& mask, int rows, int cols, cudaStream_t stream)
93 __global__ void mergeC3(const Src1Ptr src1, const Src2Ptr src2, const Src3Ptr src3, GlobPtr<DstType> dst, const MaskPtr mask, const int rows, const int cols)
111 __host__ void mergeC3(const Src1Ptr& src1, const Src2Ptr& src2, const Src3Ptr& src3, const GlobPtr<DstType>& dst, const MaskPtr& mask, int rows, int cols, cudaStream_t stream)
124 __global__ void mergeC4(const Src1Ptr src1, const Src2Ptr src2, const Src3Ptr src3, const Src4Ptr src4, GlobPtr<DstType> dst, const MaskPtr mask, const int rows, const int cols)
143 __host__ void mergeC4(const Src1Ptr& src1, const Src2Ptr& src2, const Src3Ptr& src3, const Src4Ptr& src4, const GlobPtr<DstType>& dst, const MaskPtr& mask, int rows, int cols, cudaStream_t stream)
160 __host__ static void merge(const SrcPtrTuple& src, const GlobPtr<DstType>& dst, const MaskPtr& mask, int rows, int cols, cudaStream_t stream)
169 __host__ static void merge(const SrcPtrTuple& src, const GlobPtr<DstType>& dst, const MaskPtr& mask, int rows, int cols, cudaStream_t stream)
178 __host__ static void merge(const SrcPtrTuple& src, const GlobPtr<DstType>& dst, const MaskPtr& mask, int rows, int cols, cudaStream_t stream)
187 __global__ void split(const SrcPtr src, GlobPtr<DstType> dst1, GlobPtr<DstType> dst2, const MaskPtr mask, const int rows, const int cols
    [all...]
integral.hpp 61 __global__ void horizontal_pass(const SrcPtr src, GlobPtr<D> dst, const int cols)
103 __global__ void horizontal_pass(const GlobPtr<T> src, GlobPtr<D> dst, const int cols)
146 __host__ void horizontal_pass(const SrcPtr& src, const GlobPtr<D>& dst, int rows, int cols, cudaStream_t stream)
169 __global__ static void horisontal_pass_8u_shfl_kernel(const GlobPtr<uint4> img, GlobPtr<uint4> integral)
399 __host__ static void horisontal_pass_8u_shfl(const GlobPtr<uchar> src, GlobPtr<uint> integral, int rows, int cols, cudaStream_t stream)
410 GlobPtr<uint4> src4 = globPtr((uint4*) src.data, src.step)
    [all...]
transform.hpp 159 __global__ void transformSimple(const SrcPtr src, GlobPtr<DstType> dst, const UnOp op, const MaskPtr mask, const int rows, const int cols)
171 __global__ void transformSimple(const SrcPtr1 src1, const SrcPtr2 src2, GlobPtr<DstType> dst, const BinOp op, const MaskPtr mask, const int rows, const int cols)
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)
264 __host__ static void call(const SrcPtr& src, const GlobPtr<DstType>& dst, const UnOp& op, const MaskPtr& mask, int rows, int cols, cudaStream_t stream)
277 __host__ static void call(const SrcPtr1& src1, const SrcPtr2& src2, const GlobPtr<DstType>& dst, const BinOp& op, const MaskPtr& mask, int rows, int cols, cudaStream_t stream)
304 __host__ static void call(const GlobPtr<SrcType>& src, const GlobPtr<DstType>& dst, const UnOp& op, const MaskPtr& mask, int rows, int col (…)
    [all...]
transpose.hpp 59 __global__ void transpose(const SrcPtr src, GlobPtr<DstType> dst, const int rows, const int cols)
112 __host__ void transpose(const SrcPtr& src, const GlobPtr<DstType>& dst, int rows, int cols, cudaStream_t stream)
copy.hpp 60 __global__ void copy(const SrcPtr src, GlobPtr<DstType> dst, const MaskPtr mask, const int rows, const int cols)
72 __host__ void copy(const SrcPtr& src, const GlobPtr<DstType>& dst, const MaskPtr& mask, int rows, int cols, cudaStream_t stream)
pyr_down.hpp 61 __global__ void pyrDown(const SrcPtr src, GlobPtr<DstType> dst, const int src_rows, const int src_cols, const int dst_cols)
186 __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)
pyr_up.hpp 61 __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)
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)
  /external/opencv3/modules/cudacodec/src/cuda/
rgb_to_yv12.cu 71 __global__ void Gray_to_YV12(const GlobPtrSz<uchar> src, GlobPtr<uchar> dst)
81 GlobPtr<uchar> y_plane = globPtr(dst.data, dst.step);
82 GlobPtr<uchar> u_plane = globPtr(y_plane.data + planeSize, dst.step / 2);
83 GlobPtr<uchar> v_plane = globPtr(u_plane.data + (planeSize / 4), dst.step / 2);
108 __global__ void RGB_to_YV12(const GlobPtrSz<T> src, GlobPtr<uchar> dst)
118 GlobPtr<uchar> y_plane = globPtr(dst.data, dst.step)
    [all...]
  /external/opencv3/modules/cudaarithm/src/cuda/
polar_cart.cu 161 __global__ void polarToCartImpl(const GlobPtr<float> mag, const GlobPtr<float> angle, GlobPtr<float> xmat, GlobPtr<float> ymat, const float scale, const int rows, const int cols)
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/detail/
gpumat.hpp 186 return globPtr((T*) data, step, rows, cols);
190 __host__ GpuMat_<T>::operator GlobPtr<T>() const
192 return globPtr((T*) data, step);

Completed in 2689 milliseconds