2014-06-03 18:52:35 -04:00
|
|
|
// From http://http.developer.nvidia.com/GPUGems3/gpugems3_ch40.html
|
|
|
|
|
|
|
|
uniform layout(size1x16) restrict readonly image2D source;
|
2014-06-20 18:27:23 -04:00
|
|
|
uniform layout(size1x32) restrict readonly image2D depth;
|
2014-06-03 18:52:35 -04:00
|
|
|
uniform layout(size1x16) volatile restrict writeonly image2D dest;
|
|
|
|
uniform float sigma = 5.;
|
|
|
|
|
|
|
|
layout (local_size_x = 8, local_size_y = 8) in;
|
|
|
|
|
|
|
|
shared float local_src[8][8 + 2 * 8];
|
2014-06-20 18:27:23 -04:00
|
|
|
shared float local_depth[8][8 + 2 * 8];
|
2014-06-03 18:52:35 -04:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
int x = int(gl_LocalInvocationID.x), y = int(gl_LocalInvocationID.y);
|
|
|
|
ivec2 uv = ivec2(gl_GlobalInvocationID.x, gl_GlobalInvocationID.y);
|
|
|
|
local_src[x][y] = imageLoad(source, ivec2(uv) - ivec2(0, 8)).x;
|
2014-06-20 18:27:23 -04:00
|
|
|
local_depth[x][y] = imageLoad(depth, ivec2(uv) - ivec2(0, 8)).x;
|
2014-06-03 18:52:35 -04:00
|
|
|
local_src[x][y + 8] = imageLoad(source, ivec2(uv)).x;
|
2014-06-20 18:27:23 -04:00
|
|
|
local_depth[x][y + 8] = imageLoad(depth, ivec2(uv)).x;
|
2014-06-03 18:52:35 -04:00
|
|
|
local_src[x][y + 16] = imageLoad(source, ivec2(uv) + ivec2(0, 8)).x;
|
2014-06-20 18:27:23 -04:00
|
|
|
local_depth[x][y + 16] = imageLoad(depth, ivec2(uv) + ivec2(0, 8)).x;
|
2014-06-03 18:52:35 -04:00
|
|
|
|
|
|
|
barrier();
|
|
|
|
|
|
|
|
float g0, g1, g2;
|
|
|
|
g0 = 1.0 / (sqrt(2.0 * 3.14) * sigma);
|
|
|
|
g1 = exp(-0.5 / (sigma * sigma));
|
|
|
|
g2 = g1 * g1;
|
|
|
|
float sum = local_src[x][y + 8] * g0;
|
2014-06-20 18:27:23 -04:00
|
|
|
float pixel_depth = local_depth[x][y + 8];
|
2014-06-03 18:52:35 -04:00
|
|
|
g0 *= g1;
|
|
|
|
g1 *= g2;
|
2014-06-20 18:27:23 -04:00
|
|
|
float tmp_weight, total_weight = g0;
|
2014-06-03 18:52:35 -04:00
|
|
|
for (int j = 1; j < 8; j++) {
|
2014-06-20 18:27:23 -04:00
|
|
|
tmp_weight = max(0.0, 1.0 - .001 * abs(local_depth[x][y + 8 + j] - pixel_depth));
|
|
|
|
sum += local_src[x][y + 8 + j] * g0 * tmp_weight;
|
|
|
|
total_weight += g0 * tmp_weight;
|
|
|
|
tmp_weight = max(0.0, 1.0 - .001 * abs(local_depth[x][y + 8 - j] - pixel_depth));
|
|
|
|
sum += local_src[x][y + 8 - j] * g0 * tmp_weight;
|
|
|
|
total_weight += g0 * tmp_weight;
|
2014-06-03 18:52:35 -04:00
|
|
|
g0 *= g1;
|
|
|
|
g1 *= g2;
|
2014-06-20 18:27:23 -04:00
|
|
|
|
2014-06-03 18:52:35 -04:00
|
|
|
}
|
2014-06-20 18:27:23 -04:00
|
|
|
imageStore(dest, ivec2(uv), vec4(sum / total_weight));
|
2014-06-03 18:52:35 -04:00
|
|
|
}
|
|
|
|
|