Home | History | Annotate | Download | only in src

Lines Matching refs:space_weight

2762         maxk(_maxk), space_ofs(_space_ofs), space_weight(_space_weight), color_weight(_color_weight)
2805 __m128 _sw = _mm_loadu_ps(space_weight+k);
2821 float w = space_weight[k]*color_weight[std::abs(val - val0)];
2869 __m128 _sw = _mm_loadu_ps(space_weight+k);
2894 float w = space_weight[k]*color_weight[std::abs(b - b0) +
2913 float *space_weight, *color_weight;
3002 float * const space_weight = &_space_weight[0];
3012 space_weight[maxk] = (float)std::exp(r * r * gauss_space_coeff);
3041 Mat mspace_weight(1, d * d, CV_32FC1, space_weight);
3108 float* space_weight = &_space_weight[0];
3126 space_weight[maxk] = (float)std::exp(r*r*gauss_space_coeff);
3131 BilateralFilter_8u_Invoker body(dst, temp, radius, maxk, space_ofs, space_weight, color_weight);
3144 temp(&_temp), dest(&_dest), scale_index(_scale_index), space_weight(_space_weight), expLUT(_expLUT)
3181 __m128 _sw = _mm_loadu_ps(space_weight + k);
3215 float w = space_weight[k]*(expLUT[idx] + alpha*(expLUT[idx+1] - expLUT[idx]));
3242 __m128 _sw = _mm_loadu_ps(space_weight + k);
3296 float w = space_weight[k]*(expLUT[idx] + alpha*(expLUT[idx+1] - expLUT[idx]));
3314 float scale_index, *space_weight, *expLUT;
3366 float* space_weight = &_space_weight[0];
3397 space_weight[maxk] = (float)std::exp(r*r*gauss_space_coeff);
3403 BilateralFilter_32f_Invoker body(cn, radius, maxk, space_ofs, temp, dst, scale_index, space_weight, expLUT);