Searched refs:dstVal (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/modules/superres/src/opencl/ |
D | superres_btvl1.cl | 143 float dstVal = 0.0f; 148 … dstVal += c_btvRegWeights[count] * (diffSign1(srcVal, src_elem_at(src, y + m, src_step, x + l)) 152 dst_elem_at(dst, y, dst_step, x) = dstVal; 155 float3 srcVal = (float3)(src0ptr[0], src0ptr[1], src0ptr[2]), dstVal = 0.f; 167 … dstVal += c_btvRegWeights[count] * (diffSign3(srcVal, src1) - diffSign3(src2, srcVal)); 172 dstptr[0] = dstVal.x; 173 dstptr[1] = dstVal.y; 174 dstptr[2] = dstVal.z;
|
/external/opencv3/modules/superres/src/cuda/ |
D | btv_l1_gpu.cu | 205 T dstVal = VecTraits<T>::all(0); in calcBtvRegularizationKernel() local 210 …dstVal = dstVal + c_btvRegWeights[count] * (diffSign(srcVal, src(y + m, x + l)) - diffSign(src(y -… in calcBtvRegularizationKernel() 213 dst(y, x) = dstVal; in calcBtvRegularizationKernel()
|