HomeSort by relevance Sort by last modified time
    Searched full:space_weight (Results 1 - 5 of 5) sorted by null

  /external/opencv3/modules/imgproc/src/opencl/
bilateral.cl 61 __constant float * space_weight, __constant int * space_ofs)
88 float w = space_weight[k] * native_exp((float)(diff * diff * gauss_color_coeff));
101 __constant float * space_weight, __constant int * space_ofs)
115 float4 w = space_weight[k] * native_exp((val - val0) * (val - val0) * gauss_color_coeff);
  /external/opencv3/modules/imgproc/test/
test_bilateral_filter.cpp 146 float* space_weight = &_space_weight[0]; local
177 space_weight[maxk] = (float)std::exp(r*r*gauss_space_coeff);
198 float w = space_weight[k]*(expLUT[idx] + alpha*(expLUT[idx+1] - expLUT[idx]));
220 float w = space_weight[k]*(expLUT[idx] + alpha*(expLUT[idx+1] - expLUT[idx]));
  /external/opencv/cv/src/
cvsmooth.cpp     [all...]
  /external/opencv3/modules/imgproc/src/
smooth.cpp     [all...]
  /external/opencv3/modules/imgproc/
opencl_kernels_imgproc.cpp 115 "__constant float * space_weight, __constant int * space_ofs)\n"
140 "float w = space_weight[k] * native_exp((float)(diff * diff * gauss_color_coeff));\n"
151 "__constant float * space_weight, __constant int * space_ofs)\n"
165 "float4 w = space_weight[k] * native_exp((val - val0) * (val - val0) * gauss_color_coeff);\n"
    [all...]

Completed in 195 milliseconds