lygia
/morphological
/pyramid
)down and up scaling functions for convolution pyramid https://www.cs.huji.ac.il/labs/cglab/projects/convpyr/data/convpyr-small.pdf
Dependencies:
lygia
/morphological
/pyramid
/downscale
.glsl
lygia
/morphological
/pyramid
/upscale
.glsl
Use:
pyramid(<SAMPLER_TYPE> texture0, <SAMPLER_TYPE> texture1, <vec2> st, <vec2> pixel, <bool> upscale)
// POISSON FILL (DEFAULT)
// #define PYRAMID_H1 1.0334, 0.6836, 0.1507
// #define PYRAMID_H2 0.0270
// #define PYRAMID_G 0.7753, 0.0312
// LAPLACIAN INTEGRATOR
// #define PYRAMID_H1 0.7, 0.5, 0.15
// #define PYRAMID_H2 1.0
// #define PYRAMID_G 0.547, 0.175
#ifndef FNC_PYRAMID
#define FNC_PYRAMID
vec4 pyramid(SAMPLER_TYPE tex0, SAMPLER_TYPE tex1, vec2 st, vec2 pixel, bool upscale) {
vec4 color = vec4(0.0);
if (!upscale) {
color = pyramidDownscale(tex0, st, pixel);
}
else {
color = pyramidUpscale(tex0, tex1, st, pixel);
}
return (color.a == 0.0)? color : vec4(color.rgb/color.a, 1.0);
}
#endif
LYGIA is dual-licensed under the Prosperity License and the Patron License for sponsors and contributors.
Sponsors and contributors are automatically added to the Patron License and they can ignore the any non-commercial rule of the Prosperity Licensed software (please take a look to the exception).
It's also possible to get a permanent comercial license hook to a single and specific version of LYGIA.
Sign up for the news letter bellow, joing the LYGIA's channel on Discord or follow the Github repository