Ansel 0.0
A darktable fork - bloat + design vision
Loading...
Searching...
No Matches
heal.h
Go to the documentation of this file.
1/*
2 This file is part of darktable,
3 Copyright (C) 2017 Edgardo Hoszowski.
4 Copyright (C) 2020, 2022 Pascal Obry.
5 Copyright (C) 2021 Ralf Brown.
6 Copyright (C) 2022 Martin Baƙinka.
7
8 darktable is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 darktable is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with darktable. If not, see <http://www.gnu.org/licenses/>.
20*/
21
22#ifndef DT_DEVELOP_HEAL_H
23#define DT_DEVELOP_HEAL_H
24
25/* heals dest_buffer using src_buffer as a reference and mask_buffer to define the area to be healed
26 * the 3 buffers must have the same size, but mask_buffer is 1 channel and is tested for != 0.f
27 */
28void dt_heal(const float *const src_buffer, float *dest_buffer, const float *const mask_buffer, const int width,
29 const int height, const int ch, const int max_iter);
30
31#ifdef HAVE_OPENCL
32
33typedef struct dt_heal_cl_global_t
34{
35 int kernel_dummy;
36} dt_heal_cl_global_t;
37
38typedef struct heal_params_cl_t
39{
40 dt_heal_cl_global_t *global;
41 int devid;
42} heal_params_cl_t;
43
44dt_heal_cl_global_t *dt_heal_init_cl_global(void);
45void dt_heal_free_cl_global(dt_heal_cl_global_t *g);
46
47heal_params_cl_t *dt_heal_init_cl(const int devid);
48void dt_heal_free_cl(heal_params_cl_t *p);
49
50cl_int dt_heal_cl(heal_params_cl_t *p, cl_mem dev_src, cl_mem dev_dest, const float *const mask_buffer,
51 const int width, const int height, const int max_iter);
52
53#endif
54#endif
55// clang-format off
56// modelines: These editor modelines have been set for all relevant files by tools/update_modelines.py
57// vim: shiftwidth=2 expandtab tabstop=2 cindent
58// kate: tab-indents: off; indent-width 2; replace-tabs on; indent-mode cstyle; remove-trailing-spaces modified;
59// clang-format on
int width
Definition bilateral.h:1
int height
Definition bilateral.h:1
static const dt_aligned_pixel_simd_t const dt_adaptation_t const float p
Definition chromatic_adaptation.h:315
const float g
Definition colorspaces_inline_conversions.h:925
void dt_heal(const float *const src_buffer, float *dest_buffer, const float *const mask_buffer, const int width, const int height, const int ch, const int max_iter)
Definition heal.c:399