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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include <imhdr.h>
include <imset.h>
include <error.h>
include <syserr.h>
include <mach.h>
include "../icombine.h"
# ICOMBINE -- Combine images
#
# The memory and open file descriptor limits are checked and an attempt
# to recover is made either by setting the image pixel files to be
# closed after I/O or by notifying the calling program that memory
# ran out and the IMIO buffer size should be reduced. After the checks
# a procedure for the selected combine option is called.
# Because there may be several failure modes when reaching the file
# limits we first assume an error is due to the file limit, except for
# out of memory, and close some pixel files. If the error then repeats
# on accessing the pixels the error is passed back.
procedure icombines (in, out, offsets, nimages, bufsize)
pointer in[nimages] # Input images
pointer out[ARB] # Output images
int offsets[nimages,ARB] # Input image offsets
int nimages # Number of input images
int bufsize # IMIO buffer size
char str[1]
int i, j, npts, fd, stropen(), errcode(), imstati()
pointer sp, d, id, n, m, lflag, scales, zeros, wts, dbuf
pointer buf, imgl1s(), impl1i()
errchk stropen, imgl1s, impl1i
pointer impl1r()
errchk impl1r
include "../icombine.com"
begin
npts = IM_LEN(out[1],1)
# Allocate memory.
call smark (sp)
call salloc (d, nimages, TY_POINTER)
call salloc (id, nimages, TY_POINTER)
call salloc (n, npts, TY_INT)
call salloc (m, nimages, TY_POINTER)
call salloc (lflag, nimages, TY_INT)
call salloc (scales, nimages, TY_REAL)
call salloc (zeros, nimages, TY_REAL)
call salloc (wts, nimages, TY_REAL)
call amovki (D_ALL, Memi[lflag], nimages)
# If aligned use the IMIO buffer otherwise we need vectors of
# output length.
if (!aligned) {
call salloc (dbuf, nimages, TY_POINTER)
do i = 1, nimages
call salloc (Memi[dbuf+i-1], npts, TY_SHORT)
}
if (project) {
call imseti (in[1], IM_NBUFS, nimages)
call imseti (in[1], IM_BUFSIZE, bufsize)
do i = 1, 3 {
if (out[i] != NULL)
call imseti (out[i], IM_BUFSIZE, bufsize)
}
} else {
# Reserve FD for string operations.
fd = stropen (str, 1, NEW_FILE)
# Do I/O to the images.
do i = 1, 3 {
if (out[i] != NULL)
call imseti (out[i], IM_BUFSIZE, bufsize)
}
buf = impl1r (out[1])
call aclrr (Memr[buf], npts)
if (out[3] != NULL) {
buf = impl1r (out[3])
call aclrr (Memr[buf], npts)
}
if (out[2] != NULL) {
buf = impl1i (out[2])
call aclri (Memi[buf], npts)
}
do i = 1, nimages {
call imseti (in[i], IM_BUFSIZE, bufsize)
iferr (buf = imgl1s (in[i])) {
switch (errcode()) {
case SYS_MFULL:
call sfree (sp)
call strclose (fd)
call erract (EA_ERROR)
case SYS_FTOOMANYFILES, SYS_IKIOPIX:
if (imstati (in[i], IM_CLOSEFD) == YES) {
call sfree (sp)
call strclose (fd)
call erract (EA_ERROR)
}
do j = i-2, nimages
call imseti (in[j], IM_CLOSEFD, YES)
buf = imgl1s (in[i])
default:
call sfree (sp)
call strclose (fd)
call erract (EA_ERROR)
}
}
}
call strclose (fd)
}
call ic_combines (in, out, Memi[dbuf], Memi[d], Memi[id], Memi[n],
Memi[m], Memi[lflag], offsets, Memr[scales], Memr[zeros],
Memr[wts], nimages, npts)
end
# IC_COMBINE -- Combine images.
procedure ic_combines (in, out, dbuf, d, id, n, m, lflag, offsets,
scales, zeros, wts, nimages, npts)
pointer in[nimages] # Input images
pointer out[ARB] # Output image
pointer dbuf[nimages] # Data buffers for nonaligned images
pointer d[nimages] # Data pointers
pointer id[nimages] # Image index ID pointers
int n[npts] # Number of good pixels
pointer m[nimages] # Mask pointers
int lflag[nimages] # Line flags
int offsets[nimages,ARB] # Input image offsets
real scales[nimages] # Scale factors
real zeros[nimages] # Zero offset factors
real wts[nimages] # Combining weights
int nimages # Number of input images
int npts # Number of points per output line
int i, ctor()
real r, imgetr()
pointer sp, v1, v2, v3, outdata, buf, nm, impnli()
pointer impnlr()
errchk ic_scale, imgetr
include "../icombine.com"
begin
call smark (sp)
call salloc (v1, IM_MAXDIM, TY_LONG)
call salloc (v2, IM_MAXDIM, TY_LONG)
call salloc (v3, IM_MAXDIM, TY_LONG)
call amovkl (long(1), Meml[v1], IM_MAXDIM)
call amovkl (long(1), Meml[v2], IM_MAXDIM)
call amovkl (long(1), Meml[v3], IM_MAXDIM)
call ic_scale (in, out, offsets, scales, zeros, wts, nimages)
# Set combine parameters
switch (combine) {
case AVERAGE:
if (dowts)
keepids = true
else
keepids = false
case MEDIAN:
dowts = false
keepids = false
}
docombine = true
# Set rejection algorithm specific parameters
switch (reject) {
case CCDCLIP, CRREJECT:
call salloc (nm, 3*nimages, TY_REAL)
i = 1
if (ctor (Memc[rdnoise], i, r) > 0) {
do i = 1, nimages
Memr[nm+3*(i-1)] = r
} else {
do i = 1, nimages
Memr[nm+3*(i-1)] = imgetr (in[i], Memc[rdnoise])
}
i = 1
if (ctor (Memc[gain], i, r) > 0) {
do i = 1, nimages {
Memr[nm+3*(i-1)+1] = r
Memr[nm+3*(i-1)] =
max ((Memr[nm+3*(i-1)] / r) ** 2, 1e4 / MAX_REAL)
}
} else {
do i = 1, nimages {
r = imgetr (in[i], Memc[gain])
Memr[nm+3*(i-1)+1] = r
Memr[nm+3*(i-1)] =
max ((Memr[nm+3*(i-1)] / r) ** 2, 1e4 / MAX_REAL)
}
}
i = 1
if (ctor (Memc[snoise], i, r) > 0) {
do i = 1, nimages
Memr[nm+3*(i-1)+2] = r
} else {
do i = 1, nimages {
r = imgetr (in[i], Memc[snoise])
Memr[nm+3*(i-1)+2] = r
}
}
if (!keepids) {
if (doscale1 || grow > 0)
keepids = true
else {
do i = 2, nimages {
if (Memr[nm+3*(i-1)] != Memr[nm] ||
Memr[nm+3*(i-1)+1] != Memr[nm+1] ||
Memr[nm+3*(i-1)+2] != Memr[nm+2]) {
keepids = true
break
}
}
}
}
if (reject == CRREJECT)
lsigma = MAX_REAL
case MINMAX:
mclip = false
if (grow > 0)
keepids = true
case PCLIP:
mclip = true
if (grow > 0)
keepids = true
case AVSIGCLIP, SIGCLIP:
if (doscale1 || grow > 0)
keepids = true
case NONE:
mclip = false
grow = 0
}
if (keepids) {
do i = 1, nimages
call salloc (id[i], npts, TY_INT)
}
while (impnlr (out[1], outdata, Meml[v1]) != EOF) {
call ic_gdatas (in, out, dbuf, d, id, n, m, lflag, offsets,
scales, zeros, nimages, npts, Meml[v2], Meml[v3])
switch (reject) {
case CCDCLIP, CRREJECT:
if (mclip)
call ic_mccdclips (d, id, n, scales, zeros, Memr[nm],
nimages, npts, Memr[outdata])
else
call ic_accdclips (d, id, n, scales, zeros, Memr[nm],
nimages, npts, Memr[outdata])
case MINMAX:
call ic_mms (d, id, n, npts)
case PCLIP:
call ic_pclips (d, id, n, nimages, npts, Memr[outdata])
case SIGCLIP:
if (mclip)
call ic_msigclips (d, id, n, scales, zeros, nimages, npts,
Memr[outdata])
else
call ic_asigclips (d, id, n, scales, zeros, nimages, npts,
Memr[outdata])
case AVSIGCLIP:
if (mclip)
call ic_mavsigclips (d, id, n, scales, zeros, nimages,
npts, Memr[outdata])
else
call ic_aavsigclips (d, id, n, scales, zeros, nimages,
npts, Memr[outdata])
}
if (grow > 0)
call ic_grows (d, id, n, nimages, npts, Memr[outdata])
if (docombine) {
switch (combine) {
case AVERAGE:
call ic_averages (d, id, n, wts, npts, Memr[outdata])
case MEDIAN:
call ic_medians (d, n, npts, Memr[outdata])
}
}
if (out[2] != NULL) {
call amovl (Meml[v2], Meml[v1], IM_MAXDIM)
i = impnli (out[2], buf, Meml[v1])
call amovki (nimages, Memi[buf], npts)
call asubi (Memi[buf], n, Memi[buf], npts)
}
if (out[3] != NULL) {
call amovl (Meml[v2], Meml[v1], IM_MAXDIM)
i = impnlr (out[3], buf, Meml[v1])
call ic_sigmas (d, id, n, wts, npts, Memr[outdata],
Memr[buf])
}
call amovl (Meml[v1], Meml[v2], IM_MAXDIM)
}
call sfree (sp)
end
procedure icombiner (in, out, offsets, nimages, bufsize)
pointer in[nimages] # Input images
pointer out[ARB] # Output images
int offsets[nimages,ARB] # Input image offsets
int nimages # Number of input images
int bufsize # IMIO buffer size
char str[1]
int i, j, npts, fd, stropen(), errcode(), imstati()
pointer sp, d, id, n, m, lflag, scales, zeros, wts, dbuf
pointer buf, imgl1r(), impl1i()
errchk stropen, imgl1r, impl1i
pointer impl1r()
errchk impl1r
include "../icombine.com"
begin
npts = IM_LEN(out[1],1)
# Allocate memory.
call smark (sp)
call salloc (d, nimages, TY_POINTER)
call salloc (id, nimages, TY_POINTER)
call salloc (n, npts, TY_INT)
call salloc (m, nimages, TY_POINTER)
call salloc (lflag, nimages, TY_INT)
call salloc (scales, nimages, TY_REAL)
call salloc (zeros, nimages, TY_REAL)
call salloc (wts, nimages, TY_REAL)
call amovki (D_ALL, Memi[lflag], nimages)
# If aligned use the IMIO buffer otherwise we need vectors of
# output length.
if (!aligned) {
call salloc (dbuf, nimages, TY_POINTER)
do i = 1, nimages
call salloc (Memi[dbuf+i-1], npts, TY_REAL)
}
if (project) {
call imseti (in[1], IM_NBUFS, nimages)
call imseti (in[1], IM_BUFSIZE, bufsize)
do i = 1, 3 {
if (out[i] != NULL)
call imseti (out[i], IM_BUFSIZE, bufsize)
}
} else {
# Reserve FD for string operations.
fd = stropen (str, 1, NEW_FILE)
# Do I/O to the images.
do i = 1, 3 {
if (out[i] != NULL)
call imseti (out[i], IM_BUFSIZE, bufsize)
}
buf = impl1r (out[1])
call aclrr (Memr[buf], npts)
if (out[3] != NULL) {
buf = impl1r (out[3])
call aclrr (Memr[buf], npts)
}
if (out[2] != NULL) {
buf = impl1i (out[2])
call aclri (Memi[buf], npts)
}
do i = 1, nimages {
call imseti (in[i], IM_BUFSIZE, bufsize)
iferr (buf = imgl1r (in[i])) {
switch (errcode()) {
case SYS_MFULL:
call sfree (sp)
call strclose (fd)
call erract (EA_ERROR)
case SYS_FTOOMANYFILES, SYS_IKIOPIX:
if (imstati (in[i], IM_CLOSEFD) == YES) {
call sfree (sp)
call strclose (fd)
call erract (EA_ERROR)
}
do j = i-2, nimages
call imseti (in[j], IM_CLOSEFD, YES)
buf = imgl1r (in[i])
default:
call sfree (sp)
call strclose (fd)
call erract (EA_ERROR)
}
}
}
call strclose (fd)
}
call ic_combiner (in, out, Memi[dbuf], Memi[d], Memi[id], Memi[n],
Memi[m], Memi[lflag], offsets, Memr[scales], Memr[zeros],
Memr[wts], nimages, npts)
end
# IC_COMBINE -- Combine images.
procedure ic_combiner (in, out, dbuf, d, id, n, m, lflag, offsets,
scales, zeros, wts, nimages, npts)
pointer in[nimages] # Input images
pointer out[ARB] # Output image
pointer dbuf[nimages] # Data buffers for nonaligned images
pointer d[nimages] # Data pointers
pointer id[nimages] # Image index ID pointers
int n[npts] # Number of good pixels
pointer m[nimages] # Mask pointers
int lflag[nimages] # Line flags
int offsets[nimages,ARB] # Input image offsets
real scales[nimages] # Scale factors
real zeros[nimages] # Zero offset factors
real wts[nimages] # Combining weights
int nimages # Number of input images
int npts # Number of points per output line
int i, ctor()
real r, imgetr()
pointer sp, v1, v2, v3, outdata, buf, nm, impnli()
pointer impnlr()
errchk ic_scale, imgetr
include "../icombine.com"
begin
call smark (sp)
call salloc (v1, IM_MAXDIM, TY_LONG)
call salloc (v2, IM_MAXDIM, TY_LONG)
call salloc (v3, IM_MAXDIM, TY_LONG)
call amovkl (long(1), Meml[v1], IM_MAXDIM)
call amovkl (long(1), Meml[v2], IM_MAXDIM)
call amovkl (long(1), Meml[v3], IM_MAXDIM)
call ic_scale (in, out, offsets, scales, zeros, wts, nimages)
# Set combine parameters
switch (combine) {
case AVERAGE:
if (dowts)
keepids = true
else
keepids = false
case MEDIAN:
dowts = false
keepids = false
}
docombine = true
# Set rejection algorithm specific parameters
switch (reject) {
case CCDCLIP, CRREJECT:
call salloc (nm, 3*nimages, TY_REAL)
i = 1
if (ctor (Memc[rdnoise], i, r) > 0) {
do i = 1, nimages
Memr[nm+3*(i-1)] = r
} else {
do i = 1, nimages
Memr[nm+3*(i-1)] = imgetr (in[i], Memc[rdnoise])
}
i = 1
if (ctor (Memc[gain], i, r) > 0) {
do i = 1, nimages {
Memr[nm+3*(i-1)+1] = r
Memr[nm+3*(i-1)] =
max ((Memr[nm+3*(i-1)] / r) ** 2, 1e4 / MAX_REAL)
}
} else {
do i = 1, nimages {
r = imgetr (in[i], Memc[gain])
Memr[nm+3*(i-1)+1] = r
Memr[nm+3*(i-1)] =
max ((Memr[nm+3*(i-1)] / r) ** 2, 1e4 / MAX_REAL)
}
}
i = 1
if (ctor (Memc[snoise], i, r) > 0) {
do i = 1, nimages
Memr[nm+3*(i-1)+2] = r
} else {
do i = 1, nimages {
r = imgetr (in[i], Memc[snoise])
Memr[nm+3*(i-1)+2] = r
}
}
if (!keepids) {
if (doscale1 || grow > 0)
keepids = true
else {
do i = 2, nimages {
if (Memr[nm+3*(i-1)] != Memr[nm] ||
Memr[nm+3*(i-1)+1] != Memr[nm+1] ||
Memr[nm+3*(i-1)+2] != Memr[nm+2]) {
keepids = true
break
}
}
}
}
if (reject == CRREJECT)
lsigma = MAX_REAL
case MINMAX:
mclip = false
if (grow > 0)
keepids = true
case PCLIP:
mclip = true
if (grow > 0)
keepids = true
case AVSIGCLIP, SIGCLIP:
if (doscale1 || grow > 0)
keepids = true
case NONE:
mclip = false
grow = 0
}
if (keepids) {
do i = 1, nimages
call salloc (id[i], npts, TY_INT)
}
while (impnlr (out[1], outdata, Meml[v1]) != EOF) {
call ic_gdatar (in, out, dbuf, d, id, n, m, lflag, offsets,
scales, zeros, nimages, npts, Meml[v2], Meml[v3])
switch (reject) {
case CCDCLIP, CRREJECT:
if (mclip)
call ic_mccdclipr (d, id, n, scales, zeros, Memr[nm],
nimages, npts, Memr[outdata])
else
call ic_accdclipr (d, id, n, scales, zeros, Memr[nm],
nimages, npts, Memr[outdata])
case MINMAX:
call ic_mmr (d, id, n, npts)
case PCLIP:
call ic_pclipr (d, id, n, nimages, npts, Memr[outdata])
case SIGCLIP:
if (mclip)
call ic_msigclipr (d, id, n, scales, zeros, nimages, npts,
Memr[outdata])
else
call ic_asigclipr (d, id, n, scales, zeros, nimages, npts,
Memr[outdata])
case AVSIGCLIP:
if (mclip)
call ic_mavsigclipr (d, id, n, scales, zeros, nimages,
npts, Memr[outdata])
else
call ic_aavsigclipr (d, id, n, scales, zeros, nimages,
npts, Memr[outdata])
}
if (grow > 0)
call ic_growr (d, id, n, nimages, npts, Memr[outdata])
if (docombine) {
switch (combine) {
case AVERAGE:
call ic_averager (d, id, n, wts, npts, Memr[outdata])
case MEDIAN:
call ic_medianr (d, n, npts, Memr[outdata])
}
}
if (out[2] != NULL) {
call amovl (Meml[v2], Meml[v1], IM_MAXDIM)
i = impnli (out[2], buf, Meml[v1])
call amovki (nimages, Memi[buf], npts)
call asubi (Memi[buf], n, Memi[buf], npts)
}
if (out[3] != NULL) {
call amovl (Meml[v2], Meml[v1], IM_MAXDIM)
i = impnlr (out[3], buf, Meml[v1])
call ic_sigmar (d, id, n, wts, npts, Memr[outdata],
Memr[buf])
}
call amovl (Meml[v1], Meml[v2], IM_MAXDIM)
}
call sfree (sp)
end
|