-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultiProcessElement.cs
213 lines (186 loc) · 8.49 KB
/
MultiProcessElement.cs
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
using System;
/* This library reads version 4.3 and compatible ICC-profiles as specified by the International Color Consortium.
Copyright (C) 2013 Johannes Bildstein
This program 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 3 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, see <http://www.gnu.org/licenses/>.*/
namespace ICCReader
{
/// <summary>
/// An element to process data
/// </summary>
public abstract class MultiProcessElement
{
/// <summary>
/// The signature of this element
/// </summary>
public abstract multiProcessElementSignature Signature { get; }
/// <summary>
/// Number of input channels
/// </summary>
public ushort InputChannelCount { get; protected set; }
/// <summary>
/// Number of output channels
/// </summary>
public ushort OutputChannelCount { get; protected set; }
internal static MultiProcessElement CreateElement(int idx)
{
//Tag signature (byte position 0 to 3) (4 to 7 are zero)
multiProcessElementSignature t = (multiProcessElementSignature)Helper.GetUInt32(idx);
//Number of input channels (2 bytes)
ushort InputChannelCount = Helper.GetUInt16(idx + 8);
//Number of output channels (2 bytes)
ushort OutputChannelCount = Helper.GetUInt16(idx + 10);
return GetElement(t, idx + 12, InputChannelCount, OutputChannelCount);
}
private static MultiProcessElement GetElement(multiProcessElementSignature type, int idx, ushort InputChannelCount, ushort OutputChannelCount)
{
switch (type)
{
case multiProcessElementSignature.CurveSet:
return new CurveSetProcessElement(idx, InputChannelCount, OutputChannelCount);
case multiProcessElementSignature.CLUT:
return new CLUTProcessElement(idx, InputChannelCount, OutputChannelCount);
case multiProcessElementSignature.Matrix:
return new MatrixProcessElement(idx, InputChannelCount, OutputChannelCount);
case multiProcessElementSignature.bACS:
return new bACSProcessElement(idx, InputChannelCount, OutputChannelCount);
case multiProcessElementSignature.eACS:
return new eACSProcessElement(idx, InputChannelCount, OutputChannelCount);
default:
throw new CorruptProfileException("MultiProcessElement");
}
}
public abstract double[] GetValue(double[] inColor);
}
/// <summary>
/// A matrix element to process data
/// </summary>
public sealed class MatrixProcessElement : MultiProcessElement
{
/// <summary>
/// The signature of this element
/// </summary>
public override multiProcessElementSignature Signature { get { return multiProcessElementSignature.Matrix; } }
public double[,] MatrixIxO { get; private set; }
public double[] MatrixOx1 { get; private set; }
internal MatrixProcessElement(int idx, ushort InputChannelCount, ushort OutputChannelCount)
{
this.InputChannelCount = InputChannelCount;
this.OutputChannelCount = OutputChannelCount;
//Matrix IxO (4 bytes each)
MatrixIxO = Helper.GetMatrix(InputChannelCount, OutputChannelCount, idx, true);
//Matrix Ox1 (4 bytes each)
MatrixOx1 = Helper.GetMatrix(OutputChannelCount, idx + (4 * InputChannelCount * OutputChannelCount), true);
}
public override double[] GetValue(double[] inColor)
{
if (inColor.Length != InputChannelCount) { throw new ArgumentException("Input color channel count does not match element channel count"); }
return Helper.AddMatrix(Helper.MultiplyMatrix(MatrixIxO, inColor), MatrixOx1);
}
}
/// <summary>
/// A set of curves to process data
/// </summary>
public sealed class CurveSetProcessElement : MultiProcessElement
{
/// <summary>
/// The signature of this element
/// </summary>
public override multiProcessElementSignature Signature { get { return multiProcessElementSignature.CurveSet; } }
/// <summary>
/// An array with one dimensional curves
/// </summary>
public OneDimensionalCurve[] Curves { get; private set; }
internal PositionNumber[] CurvePositions { get; private set; }
internal CurveSetProcessElement(int idx, ushort InputChannelCount, ushort OutputChannelCount)
{
this.InputChannelCount = InputChannelCount;
this.OutputChannelCount = OutputChannelCount;
//Curves
Curves = new OneDimensionalCurve[InputChannelCount]; int end = idx;
for (int i = 0; i < InputChannelCount; i++)
{
Curves[i] = new OneDimensionalCurve(end);
end = Curves[i].end + Curves[i].end % 4;
}
}
public override double[] GetValue(double[] inColor)
{
if (inColor.Length != InputChannelCount) { throw new ArgumentException("Input color channel count does not match element channel count"); }
double[] output = new double[InputChannelCount];
for (int i = 0; i < InputChannelCount; i++) { output[i] = Curves[i].GetValue(inColor[i]); }
return output;
}
}
/// <summary>
/// An CLUT (Color Look-Up-Table) element to process data
/// </summary>
public sealed class CLUTProcessElement : MultiProcessElement
{
/// <summary>
/// The signature of this element
/// </summary>
public override multiProcessElementSignature Signature { get { return multiProcessElementSignature.CLUT; } }
public CLUTf32 CLUTvalues { get; private set; }
internal CLUTProcessElement(int idx, ushort InputChannelCount, ushort OutputChannelCount)
{
this.InputChannelCount = InputChannelCount;
this.OutputChannelCount = OutputChannelCount;
//CLUT
CLUTvalues = (CLUTf32)CLUT.GetCLUT(idx, true, InputChannelCount, OutputChannelCount);
}
public override double[] GetValue(double[] inColor)
{
if (inColor.Length != InputChannelCount) { throw new ArgumentException("Input color channel count does not match element channel count"); }
return CLUTvalues.GetValue(inColor);
}
}
/// <summary>
/// An empty process element for future expansion
/// </summary>
public sealed class bACSProcessElement : MultiProcessElement
{
/// <summary>
/// The signature of this element
/// </summary>
public override multiProcessElementSignature Signature { get { return multiProcessElementSignature.bACS; } }
internal bACSProcessElement(int idx, ushort InputChannelCount, ushort OutputChannelCount)
{
this.InputChannelCount = InputChannelCount;
this.OutputChannelCount = OutputChannelCount;
//Nothing (reserved for future expansion)
}
public override double[] GetValue(double[] inColor)
{
return null;
}
}
/// <summary>
/// An empty process element for future expansion
/// </summary>
public sealed class eACSProcessElement : MultiProcessElement
{
/// <summary>
/// The signature of this element
/// </summary>
public override multiProcessElementSignature Signature { get { return multiProcessElementSignature.eACS; } }
internal eACSProcessElement(int idx, ushort InputChannelCount, ushort OutputChannelCount)
{
this.InputChannelCount = InputChannelCount;
this.OutputChannelCount = OutputChannelCount;
//Nothing (reserved for future expansion)
}
public override double[] GetValue(double[] inColor)
{
return null;
}
}
}