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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
|
/* */
/* Little cms - profiler construction set */
/* Copyright (C) 1998-2001 Marti Maria <[email protected]> */
/* */
/* THIS SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY */
/* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. */
/* */
/* IN NO EVENT SHALL MARTI MARIA BE LIABLE FOR ANY SPECIAL, INCIDENTAL, */
/* INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, */
/* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, */
/* WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF */
/* LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE */
/* OF THIS SOFTWARE. */
/* */
/* This file is free software; you can redistribute it and/or modify it */
/* under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License, or */
/* (at your option) any later version. */
/* */
/* This program 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 */
/* General Public License for more details. */
/* */
/* You should have received a copy of the GNU General Public License */
/* along with this program; if not, write to the Free Software */
/* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
/* */
/* As a special exception to the GNU General Public License, if you */
/* distribute this file as part of a program that contains a */
/* configuration script generated by Autoconf, you may include it under */
/* the same distribution terms that you use for the rest of that program. */
/* */
/* Version 1.08a */
#include "lcmsprf.h"
BOOL cdecl cmsxComputeMatrixShaper(const char* ReferenceSheet,
const char* MeasurementSheet,
int Medium,
LPGAMMATABLE TransferCurves[3],
LPcmsCIEXYZ WhitePoint,
LPcmsCIEXYZ BlackPoint,
LPcmsCIExyYTRIPLE Primaries);
/* ------------------------------------------------------------- Implementation */
static
void Div100(LPcmsCIEXYZ xyz)
{
xyz -> X /= 100; xyz -> Y /= 100; xyz -> Z /= 100;
}
/* Compute endpoints */
static
BOOL ComputeWhiteAndBlackPoints(LPMEASUREMENT Linearized,
LPGAMMATABLE TransferCurves[3],
LPcmsCIEXYZ Black, LPcmsCIEXYZ White)
{
double Zeroes[3], Ones[3], lmin[3], lmax[3];
SETOFPATCHES Neutrals = cmsxPCollBuildSet(Linearized, false);
cmsxPCollPatchesNearNeutral(Linearized, Linearized->Allowed,
15, Neutrals);
Zeroes[0] = Zeroes[1] = Zeroes[2] = 0.0;
Ones[0] = Ones[1] = Ones[2] = 255.0;
cmsxApplyLinearizationTable(Zeroes, TransferCurves, lmin);
cmsxApplyLinearizationTable(Ones, TransferCurves, lmax);
/* Global regression to find White & Black points */
if (!cmsxRegressionInterpolatorRGB(Linearized, PT_XYZ,
4,
true,
12,
lmin[0], lmin[1], lmin[2],
Black)) return false;
if (!cmsxRegressionInterpolatorRGB(Linearized, PT_XYZ,
4,
true,
12,
lmax[0], lmax[1], lmax[2],
White)) return false;
_cmsxClampXYZ100(White);
_cmsxClampXYZ100(Black);
return true;
}
/* Study convergence of primary axis */
static
BOOL ComputePrimary(LPMEASUREMENT Linearized,
LPGAMMATABLE TransferCurves[3],
int n,
LPcmsCIExyY Primary)
{
double Ones[3], lmax[3];
cmsCIEXYZ PrimXYZ;
SETOFPATCHES SetPrimary;
int nR;
/* At first, try to see if primaries are already in measurement */
SetPrimary = cmsxPCollBuildSet(Linearized, false);
nR = cmsxPCollPatchesNearPrimary(Linearized, Linearized->Allowed,
n, 32, SetPrimary);
Ones[0] = Ones[1] = Ones[2] = 0;
Ones[n] = 255.0;
cmsxApplyLinearizationTable(Ones, TransferCurves, lmax);
/* Do incremental regression to find primaries */
if (!cmsxRegressionInterpolatorRGB(Linearized, PT_XYZ,
4,
false,
12,
lmax[0], lmax[1], lmax[2],
&PrimXYZ)) return false;
_cmsxClampXYZ100(&PrimXYZ);
cmsXYZ2xyY(Primary, &PrimXYZ);
return true;
}
/* Does compute a matrix-shaper based on patches. */
static
double Clip(double d)
{
return d > 0 ? d: 0;
}
BOOL cmsxComputeMatrixShaper(const char* ReferenceSheet,
const char* MeasurementSheet,
int Medium,
LPGAMMATABLE TransferCurves[3],
LPcmsCIEXYZ WhitePoint,
LPcmsCIEXYZ BlackPoint,
LPcmsCIExyYTRIPLE Primaries)
{
MEASUREMENT Linearized;
cmsCIEXYZ Black, White;
cmsCIExyYTRIPLE PrimarySet;
LPPATCH PatchWhite, PatchBlack;
LPPATCH PatchRed, PatchGreen, PatchBlue;
double Distance;
/* Load sheets */
if (!cmsxPCollBuildMeasurement(&Linearized,
ReferenceSheet,
MeasurementSheet,
PATCH_HAS_XYZ|PATCH_HAS_RGB)) return false;
/* Any patch to deal of? */
if (cmsxPCollCountSet(&Linearized, Linearized.Allowed) <= 0) return false;
/* Try to see if proper primaries, white and black already present */
PatchWhite = cmsxPCollFindWhite(&Linearized, Linearized.Allowed, &Distance);
if (Distance != 0)
PatchWhite = NULL;
PatchBlack = cmsxPCollFindBlack(&Linearized, Linearized.Allowed, &Distance);
if (Distance != 0)
PatchBlack = NULL;
PatchRed = cmsxPCollFindPrimary(&Linearized, Linearized.Allowed, 0, &Distance);
if (Distance != 0)
PatchRed = NULL;
PatchGreen = cmsxPCollFindPrimary(&Linearized, Linearized.Allowed, 1, &Distance);
if (Distance != 0)
PatchGreen = NULL;
PatchBlue = cmsxPCollFindPrimary(&Linearized, Linearized.Allowed, 2, &Distance);
if (Distance != 0)
PatchBlue= NULL;
/* If we got primaries, then we can also get prelinearization */
/* by Levenberg-Marquardt. This applies on monitor profiles */
if (PatchWhite && PatchRed && PatchGreen && PatchBlue) {
/* Build matrix with primaries */
MAT3 Mat, MatInv;
LPSAMPLEDCURVE Xr,Yr, Xg, Yg, Xb, Yb;
int i, nRes, cnt;
VEC3init(&Mat.v[0], PatchRed->XYZ.X, PatchGreen->XYZ.X, PatchBlue->XYZ.X);
VEC3init(&Mat.v[1], PatchRed->XYZ.Y, PatchGreen->XYZ.Y, PatchBlue->XYZ.Y);
VEC3init(&Mat.v[2], PatchRed->XYZ.Z, PatchGreen->XYZ.Z, PatchBlue->XYZ.Z);
/* Invert matrix */
MAT3inverse(&Mat, &MatInv);
nRes = cmsxPCollCountSet(&Linearized, Linearized.Allowed);
Xr = cmsAllocSampledCurve(nRes);
Yr = cmsAllocSampledCurve(nRes);
Xg = cmsAllocSampledCurve(nRes);
Yg = cmsAllocSampledCurve(nRes);
Xb = cmsAllocSampledCurve(nRes);
Yb = cmsAllocSampledCurve(nRes);
/* Convert XYZ of all patches to RGB */
cnt = 0;
for (i=0; i < Linearized.nPatches; i++) {
if (Linearized.Allowed[i]) {
VEC3 RGBprime, XYZ;
LPPATCH p;
p = Linearized.Patches + i;
XYZ.n[0] = p -> XYZ.X;
XYZ.n[1] = p -> XYZ.Y;
XYZ.n[2] = p -> XYZ.Z;
MAT3eval(&RGBprime, &MatInv, &XYZ);
Xr ->Values[cnt] = p ->Colorant.RGB[0];
Yr ->Values[cnt] = Clip(RGBprime.n[0]);
Xg ->Values[cnt] = p ->Colorant.RGB[1];
Yg ->Values[cnt] = Clip(RGBprime.n[1]);
Xb ->Values[cnt] = p ->Colorant.RGB[2];
Yb ->Values[cnt] = Clip(RGBprime.n[2]);
cnt++;
}
}
TransferCurves[0] = cmsxEstimateGamma(Xr, Yr, 1024);
TransferCurves[1] = cmsxEstimateGamma(Xg, Yg, 1024);
TransferCurves[2] = cmsxEstimateGamma(Xb, Yb, 1024);
if (WhitePoint) {
WhitePoint->X = PatchWhite->XYZ.X;
WhitePoint->Y= PatchWhite ->XYZ.Y;
WhitePoint->Z= PatchWhite ->XYZ.Z;
}
if (BlackPoint && PatchBlack) {
BlackPoint->X = PatchBlack ->XYZ.X;
BlackPoint->Y = PatchBlack ->XYZ.Y;
BlackPoint->Z = PatchBlack ->XYZ.Z;
}
if (Primaries) {
cmsXYZ2xyY(&Primaries->Red, &PatchRed ->XYZ);
cmsXYZ2xyY(&Primaries->Green, &PatchGreen ->XYZ);
cmsXYZ2xyY(&Primaries->Blue, &PatchBlue ->XYZ);
}
cmsFreeSampledCurve(Xr);
cmsFreeSampledCurve(Yr);
cmsFreeSampledCurve(Xg);
cmsFreeSampledCurve(Yg);
cmsFreeSampledCurve(Xb);
cmsFreeSampledCurve(Yb);
cmsxPCollFreeMeasurements(&Linearized);
return true;
}
/* Compute prelinearization */
cmsxComputeLinearizationTables(&Linearized, PT_XYZ, TransferCurves, 1024, Medium);
/* Linearize measurements */
cmsxPCollLinearizePatches(&Linearized, Linearized.Allowed, TransferCurves);
/* Endpoints */
ComputeWhiteAndBlackPoints(&Linearized, TransferCurves, &Black, &White);
/* Primaries */
ComputePrimary(&Linearized, TransferCurves, 0, &PrimarySet.Red);
ComputePrimary(&Linearized, TransferCurves, 1, &PrimarySet.Green);
ComputePrimary(&Linearized, TransferCurves, 2, &PrimarySet.Blue);
if (BlackPoint) {
*BlackPoint = Black;
Div100(BlackPoint);
}
if (WhitePoint) {
*WhitePoint = White;
Div100(WhitePoint);
}
if (Primaries) {
*Primaries = PrimarySet;
}
cmsxPCollFreeMeasurements(&Linearized);
return true;
}
|