-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconvert.im
331 lines (277 loc) · 7.51 KB
/
convert.im
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
/*
=head1 NAME
convert.im - image conversions
=head1 SYNOPSIS
out = i_convert(srcimage, coeff, outchans, inchans)
=head1 DESCRIPTION
Converts images from one format to another, typically in this case for
converting from RGBA to greyscale and back.
=over
=cut
*/
#define IMAGER_NO_CONTEXT
#include "imager.h"
struct chan_copy {
/* channels to copy */
int copy_count;
int from[MAXCHANNELS];
int to[MAXCHANNELS];
/* channels to zero */
int zero_count;
int zero[MAXCHANNELS];
/* channels to set to maxsample */
int one_count;
int one[MAXCHANNELS];
};
static int
is_channel_copy(i_img *im, const double *coeff,
int outchan, int inchan,
struct chan_copy *info);
static i_img *
convert_via_copy(i_img *im, i_img *src, struct chan_copy *info);
/*
=item i_convert(src, coeff, outchan, inchan)
Converts the image src into another image.
coeff contains the co-efficients of an outchan x inchan matrix, for
each output pixel:
coeff[0], coeff[1] ...
im[x,y] = [ coeff[inchan], coeff[inchan+1]... ] * [ src[x,y], 1]
... coeff[inchan*outchan-1]
If im has the wrong number of channels or is the wrong size then
i_convert() will re-create it.
Now handles images with more than 8-bits/sample.
=cut
*/
i_img *
i_convert(i_img *src, const double *coeff, int outchan, int inchan) {
double work[MAXCHANNELS];
i_img_dim x, y;
int i, j;
int ilimit;
i_img *im = NULL;
dIMCTXim(src);
im_log((aIMCTX,1,"i_convert(im %p, src %p, coeff %p,outchan %d, inchan %d)\n",
im, src, coeff, outchan, inchan));
im_clear_error(aIMCTX);
ilimit = inchan;
if (ilimit > src->channels)
ilimit = src->channels;
if (outchan > MAXCHANNELS) {
im_push_error(aIMCTX, 0, "cannot have outchan > MAXCHANNELS");
return 0;
}
if (src->type == i_direct_type) {
struct chan_copy info;
im = i_sametype_chans(src, src->xsize, src->ysize, outchan);
if (is_channel_copy(src, coeff, outchan, inchan, &info)) {
return convert_via_copy(im, src, &info);
}
else {
#code src->bits <= i_8_bits
IM_COLOR *vals;
/* we can always allocate a single scanline of i_color */
vals = mymalloc(sizeof(IM_COLOR) * src->xsize); /* checked 04Jul05 tonyc */
for (y = 0; y < src->ysize; ++y) {
IM_GLIN(src, 0, src->xsize, y, vals);
for (x = 0; x < src->xsize; ++x) {
for (j = 0; j < outchan; ++j) {
work[j] = 0;
for (i = 0; i < ilimit; ++i) {
work[j] += coeff[i+inchan*j] * vals[x].channel[i];
}
if (i < inchan) {
work[j] += coeff[i+inchan*j] * IM_SAMPLE_MAX;
}
}
for (j = 0; j < outchan; ++j) {
if (work[j] < 0)
vals[x].channel[j] = 0;
else if (work[j] >= IM_SAMPLE_MAX)
vals[x].channel[j] = IM_SAMPLE_MAX;
else
vals[x].channel[j] = work[j];
}
}
IM_PLIN(im, 0, src->xsize, y, vals);
}
myfree(vals);
#/code
}
}
else {
int count;
int outcount;
int index;
i_color *colors;
i_palidx *vals;
im = im_img_pal_new(aIMCTX, src->xsize, src->ysize, outchan,
i_maxcolors(src));
/* just translate the color table */
count = i_colorcount(src);
outcount = i_colorcount(im);
/* color table allocated for image, so it must fit */
colors = mymalloc(count * sizeof(i_color)); /* check 04Jul05 tonyc */
i_getcolors(src, 0, colors, count);
for (index = 0; index < count; ++index) {
for (j = 0; j < outchan; ++j) {
work[j] = 0;
for (i = 0; i < ilimit; ++i) {
work[j] += coeff[i+inchan*j] * colors[index].channel[i];
}
if (i < inchan) {
work[j] += coeff[i+inchan*j] * 255.9;
}
}
for (j = 0; j < outchan; ++j) {
if (work[j] < 0)
colors[index].channel[j] = 0;
else if (work[j] >= 255)
colors[index].channel[j] = 255;
else
colors[index].channel[j] = work[j];
}
}
if (count < outcount) {
i_setcolors(im, 0, colors, count);
}
else {
i_setcolors(im, 0, colors, outcount);
i_addcolors(im, colors, count-outcount);
}
/* and copy the indicies */
/* i_palidx is always unsigned char and will never be bigger than short
and since a line of 4-byte i_colors can fit then a line of i_palidx
will fit */
vals = mymalloc(sizeof(i_palidx) * im->xsize); /* checked 4jul05 tonyc */
for (y = 0; y < im->ysize; ++y) {
i_gpal(src, 0, im->xsize, y, vals);
i_ppal(im, 0, im->xsize, y, vals);
}
myfree(vals);
myfree(colors);
}
return im;
}
/*
=item is_channel_copy(coeff, outchan, inchan, chan_copy_info)
Test if the coefficients represent just copying channels around, and
initialize lists of the channels to copy, zero or set to max.
=cut
*/
static
int is_channel_copy(i_img *im, const double *coeff, int outchan, int inchan,
struct chan_copy *info) {
int srcchan[MAXCHANNELS];
int onechan[MAXCHANNELS];
int i, j;
int ilimit = im->channels > inchan ? inchan : im->channels;
for (j = 0; j < outchan; ++j) {
srcchan[j] = -1;
onechan[j] = 0;
}
for (j = 0; j < outchan; ++j) {
for (i = 0; i < ilimit; ++i) {
if (coeff[i+inchan*j] == 1.0) {
if (srcchan[j] != -1) {
/* from two or more channels, not a copy */
return 0;
}
srcchan[j] = i;
}
else if (coeff[i+inchan*j]) {
/* some other non-zero value, not a copy */
return 0;
}
}
if (i < inchan) {
if (coeff[i+inchan*j] == 1.0) {
if (srcchan[j] != -1) {
/* can't do both */
return 0;
}
onechan[j] = 1;
}
else if (coeff[i+inchan*j]) {
/* some other non-zero value, not a copy */
return 0;
}
}
}
/* build our working data structures */
info->copy_count = info->zero_count = info->one_count = 0;
for (j = 0; j < outchan; ++j) {
if (srcchan[j] != -1) {
info->from[info->copy_count] = srcchan[j];
info->to[info->copy_count] = j;
++info->copy_count;
}
else if (onechan[j]) {
info->one[info->one_count] = j;
++info->one_count;
}
else {
info->zero[info->zero_count] = j;
++info->zero_count;
}
}
#if 0
{
for (i = 0; i < info->copy_count; ++i) {
printf("From %d to %d\n", info->from[i], info->to[i]);
}
for (i = 0; i < info->one_count; ++i) {
printf("One %d\n", info->one[i]);
}
for (i = 0; i < info->zero_count; ++i) {
printf("Zero %d\n", info->zero[i]);
}
fflush(stdout);
}
#endif
return 1;
}
/*
=item convert_via_copy(im, src, chan_copy_info)
Perform a convert that only requires channel copies.
=cut
*/
static i_img *
convert_via_copy(i_img *im, i_img *src, struct chan_copy *info) {
#code src->bits <= i_8_bits
IM_COLOR *in_line = mymalloc(sizeof(IM_COLOR) * src->xsize);
IM_COLOR *out_line = mymalloc(sizeof(IM_COLOR) * src->xsize);
i_img_dim x, y;
int i;
IM_COLOR *inp, *outp;
for (y = 0; y < src->ysize; ++y) {
IM_GLIN(src, 0, src->xsize, y, in_line);
inp = in_line;
outp = out_line;
for (x = 0; x < src->xsize; ++x) {
for (i = 0; i < info->copy_count; ++i) {
outp->channel[info->to[i]] = inp->channel[info->from[i]];
}
for (i = 0; i < info->one_count; ++i) {
outp->channel[info->one[i]] = IM_SAMPLE_MAX;
}
for (i = 0; i < info->zero_count; ++i) {
outp->channel[info->zero[i]] = 0;
}
++inp;
++outp;
}
IM_PLIN(im, 0, src->xsize, y, out_line);
}
myfree(in_line);
myfree(out_line);
#/code
return im;
}
/*
=back
=head1 SEE ALSO
Imager(3)
=head1 AUTHOR
Tony Cook <[email protected]>
=cut
*/