Blame view

3rdparty/opencv-4.5.4/modules/imgproc/src/opencl/bilateral.cl 4.96 KB
f4334277   Hu Chunming   提交3rdparty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
  //                           License Agreement
  //                For Open Source Computer Vision Library
  //
  // Copyright (C) 2010-2012, Institute Of Software Chinese Academy Of Science, all rights reserved.
  // Copyright (C) 2010-2012, Advanced Micro Devices, Inc., all rights reserved.
  // Third party copyrights are property of their respective owners.
  //
  // @Authors
  //    Rock Li, Rock.li@amd.com
  //
  // Redistribution and use in source and binary forms, with or without modification,
  // are permitted provided that the following conditions are met:
  //
  //   * Redistribution's of source code must retain the above copyright notice,
  //     this list of conditions and the following disclaimer.
  //
  //   * Redistribution's in binary form must reproduce the above copyright notice,
  //     this list of conditions and the following disclaimer in the documentation
  //     and/or other materials provided with the distribution.
  //
  //   * The name of the copyright holders may not be used to endorse or promote products
  //     derived from this software without specific prior written permission.
  //
  // This software is provided by the copyright holders and contributors as is and
  // any express or implied warranties, including, but not limited to, the implied
  // warranties of merchantability and fitness for a particular purpose are disclaimed.
  // In no event shall the Intel Corporation or contributors be liable for any direct,
  // indirect, incidental, special, exemplary, or consequential damages
  // (including, but not limited to, procurement of substitute goods or services;
  // loss of use, data, or profits; or business interruption) however caused
  // and on any theory of liability, whether in contract, strict liability,
  // or tort (including negligence or otherwise) arising in any way out of
  // the use of this software, even if advised of the possibility of such damage.
  
  #if cn != 3
  #define loadpix(addr) *(__global const uchar_t *)(addr)
  #define storepix(val, addr)  *(__global uchar_t *)(addr) = val
  #define TSIZE cn
  #else
  #define loadpix(addr) vload3(0, (__global const uchar *)(addr))
  #define storepix(val, addr) vstore3(val, 0, (__global uchar *)(addr))
  #define TSIZE 3
  #endif
  
  #if cn == 1
  #define SUM(a) a
  #elif cn == 2
  #define SUM(a) a.x + a.y
  #elif cn == 3
  #define SUM(a) a.x + a.y + a.z
  #elif cn == 4
  #define SUM(a) a.x + a.y + a.z + a.w
  #else
  #error "cn should be <= 4"
  #endif
  
  //Read pixels as integers
  // Intel Device - Read Pixels as floats
  __kernel void bilateral(__global const uchar * src, int src_step, int src_offset,
                          __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
                          __constant float * space_weight, __constant int * space_ofs)
  {
      int x = get_global_id(0);
      int y = get_global_id(1);
  
      if (y < dst_rows && x < dst_cols)
      {
          int src_index = mad24(y + radius, src_step, mad24(x + radius, TSIZE, src_offset));
          int dst_index = mad24(y, dst_step, mad24(x, TSIZE, dst_offset));
  
          float_t sum = (float_t)(0.0f);
          float wsum = 0.0f;
          #ifdef INTEL_DEVICE
          float_t val0 = convert_float_t(loadpix(src + src_index));
          #else
          int_t val0 = convert_int_t(loadpix(src + src_index));
          #endif
          #pragma unroll
          for (int k = 0; k < maxk; k++ )
          {
              #ifdef INTEL_DEVICE
              float_t val = convert_float_t(loadpix(src + src_index + space_ofs[k]));
              float diff = SUM(fabs(val - val0));
              #else
              int_t val = convert_int_t(loadpix(src + src_index + space_ofs[k]));
              int diff = SUM(abs(val - val0));
              #endif
              float w = space_weight[k] * native_exp((float)(diff * diff * gauss_color_coeff));
              sum += convert_float_t(val) * (float_t)(w);
              wsum += w;
          }
          storepix(convert_uchar_t(sum / (float_t)(wsum)), dst + dst_index);
      }
  }
  
  #ifdef INTEL_DEVICE
  #if cn == 1
  //for single channgel x4 sized images.
  __kernel void bilateral_float4(__global const uchar * src, int src_step, int src_offset,
                                 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
                                 __constant float * space_weight, __constant int * space_ofs)
  {
      int x = get_global_id(0);
      int y = get_global_id(1);
      if (y < dst_rows && x < dst_cols / 4 )
      {
          int src_index = ((y + radius) * src_step) + x * 4  + (radius + src_offset);
          int dst_index = (y  * dst_step) +  x * 4 + dst_offset ;
          float4 sum = 0.f, wsum = 0.f;
          float4 val0 = convert_float4(vload4(0, src + src_index));
          #pragma unroll
          for (int k = 0; k < maxk; k++ )
          {
              float4 val = convert_float4(vload4(0, src + src_index + space_ofs[k]));
              float4 w = space_weight[k] * native_exp((val - val0) * (val - val0) * gauss_color_coeff);
              sum += val * w;
              wsum += w;
          }
          sum = sum / wsum + .5f;
          vstore4(convert_uchar4_rtz(sum), 0, dst + dst_index);
      }
  }
  #endif
  #endif