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
|
/*
* Argyll Color Correction System
* Multi-dimensional regularized spline
* Implementation header.
*
* Author: Graeme W. Gill
* Date: 28/9/96
*
* Copyright 1996, 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.
*/
#include "rspl.h"
#ifndef RSPL_IMP_H
/* These three factors controll how the monotonic stuff behaves. */
#define MCINC 0.05 /* The tollerance for detecting non-monoticity */
#define BALLEV 0.8 /* Balance level of adjusted points */
#define RADF 0.01 /* Radius factor of nme influence */
#define RSPL_IMP_H
#endif /* RSPL_IMP_H */
|