Searched refs:d_res (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/samples/gpu/ |
D | alpha_comp.cpp | 32 GpuMat d_res; in main() local 49 alphaComp(d_src1, d_src2, d_res, alpha_op); in main() 51 imshow("Result", d_res); in main()
|
/external/opencv3/modules/cudalegacy/src/cuda/ |
D | NCVBroxOpticalFlow.cu | 131 __global__ void pointwise_add(float *d_res, const float *d_op1, const float *d_op2, const int len) in pointwise_add() argument 137 d_res[pos] = d_op1[pos] + d_op2[pos]; in pointwise_add() 175 __global__ void scaleVector(float *d_res, const float *d_src, float scale, const int len) in scaleVector() argument 181 d_res[pos] = d_src[pos] * scale; in scaleVector() 194 static void ScaleVector(float *d_res, const float *d_src, float scale, const int len, cudaStream_t … in ScaleVector() argument 199 scaleVector<<<blocks, threads, 0, stream>>>(d_res, d_src, scale, len); in ScaleVector()
|