Home | History | Annotate | Download | only in cuda

Lines Matching full:hist

53 namespace hist
55 __global__ void histogram256Kernel(const uchar* src, int cols, int rows, size_t step, int* hist)
94 ::atomicAdd(hist + tid, histVal);
97 void histogram256(PtrStepSzb src, int* hist, cudaStream_t stream)
102 histogram256Kernel<<<grid, block, 0, stream>>>(src.data, src.cols, src.rows, src.step, hist);
112 namespace hist
124 int* hist, const int binCount, const int binSize, const int lowerLevel, const int upperLevel)
169 ::atomicAdd(hist + tid, histVal);
173 void histEven8u(PtrStepSzb src, int* hist, int binCount, int lowerLevel, int upperLevel, cudaStream_t stream)
182 histEven8u<<<grid, block, smem_size, stream>>>(src.data, src.step, src.rows, src.cols, hist, binCount, binSize, lowerLevel, upperLevel);
192 namespace hist
212 template <> struct TransformFunctorTraits<hist::EqualizeHist> : DefaultTransformFunctorTraits<hist::EqualizeHist>
218 namespace hist