Commit c2f540d0 authored by unknown's avatar unknown

White space fixes

parent 36d33dd6
...@@ -80,10 +80,10 @@ __kernel void bilateral(__global const uchar * src, int src_step, int src_offset ...@@ -80,10 +80,10 @@ __kernel void bilateral(__global const uchar * src, int src_step, int src_offset
{ {
#ifdef INTEL_DEVICE #ifdef INTEL_DEVICE
float_t val = convert_float_t(loadpix(src + src_index + space_ofs[k])); float_t val = convert_float_t(loadpix(src + src_index + space_ofs[k]));
float diff = SUM(fabs(val - val0)); float diff = SUM(fabs(val - val0));
#else #else
int_t val = convert_int_t(loadpix(src + src_index + space_ofs[k])); int_t val = convert_int_t(loadpix(src + src_index + space_ofs[k]));
int diff = SUM(abs(val - val0)); int diff = SUM(abs(val - val0));
#endif #endif
float w = space_weight[k] * native_exp((float)(diff * diff * gauss_color_coeff)); float w = space_weight[k] * native_exp((float)(diff * diff * gauss_color_coeff));
sum += convert_float_t(val) * (float_t)(w); sum += convert_float_t(val) * (float_t)(w);
...@@ -93,7 +93,7 @@ __kernel void bilateral(__global const uchar * src, int src_step, int src_offset ...@@ -93,7 +93,7 @@ __kernel void bilateral(__global const uchar * src, int src_step, int src_offset
} }
} }
#ifdef INTEL_DEVICE #ifdef INTEL_DEVICE
#if cn == 1 #if cn == 1
//for single channgel x4 sized images. //for single channgel x4 sized images.
__kernel void bilateral_float4(__global const uchar * src, int src_step, int src_offset, __kernel void bilateral_float4(__global const uchar * src, int src_step, int src_offset,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment