-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathcolisa.c
293 lines (244 loc) · 10 KB
/
colisa.c
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
/*
This file is part of darktable,
Copyright (C) 2013-2024 darktable developers.
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/>.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "bauhaus/bauhaus.h"
#include "common/debug.h"
#include "common/opencl.h"
#include "control/control.h"
#include "develop/develop.h"
#include "develop/imageop.h"
#include "develop/imageop_math.h"
#include "develop/imageop_gui.h"
#include "develop/tiling.h"
#include "gui/accelerators.h"
#include "gui/gtk.h"
#include "gui/presets.h"
#include "iop/iop_api.h"
#include <assert.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include <gtk/gtk.h>
#include <inttypes.h>
DT_MODULE_INTROSPECTION(1, dt_iop_colisa_params_t)
typedef struct dt_iop_colisa_params_t
{
float contrast; // $MIN: -1.0 $MAX: 1.0 $DEFAULT: 0.0
float brightness; // $MIN: -1.0 $MAX: 1.0 $DEFAULT: 0.0
float saturation; // $MIN: -1.0 $MAX: 1.0 $DEFAULT: 0.0
} dt_iop_colisa_params_t;
typedef struct dt_iop_colisa_gui_data_t
{
GtkWidget *contrast;
GtkWidget *brightness;
GtkWidget *saturation;
} dt_iop_colisa_gui_data_t;
typedef struct dt_iop_colisa_data_t
{
float contrast;
float brightness;
float saturation;
float ctable[0x10000]; // precomputed look-up table for contrast curve
float cunbounded_coeffs[3]; // approximation for extrapolation of contrast curve
float ltable[0x10000]; // precomputed look-up table for brightness curve
float lunbounded_coeffs[3]; // approximation for extrapolation of brightness curve
} dt_iop_colisa_data_t;
typedef struct dt_iop_colisa_global_data_t
{
int kernel_colisa;
} dt_iop_colisa_global_data_t;
const char *deprecated_msg()
{
return _("this module is deprecated. please use colorbalance RGB module instead.");
}
const char *name()
{
return _("contrast brightness saturation");
}
const char **description(dt_iop_module_t *self)
{
return dt_iop_set_description(self, _("adjust the look of the image"),
_("creative"),
_("non-linear, Lab, display-referred"),
_("non-linear, Lab"),
_("non-linear, Lab, display-referred"));
}
int flags()
{
return IOP_FLAGS_INCLUDE_IN_STYLES | IOP_FLAGS_SUPPORTS_BLENDING
| IOP_FLAGS_ALLOW_TILING | IOP_FLAGS_DEPRECATED;
}
int default_group()
{
return IOP_GROUP_BASIC | IOP_GROUP_GRADING;
}
dt_iop_colorspace_type_t default_colorspace(dt_iop_module_t *self,
dt_dev_pixelpipe_t *pipe,
dt_dev_pixelpipe_iop_t *piece)
{
return IOP_CS_LAB;
}
#ifdef HAVE_OPENCL
int process_cl(dt_iop_module_t *self, dt_dev_pixelpipe_iop_t *piece, cl_mem dev_in, cl_mem dev_out,
const dt_iop_roi_t *const roi_in, const dt_iop_roi_t *const roi_out)
{
dt_iop_colisa_data_t *d = piece->data;
dt_iop_colisa_global_data_t *gd = self->global_data;
cl_int err = DT_OPENCL_DEFAULT_ERROR;
const int devid = piece->pipe->devid;
const int width = roi_in->width;
const int height = roi_in->height;
const float saturation = d->saturation;
cl_mem dev_cm = NULL;
cl_mem dev_ccoeffs = NULL;
cl_mem dev_lm = NULL;
cl_mem dev_lcoeffs = NULL;
dev_cm = dt_opencl_copy_host_to_device(devid, d->ctable, 256, 256, sizeof(float));
if(dev_cm == NULL) goto error;
dev_ccoeffs = dt_opencl_copy_host_to_device_constant(devid, sizeof(float) * 3, d->cunbounded_coeffs);
if(dev_ccoeffs == NULL) goto error;
dev_lm = dt_opencl_copy_host_to_device(devid, d->ltable, 256, 256, sizeof(float));
if(dev_lm == NULL) goto error;
dev_lcoeffs = dt_opencl_copy_host_to_device_constant(devid, sizeof(float) * 3, d->lunbounded_coeffs);
if(dev_lcoeffs == NULL) goto error;
size_t sizes[3];
sizes[0] = ROUNDUPDWD(width, devid);
sizes[1] = ROUNDUPDHT(height, devid);
sizes[2] = 1;
dt_opencl_set_kernel_args(devid, gd->kernel_colisa, 0, CLARG(dev_in), CLARG(dev_out), CLARG(width),
CLARG(height), CLARG(saturation), CLARG(dev_cm), CLARG(dev_ccoeffs), CLARG(dev_lm), CLARG(dev_lcoeffs));
err = dt_opencl_enqueue_kernel_2d(devid, gd->kernel_colisa, sizes);
error:
dt_opencl_release_mem_object(dev_lcoeffs);
dt_opencl_release_mem_object(dev_lm);
dt_opencl_release_mem_object(dev_ccoeffs);
dt_opencl_release_mem_object(dev_cm);
return err;
}
#endif
void process(dt_iop_module_t *self, dt_dev_pixelpipe_iop_t *piece, const void *const ivoid,
void *const ovoid, const dt_iop_roi_t *const roi_in, const dt_iop_roi_t *const roi_out)
{
dt_iop_colisa_data_t *data = piece->data;
float *in = (float *)ivoid;
float *out = (float *)ovoid;
const int width = roi_in->width;
const int height = roi_in->height;
const int ch = piece->colors;
DT_OMP_FOR()
for(size_t k = 0; k < (size_t)width * height; k++)
{
float L = (in[k * ch + 0] < 100.0f)
? data->ctable[CLAMP((int)(in[k * ch + 0] / 100.0f * 0x10000ul), 0, 0xffff)]
: dt_iop_eval_exp(data->cunbounded_coeffs, in[k * ch + 0] / 100.0f);
out[k * ch + 0] = (L < 100.0f) ? data->ltable[CLAMP((int)(L / 100.0f * 0x10000ul), 0, 0xffff)]
: dt_iop_eval_exp(data->lunbounded_coeffs, L / 100.0f);
out[k * ch + 1] = in[k * ch + 1] * data->saturation;
out[k * ch + 2] = in[k * ch + 2] * data->saturation;
out[k * ch + 3] = in[k * ch + 3];
}
}
void commit_params(dt_iop_module_t *self, dt_iop_params_t *p1, dt_dev_pixelpipe_t *pipe,
dt_dev_pixelpipe_iop_t *piece)
{
dt_iop_colisa_params_t *p = (dt_iop_colisa_params_t *)p1;
dt_iop_colisa_data_t *d = piece->data;
d->contrast = p->contrast + 1.0f; // rescale from [-1;+1] to [0;+2] (zero meaning no contrast -> gray plane)
d->brightness = p->brightness * 2.0f; // rescale from [-1;+1] to [-2;+2]
d->saturation = p->saturation + 1.0f; // rescale from [-1;+1] to [0;+2] (zero meaning no saturation -> b&w)
// generate precomputed contrast curve
if(d->contrast <= 1.0f)
{
// linear curve for d->contrast below 1
DT_OMP_FOR()
for(int k = 0; k < 0x10000; k++) d->ctable[k] = d->contrast * (100.0f * k / 0x10000 - 50.0f) + 50.0f;
}
else
{
// sigmoidal curve for d->contrast above 1
const float boost = 20.0f;
const float contrastm1sq = boost * (d->contrast - 1.0f) * (d->contrast - 1.0f);
const float contrastscale = sqrtf(1.0f + contrastm1sq);
DT_OMP_FOR()
for(int k = 0; k < 0x10000; k++)
{
float kx2m1 = 2.0f * (float)k / 0x10000 - 1.0f;
d->ctable[k] = 50.0f * (contrastscale * kx2m1 / sqrtf(1.0f + contrastm1sq * kx2m1 * kx2m1) + 1.0f);
}
}
// now the extrapolation stuff for the contrast curve:
const float xc[4] = { 0.7f, 0.8f, 0.9f, 1.0f };
const float yc[4] = { d->ctable[CLAMP((int)(xc[0] * 0x10000ul), 0, 0xffff)],
d->ctable[CLAMP((int)(xc[1] * 0x10000ul), 0, 0xffff)],
d->ctable[CLAMP((int)(xc[2] * 0x10000ul), 0, 0xffff)],
d->ctable[CLAMP((int)(xc[3] * 0x10000ul), 0, 0xffff)] };
dt_iop_estimate_exp(xc, yc, 4, d->cunbounded_coeffs);
// generate precomputed brightness curve
const float gamma = (d->brightness >= 0.0f) ? 1.0f / (1.0f + d->brightness) : (1.0f - d->brightness);
DT_OMP_FOR()
for(int k = 0; k < 0x10000; k++)
{
d->ltable[k] = 100.0f * powf((float)k / 0x10000, gamma);
}
// now the extrapolation stuff for the brightness curve:
const float xl[4] = { 0.7f, 0.8f, 0.9f, 1.0f };
const float yl[4] = { d->ltable[CLAMP((int)(xl[0] * 0x10000ul), 0, 0xffff)],
d->ltable[CLAMP((int)(xl[1] * 0x10000ul), 0, 0xffff)],
d->ltable[CLAMP((int)(xl[2] * 0x10000ul), 0, 0xffff)],
d->ltable[CLAMP((int)(xl[3] * 0x10000ul), 0, 0xffff)] };
dt_iop_estimate_exp(xl, yl, 4, d->lunbounded_coeffs);
}
void init_pipe(dt_iop_module_t *self, dt_dev_pixelpipe_t *pipe, dt_dev_pixelpipe_iop_t *piece)
{
dt_iop_colisa_data_t *d = calloc(1, sizeof(dt_iop_colisa_data_t));
piece->data = (void *)d;
for(int k = 0; k < 0x10000; k++) d->ctable[k] = d->ltable[k] = 100.0f * k / 0x10000; // identity
}
void cleanup_pipe(dt_iop_module_t *self, dt_dev_pixelpipe_t *pipe, dt_dev_pixelpipe_iop_t *piece)
{
free(piece->data);
piece->data = NULL;
}
void init_global(dt_iop_module_so_t *self)
{
const int program = 2; // basic.cl, from programs.conf
dt_iop_colisa_global_data_t *gd = malloc(sizeof(dt_iop_colisa_global_data_t));
self->data = gd;
gd->kernel_colisa = dt_opencl_create_kernel(program, "colisa");
}
void cleanup_global(dt_iop_module_so_t *self)
{
dt_iop_colisa_global_data_t *gd = self->data;
dt_opencl_free_kernel(gd->kernel_colisa);
free(self->data);
self->data = NULL;
}
void gui_init(dt_iop_module_t *self)
{
dt_iop_colisa_gui_data_t *g = IOP_GUI_ALLOC(colisa);
g->contrast = dt_bauhaus_slider_from_params(self, N_("contrast"));
g->brightness = dt_bauhaus_slider_from_params(self, N_("brightness"));
g->saturation = dt_bauhaus_slider_from_params(self, N_("saturation"));
gtk_widget_set_tooltip_text(g->contrast, _("contrast adjustment"));
gtk_widget_set_tooltip_text(g->brightness, _("brightness adjustment"));
gtk_widget_set_tooltip_text(g->saturation, _("color saturation adjustment"));
}
// clang-format off
// modelines: These editor modelines have been set for all relevant files by tools/update_modelines.py
// vim: shiftwidth=2 expandtab tabstop=2 cindent
// kate: tab-indents: off; indent-width 2; replace-tabs on; indent-mode cstyle; remove-trailing-spaces modified;
// clang-format on