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_PIXEL_HEAL_H
23#define DT_PIXEL_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
37
43
44void dt_heal_init_cl_global(void);
45void dt_heal_free_cl_global(void);
46
47heal_params_cl_t *dt_heal_init_cl(const int devid);
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
void dt_heal_free_cl_global(void)
Definition heal.c:432
void dt_heal_free_cl(heal_params_cl_t *p)
Definition heal.c:453
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:386
void dt_heal_init_cl_global(void)
Definition heal.c:425
cl_int dt_heal_cl(heal_params_cl_t *p, cl_mem dev_src, cl_mem dev_dest, const float *const mask_buffer, const int width, const int height, const int max_iter)
Definition heal.c:459
heal_params_cl_t * dt_heal_init_cl(const int devid)
Definition heal.c:441
float *const restrict const size_t const size_t ch
uint32_t width
Definition mipmap_cache.c:0
uint32_t height
Definition mipmap_cache.c:1
dt_heal_cl_global_t * global
Definition heal.h:40