/external/opencv3/modules/cudaarithm/src/cuda/ |
D | absdiff_mat.cu | 108 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in absDiffMat_v2() local 112 gridTransformBinary(src1_, src2_, dst_, AbsDiffOp2(), stream); in absDiffMat_v2() 127 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in absDiffMat_v4() local 131 gridTransformBinary(src1_, src2_, dst_, AbsDiffOp4(), stream); in absDiffMat_v4() 153 GpuMat src1_ = src1.reshape(1); in absDiffMat() local 159 const intptr_t src1ptr = reinterpret_cast<intptr_t>(src1_.data); in absDiffMat() 167 if (depth == CV_8U && (src1_.cols & 3) == 0) in absDiffMat() 169 absDiffMat_v4(src1_, src2_, dst_, stream); in absDiffMat() 172 else if (depth == CV_16U && (src1_.cols & 1) == 0) in absDiffMat() 174 absDiffMat_v2(src1_, src2_, dst_, stream); in absDiffMat() [all …]
|
D | add_mat.cu | 88 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in addMat_v2() local 92 gridTransformBinary(src1_, src2_, dst_, AddOp2(), stream); in addMat_v2() 107 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in addMat_v4() local 111 gridTransformBinary(src1_, src2_, dst_, AddOp4(), stream); in addMat_v4() 190 GpuMat src1_ = src1.reshape(1); in addMat() local 196 const intptr_t src1ptr = reinterpret_cast<intptr_t>(src1_.data); in addMat() 204 if (sdepth == CV_8U && (src1_.cols & 3) == 0) in addMat() 206 addMat_v4(src1_, src2_, dst_, stream); in addMat() 209 else if (sdepth == CV_16U && (src1_.cols & 1) == 0) in addMat() 211 addMat_v2(src1_, src2_, dst_, stream); in addMat() [all …]
|
D | sub_mat.cu | 88 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in subMat_v2() local 92 gridTransformBinary(src1_, src2_, dst_, SubOp2(), stream); in subMat_v2() 107 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in subMat_v4() local 111 gridTransformBinary(src1_, src2_, dst_, SubOp4(), stream); in subMat_v4() 190 GpuMat src1_ = src1.reshape(1); in subMat() local 196 const intptr_t src1ptr = reinterpret_cast<intptr_t>(src1_.data); in subMat() 204 if (sdepth == CV_8U && (src1_.cols & 3) == 0) in subMat() 206 subMat_v4(src1_, src2_, dst_, stream); in subMat() 209 else if (sdepth == CV_16U && (src1_.cols & 1) == 0) in subMat() 211 subMat_v2(src1_, src2_, dst_, stream); in subMat() [all …]
|
D | cmp_mat.cu | 118 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in cmpMatEq_v4() local 122 gridTransformBinary(src1_, src2_, dst_, VCmpEq4(), stream); in cmpMatEq_v4() 128 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in cmpMatNe_v4() local 132 gridTransformBinary(src1_, src2_, dst_, VCmpNe4(), stream); in cmpMatNe_v4() 138 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in cmpMatLt_v4() local 142 gridTransformBinary(src1_, src2_, dst_, VCmpLt4(), stream); in cmpMatLt_v4() 148 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in cmpMatLe_v4() local 152 gridTransformBinary(src1_, src2_, dst_, VCmpLe4(), stream); in cmpMatLe_v4() 195 GpuMat src1_ = psrc1[cmpop]->reshape(1); in cmpMat() local 199 if (depth == CV_8U && (src1_.cols & 3) == 0) in cmpMat() [all …]
|
D | minmax_mat.cu | 91 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in minMaxMat_v2() local 95 gridTransformBinary(src1_, src2_, dst_, Op2(), stream); in minMaxMat_v2() 119 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols); in minMaxMat_v4() local 123 gridTransformBinary(src1_, src2_, dst_, Op4(), stream); in minMaxMat_v4() 166 GpuMat src1_ = src1.reshape(1); in minMaxMat() local 172 const intptr_t src1ptr = reinterpret_cast<intptr_t>(src1_.data); in minMaxMat() 180 if (depth == CV_8U && (src1_.cols & 3) == 0) in minMaxMat() 182 funcs_v4[op](src1_, src2_, dst_, stream); in minMaxMat() 185 else if (depth == CV_16U && (src1_.cols & 1) == 0) in minMaxMat() 187 funcs_v2[op](src1_, src2_, dst_, stream); in minMaxMat() [all …]
|
D | mul_mat.cu | 181 GpuMat src1_ = src1.reshape(1); in mulMat() local 190 func(src1_, src2_, dst_, scale, stream); in mulMat()
|
D | div_mat.cu | 195 GpuMat src1_ = src1.reshape(1); in divMat() local 204 func(src1_, src2_, dst_, scale, stream); in divMat()
|
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/ |
D | transform_detail.hpp | 256 …static __global__ void transformSmart(const PtrStepSz<T1> src1_, const PtrStep<T2> src2_, PtrStep<… in transformSmart() argument 268 if (y < src1_.rows) in transformSmart() 270 const T1* src1 = src1_.ptr(y); in transformSmart() 274 if (x_shifted + ft::smart_shift - 1 < src1_.cols) in transformSmart() 286 for (int real_x = x_shifted; real_x < src1_.cols; ++real_x) in transformSmart()
|
/external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/ |
D | transform.hpp | 220 …__global__ void transformSmart(const GlobPtr<SrcType1> src1_, const GlobPtr<SrcType2> src2_, GlobP… in transformSmart() argument 232 const SrcType1* src1 = src1_.row(y); in transformSmart()
|