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
|
/*
This file is part of darktable,
copyright (c) 2009--2010 johannes hanika.
darktable is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
darktable is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with darktable. If not, see <http://www.gnu.org/licenses/>.
*/
#include "common.h"
float4
weight(const float4 c1, const float4 c2, const float sharpen)
{
// native_exp is faster than the cpu floating point aliasing hack:
const float wc = native_exp(-((c1.y - c2.y)*(c1.y - c2.y) + (c1.z - c2.z)*(c1.z - c2.z)) * sharpen);
const float wl = native_exp(- (c1.x - c2.x)*(c1.x - c2.x) * sharpen);
return (float4)(wl, wc, wc, 1.0f);
}
__kernel void
eaw_decompose (__read_only image2d_t in, __write_only image2d_t coarse, __write_only image2d_t detail,
const int width, const int height, const int scale, const float sharpen, global const float *filter)
{
const int x = get_global_id(0);
const int y = get_global_id(1);
if(x >= width || y >= height) return;
const int mult = 1<<scale;
float4 pixel = read_imagef(in, sampleri, (int2)(x, y));
float4 sum = (float4)(0.0f);
float4 wgt = (float4)(0.0f);
for(int j=0;j<5;j++) for(int i=0;i<5;i++)
{
int xx = mad24(mult, i - 2, x);
int yy = mad24(mult, j - 2, y);
int k = mad24(j, 5, i);
float4 px = read_imagef(in, sampleri, (int2)(xx, yy));
float4 w = filter[k]*weight(pixel, px, sharpen);
sum += w*px;
wgt += w;
}
sum /= wgt;
sum.w = pixel.w;
write_imagef (detail, (int2)(x, y), pixel - sum);
write_imagef (coarse, (int2)(x, y), sum);
}
__kernel void
eaw_synthesize (__write_only image2d_t out, __read_only image2d_t coarse, __read_only image2d_t detail,
const int width, const int height,
const float t0, const float t1, const float t2, const float t3,
const float b0, const float b1, const float b2, const float b3)
{
const int x = get_global_id(0);
const int y = get_global_id(1);
if(x >= width || y >= height) return;
const float4 threshold = (float4)(t0, t1, t2, t3);
const float4 boost = (float4)(b0, b1, b2, b3);
float4 c = read_imagef(coarse, sampleri, (int2)(x, y));
float4 d = read_imagef(detail, sampleri, (int2)(x, y));
float4 amount = copysign(max((float4)(0.0f), fabs(d) - threshold), d);
float4 sum = c + boost*amount;
sum.w = c.w;
write_imagef (out, (int2)(x, y), sum);
}
|