67Array
blend_gradients(
const Array &array1,
const Array &array2,
int ir = 4);
84Array
blend_negate(
const Array &array1,
const Array &array2);
102Array
blend_overlay(
const Array &array1,
const Array &array2);
123Array
blend_soft(
const Array &array1,
const Array &array2);
144Array
mixer(
const Array &t,
145 const std::vector<const Array *> &arrays,
146 float gain_factor = 1.f);
181 const int iterations = 500,
182 const Array *p_mask =
nullptr);
Declaration of the Array class for 2D floating-point arrays with various mathematical operations and ...
Array class, helper to manipulate 2D float array with "(i, j)" indexing.
Definition array.hpp:32
Definition blending.hpp:151
Array blend_gradients(const Array &array1, const Array &array2, int ir=4)
See hmap::blend_gradients.
Definition blending_gpu.cpp:16
Array blend_poisson_bf(const Array &array1, const Array &array2, const int iterations=500, const Array *p_mask=nullptr)
Blends two arrays using Poisson blending with a brute-force solver.
Definition blending_gpu.cpp:30
Definition algebra.hpp:28
Array blend_negate(const Array &array1, const Array &array2)
Return the 'negate' blending of two arrays.
Definition blending.cpp:38
Array blend_overlay(const Array &array1, const Array &array2)
Return the 'overlay' blending of two arrays.
Definition blending.cpp:53
Array blend_soft(const Array &array1, const Array &array2)
Return the 'soft' blending of two arrays.
Definition blending.cpp:68
Array blend_exclusion(const Array &array1, const Array &array2)
Return the 'exclusion' blending of two arrays.
Definition blending.cpp:17
Array mixer(const Array &t, const std::vector< const Array * > &arrays, float gain_factor=1.f)
Return the mixing of a set of arrays based on a parameter t.
Definition blending.cpp:76
Array blend_gradients(const Array &array1, const Array &array2, int ir=4)
Return the blending of two arrays based on their gradients.
Definition blending.cpp:24