LYGIA Shader Library

median (lygia/filter/median)

3x3 and 5x5 median filter, adapted from "A Fast, Small-Radius GPU Median Filter" by Morgan McGuire in ShaderX6 https://casual-effects.com/research/McGuire2008Median/index.html

Dependencies:

Use:

median(<SAMPLER_TYPE> texture, <vec2> st, <vec2> pixel)

Check it on Github



#ifndef MEDIAN_AMOUNT
#define MEDIAN_AMOUNT median5
#endif

#ifndef MEDIAN_TYPE
#define MEDIAN_TYPE vec4
#endif

#ifndef MEDIAN_SAMPLER_FNC
#define MEDIAN_SAMPLER_FNC(TEX, UV) SAMPLER_FNC(TEX, UV)
#endif


#ifndef FNC_MEDIAN
#define FNC_MEDIAN
MEDIAN_TYPE median3(in SAMPLER_TYPE tex, in vec2 st, in vec2 radius) {
    return median2D_fast3(tex, st, radius);
}

MEDIAN_TYPE median5(in SAMPLER_TYPE tex, in vec2 st, in vec2 radius) {
    return median2D_fast5(tex, st, radius);
}

MEDIAN_TYPE median(in SAMPLER_TYPE tex, in vec2 st, in vec2 radius) {
    return MEDIAN_AMOUNT(tex, st, radius);
}
#endif

Dependencies:

Use:

median(<SAMPLER_TYPE> texture, <float2> st, <float2> pixel)

Check it on Github



#ifndef MEDIAN_AMOUNT
#define MEDIAN_AMOUNT median5
#endif

#ifndef MEDIAN_TYPE
#define MEDIAN_TYPE float4
#endif

#ifndef MEDIAN_SAMPLER_FNC
#define MEDIAN_SAMPLER_FNC(TEX, UV) SAMPLER_FNC(TEX, UV)
#endif


#ifndef FNC_MEDIAN
#define FNC_MEDIAN
MEDIAN_TYPE median3(in SAMPLER_TYPE tex, in float2 st, in float2 radius) {
    return median2D_fast3(tex, st, radius);
}

MEDIAN_TYPE median5(in SAMPLER_TYPE tex, in float2 st, in float2 radius) {
    return median2D_fast5(tex, st, radius);
}

MEDIAN_TYPE median(in SAMPLER_TYPE tex, in float2 st, in float2 radius) {
    return MEDIAN_AMOUNT(tex, st, radius);
}
#endif

Examples

License

Copyright (c) Morgan McGuire and Williams College, 2006. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

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.

Get the latest news and releases

Sign up for the news letter bellow, joing the LYGIA's channel on Discord or follow the Github repository