1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
|
/* LIBGIMP - The GIMP Library
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
*
* This library is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see
* <https://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <gegl.h>
#include <glib-object.h>
#include "libgimpmath/gimpmath.h"
#include "gimpcolortypes.h"
#include "gimpbilinear.h"
/**
* SECTION: gimpbilinear
* @title: GimpBilinear
* @short_description: Utility functions for bilinear interpolation.
*
* Utility functions for bilinear interpolation.
**/
/**
* gimp_bilinear:
* @x:
* @y:
* @values: (array fixed-size=4):
*/
gdouble
gimp_bilinear (gdouble x,
gdouble y,
gdouble *values)
{
gdouble m0, m1;
g_return_val_if_fail (values != NULL, 0.0);
x = fmod (x, 1.0);
y = fmod (y, 1.0);
if (x < 0.0)
x += 1.0;
if (y < 0.0)
y += 1.0;
m0 = (1.0 - x) * values[0] + x * values[1];
m1 = (1.0 - x) * values[2] + x * values[3];
return (1.0 - y) * m0 + y * m1;
}
/**
* gimp_bilinear_8:
* @x:
* @y:
* @values: (array fixed-size=4):
*/
guchar
gimp_bilinear_8 (gdouble x,
gdouble y,
guchar *values)
{
gdouble m0, m1;
g_return_val_if_fail (values != NULL, 0);
x = fmod (x, 1.0);
y = fmod (y, 1.0);
if (x < 0.0)
x += 1.0;
if (y < 0.0)
y += 1.0;
m0 = (1.0 - x) * values[0] + x * values[1];
m1 = (1.0 - x) * values[2] + x * values[3];
return (guchar) ((1.0 - y) * m0 + y * m1);
}
/**
* gimp_bilinear_16:
* @x:
* @y:
* @values: (array fixed-size=4):
*/
guint16
gimp_bilinear_16 (gdouble x,
gdouble y,
guint16 *values)
{
gdouble m0, m1;
g_return_val_if_fail (values != NULL, 0);
x = fmod (x, 1.0);
y = fmod (y, 1.0);
if (x < 0.0)
x += 1.0;
if (y < 0.0)
y += 1.0;
m0 = (1.0 - x) * values[0] + x * values[1];
m1 = (1.0 - x) * values[2] + x * values[3];
return (guint16) ((1.0 - y) * m0 + y * m1);
}
/**
* gimp_bilinear_32:
* @x:
* @y:
* @values: (array fixed-size=4):
*/
guint32
gimp_bilinear_32 (gdouble x,
gdouble y,
guint32 *values)
{
gdouble m0, m1;
g_return_val_if_fail (values != NULL, 0);
x = fmod (x, 1.0);
y = fmod (y, 1.0);
if (x < 0.0)
x += 1.0;
if (y < 0.0)
y += 1.0;
m0 = (1.0 - x) * values[0] + x * values[1];
m1 = (1.0 - x) * values[2] + x * values[3];
return (guint32) ((1.0 - y) * m0 + y * m1);
}
/**
* gimp_bilinear_rgb:
* @x:
* @y:
* @values: (array fixed-size=16): Array of pixels in RGBA double format
* @has_alpha: Whether @values has an alpha channel
* @retvalues: (array fixed-size=4): Resulting pixel
*/
void
gimp_bilinear_rgb (gdouble x,
gdouble y,
gdouble *values,
gboolean has_alpha,
gdouble *retvalues)
{
gdouble m0;
gdouble m1;
gdouble ix;
gdouble iy;
gdouble a[4] = { 1.0, 1.0, 1.0, 1.0 };
gdouble alpha = 1.0;
for (gint i = 0; i < 3; i++)
retvalues[i] = 0.0;
retvalues[3] = 1.0;
g_return_if_fail (values != NULL);
x = fmod (x, 1.0);
y = fmod (y, 1.0);
if (x < 0)
x += 1.0;
if (y < 0)
y += 1.0;
ix = 1.0 - x;
iy = 1.0 - y;
if (has_alpha)
{
for (gint i = 0; i < 4; i++)
a[i] = values[(i * 4) + 3];
m0 = ix * a[0] + x * a[1];
m1 = ix * a[2] + x * a[3];
alpha = retvalues[3] = iy * m0 + y * m1;
}
if (alpha > 0)
{
for (gint i = 0; i < 3; i++)
{
m0 = ix * a[0] * values[0 + i] + x * a[1] * values[4 + i];
m1 = ix * a[2] * values[8 + i] + x * a[3] * values[12 + i];
retvalues[i] = (iy * m0 + y * m1) / alpha;
}
}
}
|