diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-09-01 13:56:46 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-09-01 13:56:46 +0200 |
commit | 22f703cab05b7cd368f4de9e03991b7664dc5022 (patch) | |
tree | 6f4d50beaa42328e24b1c6b56b6ec059e4ef21a5 /rspl/mlbs.h |
Initial import of argyll version 1.5.1-8debian/1.5.1-8
Diffstat (limited to 'rspl/mlbs.h')
-rw-r--r-- | rspl/mlbs.h | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/rspl/mlbs.h b/rspl/mlbs.h new file mode 100644 index 0000000..4678cfd --- /dev/null +++ b/rspl/mlbs.h @@ -0,0 +1,77 @@ + +/* + * Argyll Color Correction System + * + * Scattered Data Interpolation with multilevel B-splines library. + * This can be used by rspl, or independently by any other routine. + * + * Author: Graeme W. Gill + * Date: 2001/1/1 + * + * Copyright 2000 - 2001 Graeme W. Gill + * All rights reserved. + * + * This material is licenced under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3 :- + * see the License.txt file for licencing details. + */ + +/* + * This is from the paper + * "Scattered Data Interpolation with Multilevel B-Splines" + * by Seungyong Lee, George Wolberg and Sung Yong Shin, + * IEEE Transactions on Visualisation and Computer Graphics + * Vol. 3, No. 3, July-September 1997, pp 228. + */ + +#include "rspl.h" /* Define some common elements */ + +/* Neighborhood latice cache data */ +typedef struct { + int c[MXDI]; /* Coordinate */ + int xo; /* Offset into slbs latice */ + double w; /* B-spline basis weight */ +} neigh; + +/* Structure that represents a resolution level of B-splines */ +struct _slbs { + struct _mlbs *p; /* Parent structure */ + int res; /* Basic resolution */ + int coi[MXDI]; /* Double increment for each input dimension into latice */ + double *lat; /* Control latice, extending from +/- 1 from 0..res-1 */ + double *_lat; /* Allocation base of lat */ + int lsize, loff; /* Number of doubles in _lat, offset of lat from _lat */ + double w[MXDI]; /* Input data cell width */ + neigh *n; /* Neighborhood latice cache */ + int nsize; /* Number of n entries */ +}; typedef struct _slbs slbs; + +/* Structure that represents the whole scattered interpolation state */ +struct _mlbs { + int di; /* Input dimensions */ + int fdi; /* Output dimensions */ + int tres; /* Target resolution */ + double smf; /* Smoothing factor */ + int npts; /* Number of data points */ + dpnts *pts; /* Coordinate points and weights (valid while creating) */ + double l[MXDI], h[MXDI]; /* Input data range, cell width */ + slbs *s; /* Current B-spline latice */ + + int (*lookup)(struct _mlbs *p, co *c); + + void (*del)(struct _mlbs *p); + +}; typedef struct _mlbs mlbs; + + +/* Create a new empty mlbs */ +mlbs *new_mlbs( +int di, /* Input dimensionality */ +int fdi, /* Output dimesionality */ +int res, /* Minimum final resolution */ +dpnts *pts, /* scattered data points and weights */ +int npts, /* number of scattered data points */ +double *l, /* Input data range, low (May be NULL) */ +double *h, /* Input data range, high (May be NULL) */ +double smf /* Smoothing factor */ +); + |