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
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include <imhdr.h>
include "../icombine.h"
define NMAX 100000 # Maximum number of pixels to sample
# IC_STAT -- Compute image statistics within specified section.
# The image section is relative to a reference image which may be
# different than the input image and may have an offset. Only a
# subsample of pixels is used. Masked and thresholded pixels are
# ignored. Only the desired statistics are computed to increase
# efficiency.
procedure ic_stats (im, imref, section, offsets, image, nimages,
domode, domedian, domean, mode, median, mean)
pointer im # Data image
pointer imref # Reference image for image section
char section[ARB] # Image section
int offsets[nimages,ARB] # Image section offset from data to reference
int image # Image index (for mask I/O)
int nimages # Number of images in offsets.
bool domode, domedian, domean # Statistics to compute
real mode, median, mean # Statistics
int i, j, ndim, n, nv
real a
pointer sp, v1, v2, dv, va, vb
pointer data, mask, dp, lp, mp, imgnls()
real asums()
short ic_modes()
include "../icombine.com"
begin
call smark (sp)
call salloc (v1, IM_MAXDIM, TY_LONG)
call salloc (v2, IM_MAXDIM, TY_LONG)
call salloc (dv, IM_MAXDIM, TY_LONG)
call salloc (va, IM_MAXDIM, TY_LONG)
call salloc (vb, IM_MAXDIM, TY_LONG)
# Determine the image section parameters. This must be in terms of
# the data image pixel coordinates though the section may be specified
# in terms of the reference image coordinates. Limit the number of
# pixels in each dimension to a maximum.
ndim = IM_NDIM(im)
if (project)
ndim = ndim - 1
call amovki (1, Memi[v1], IM_MAXDIM)
call amovki (1, Memi[va], IM_MAXDIM)
call amovki (1, Memi[dv], IM_MAXDIM)
call amovi (IM_LEN(imref,1), Memi[vb], ndim)
call ic_section (section, Memi[va], Memi[vb], Memi[dv], ndim)
if (im != imref)
do i = 1, ndim {
Memi[va+i-1] = Memi[va+i-1] - offsets[image,i]
Memi[vb+i-1] = Memi[vb+i-1] - offsets[image,i]
}
do j = 1, 10 {
n = 1
do i = 0, ndim-1 {
Memi[v1+i] = max (1, min (Memi[va+i], Memi[vb+i]))
Memi[v2+i] = min (IM_LEN(im,i+1), max (Memi[va+i], Memi[vb+i]))
Memi[dv+i] = j
nv = max (1, (Memi[v2+i] - Memi[v1+i]) / Memi[dv+i] + 1)
Memi[v2+i] = Memi[v1+i] + (nv - 1) * Memi[dv+i]
n = n * nv
}
if (n < NMAX)
break
}
call amovl (Memi[v1], Memi[va], IM_MAXDIM)
Memi[va] = 1
if (project)
Memi[va+ndim] = image
call amovl (Memi[va], Memi[vb], IM_MAXDIM)
# Accumulate the pixel values within the section. Masked pixels and
# thresholded pixels are ignored.
call salloc (data, n, TY_SHORT)
dp = data
while (imgnls (im, lp, Memi[vb]) != EOF) {
call ic_mget1 (im, image, nimages, offsets[image,1], Memi[va], mask)
lp = lp + Memi[v1] - 1
if (dflag == D_ALL) {
if (dothresh) {
do i = Memi[v1], Memi[v2], Memi[dv] {
a = Mems[lp]
if (a >= lthresh && a <= hthresh) {
Mems[dp] = a
dp = dp + 1
}
lp = lp + Memi[dv]
}
} else {
do i = Memi[v1], Memi[v2], Memi[dv] {
Mems[dp] = Mems[lp]
dp = dp + 1
lp = lp + Memi[dv]
}
}
} else if (dflag == D_MIX) {
mp = mask + Memi[v1] - 1
if (dothresh) {
do i = Memi[v1], Memi[v2], Memi[dv] {
if (Memi[mp] == 0) {
a = Mems[lp]
if (a >= lthresh && a <= hthresh) {
Mems[dp] = a
dp = dp + 1
}
}
mp = mp + Memi[dv]
lp = lp + Memi[dv]
}
} else {
do i = Memi[v1], Memi[v2], Memi[dv] {
if (Memi[mp] == 0) {
Mems[dp] = Mems[lp]
dp = dp + 1
}
mp = mp + Memi[dv]
lp = lp + Memi[dv]
}
}
}
for (i=2; i<=ndim; i=i+1) {
Memi[va+i-1] = Memi[va+i-1] + Memi[dv+i-1]
if (Memi[va+i-1] <= Memi[v2+i-1])
break
Memi[va+i-1] = Memi[v1+i-1]
}
if (i > ndim)
break
call amovl (Memi[va], Memi[vb], IM_MAXDIM)
}
# Close mask until it is needed again.
call ic_mclose1 (image, nimages)
n = dp - data
if (n < 1) {
call sfree (sp)
call error (1, "Image section contains no pixels")
}
# Compute only statistics needed.
if (domode || domedian) {
call asrts (Mems[data], Mems[data], n)
mode = ic_modes (Mems[data], n)
median = Mems[data+n/2-1]
}
if (domean)
mean = asums (Mems[data], n) / n
call sfree (sp)
end
define NMIN 10 # Minimum number of pixels for mode calculation
define ZRANGE 0.7 # Fraction of pixels about median to use
define ZSTEP 0.01 # Step size for search for mode
define ZBIN 0.1 # Bin size for mode.
# IC_MODE -- Compute mode of an array. The mode is found by binning
# with a bin size based on the data range over a fraction of the
# pixels about the median and a bin step which may be smaller than the
# bin size. If there are too few points the median is returned.
# The input array must be sorted.
short procedure ic_modes (a, n)
short a[n] # Data array
int n # Number of points
int i, j, k, nmax
real z1, z2, zstep, zbin
short mode
bool fp_equalr()
begin
if (n < NMIN)
return (a[n/2])
# Compute the mode. The array must be sorted. Consider a
# range of values about the median point. Use a bin size which
# is ZBIN of the range. Step the bin limits in ZSTEP fraction of
# the bin size.
i = 1 + n * (1. - ZRANGE) / 2.
j = 1 + n * (1. + ZRANGE) / 2.
z1 = a[i]
z2 = a[j]
if (fp_equalr (z1, z2)) {
mode = z1
return (mode)
}
zstep = ZSTEP * (z2 - z1)
zbin = ZBIN * (z2 - z1)
zstep = max (1., zstep)
zbin = max (1., zbin)
z1 = z1 - zstep
k = i
nmax = 0
repeat {
z1 = z1 + zstep
z2 = z1 + zbin
for (; i < j && a[i] < z1; i=i+1)
;
for (; k < j && a[k] < z2; k=k+1)
;
if (k - i > nmax) {
nmax = k - i
mode = a[(i+k)/2]
}
} until (k >= j)
return (mode)
end
# IC_STAT -- Compute image statistics within specified section.
# The image section is relative to a reference image which may be
# different than the input image and may have an offset. Only a
# subsample of pixels is used. Masked and thresholded pixels are
# ignored. Only the desired statistics are computed to increase
# efficiency.
procedure ic_stati (im, imref, section, offsets, image, nimages,
domode, domedian, domean, mode, median, mean)
pointer im # Data image
pointer imref # Reference image for image section
char section[ARB] # Image section
int offsets[nimages,ARB] # Image section offset from data to reference
int image # Image index (for mask I/O)
int nimages # Number of images in offsets.
bool domode, domedian, domean # Statistics to compute
real mode, median, mean # Statistics
int i, j, ndim, n, nv
real a
pointer sp, v1, v2, dv, va, vb
pointer data, mask, dp, lp, mp, imgnli()
real asumi()
int ic_modei()
include "../icombine.com"
begin
call smark (sp)
call salloc (v1, IM_MAXDIM, TY_LONG)
call salloc (v2, IM_MAXDIM, TY_LONG)
call salloc (dv, IM_MAXDIM, TY_LONG)
call salloc (va, IM_MAXDIM, TY_LONG)
call salloc (vb, IM_MAXDIM, TY_LONG)
# Determine the image section parameters. This must be in terms of
# the data image pixel coordinates though the section may be specified
# in terms of the reference image coordinates. Limit the number of
# pixels in each dimension to a maximum.
ndim = IM_NDIM(im)
if (project)
ndim = ndim - 1
call amovki (1, Memi[v1], IM_MAXDIM)
call amovki (1, Memi[va], IM_MAXDIM)
call amovki (1, Memi[dv], IM_MAXDIM)
call amovi (IM_LEN(imref,1), Memi[vb], ndim)
call ic_section (section, Memi[va], Memi[vb], Memi[dv], ndim)
if (im != imref)
do i = 1, ndim {
Memi[va+i-1] = Memi[va+i-1] - offsets[image,i]
Memi[vb+i-1] = Memi[vb+i-1] - offsets[image,i]
}
do j = 1, 10 {
n = 1
do i = 0, ndim-1 {
Memi[v1+i] = max (1, min (Memi[va+i], Memi[vb+i]))
Memi[v2+i] = min (IM_LEN(im,i+1), max (Memi[va+i], Memi[vb+i]))
Memi[dv+i] = j
nv = max (1, (Memi[v2+i] - Memi[v1+i]) / Memi[dv+i] + 1)
Memi[v2+i] = Memi[v1+i] + (nv - 1) * Memi[dv+i]
n = n * nv
}
if (n < NMAX)
break
}
call amovl (Memi[v1], Memi[va], IM_MAXDIM)
Memi[va] = 1
if (project)
Memi[va+ndim] = image
call amovl (Memi[va], Memi[vb], IM_MAXDIM)
# Accumulate the pixel values within the section. Masked pixels and
# thresholded pixels are ignored.
call salloc (data, n, TY_INT)
dp = data
while (imgnli (im, lp, Memi[vb]) != EOF) {
call ic_mget1 (im, image, nimages, offsets[image,1], Memi[va], mask)
lp = lp + Memi[v1] - 1
if (dflag == D_ALL) {
if (dothresh) {
do i = Memi[v1], Memi[v2], Memi[dv] {
a = Memi[lp]
if (a >= lthresh && a <= hthresh) {
Memi[dp] = a
dp = dp + 1
}
lp = lp + Memi[dv]
}
} else {
do i = Memi[v1], Memi[v2], Memi[dv] {
Memi[dp] = Memi[lp]
dp = dp + 1
lp = lp + Memi[dv]
}
}
} else if (dflag == D_MIX) {
mp = mask + Memi[v1] - 1
if (dothresh) {
do i = Memi[v1], Memi[v2], Memi[dv] {
if (Memi[mp] == 0) {
a = Memi[lp]
if (a >= lthresh && a <= hthresh) {
Memi[dp] = a
dp = dp + 1
}
}
mp = mp + Memi[dv]
lp = lp + Memi[dv]
}
} else {
do i = Memi[v1], Memi[v2], Memi[dv] {
if (Memi[mp] == 0) {
Memi[dp] = Memi[lp]
dp = dp + 1
}
mp = mp + Memi[dv]
lp = lp + Memi[dv]
}
}
}
for (i=2; i<=ndim; i=i+1) {
Memi[va+i-1] = Memi[va+i-1] + Memi[dv+i-1]
if (Memi[va+i-1] <= Memi[v2+i-1])
break
Memi[va+i-1] = Memi[v1+i-1]
}
if (i > ndim)
break
call amovl (Memi[va], Memi[vb], IM_MAXDIM)
}
# Close mask until it is needed again.
call ic_mclose1 (image, nimages)
n = dp - data
if (n < 1) {
call sfree (sp)
call error (1, "Image section contains no pixels")
}
# Compute only statistics needed.
if (domode || domedian) {
call asrti (Memi[data], Memi[data], n)
mode = ic_modei (Memi[data], n)
median = Memi[data+n/2-1]
}
if (domean)
mean = asumi (Memi[data], n) / n
call sfree (sp)
end
define NMIN 10 # Minimum number of pixels for mode calculation
define ZRANGE 0.7 # Fraction of pixels about median to use
define ZSTEP 0.01 # Step size for search for mode
define ZBIN 0.1 # Bin size for mode.
# IC_MODE -- Compute mode of an array. The mode is found by binning
# with a bin size based on the data range over a fraction of the
# pixels about the median and a bin step which may be smaller than the
# bin size. If there are too few points the median is returned.
# The input array must be sorted.
int procedure ic_modei (a, n)
int a[n] # Data array
int n # Number of points
int i, j, k, nmax
real z1, z2, zstep, zbin
int mode
bool fp_equalr()
begin
if (n < NMIN)
return (a[n/2])
# Compute the mode. The array must be sorted. Consider a
# range of values about the median point. Use a bin size which
# is ZBIN of the range. Step the bin limits in ZSTEP fraction of
# the bin size.
i = 1 + n * (1. - ZRANGE) / 2.
j = 1 + n * (1. + ZRANGE) / 2.
z1 = a[i]
z2 = a[j]
if (fp_equalr (z1, z2)) {
mode = z1
return (mode)
}
zstep = ZSTEP * (z2 - z1)
zbin = ZBIN * (z2 - z1)
zstep = max (1., zstep)
zbin = max (1., zbin)
z1 = z1 - zstep
k = i
nmax = 0
repeat {
z1 = z1 + zstep
z2 = z1 + zbin
for (; i < j && a[i] < z1; i=i+1)
;
for (; k < j && a[k] < z2; k=k+1)
;
if (k - i > nmax) {
nmax = k - i
mode = a[(i+k)/2]
}
} until (k >= j)
return (mode)
end
# IC_STAT -- Compute image statistics within specified section.
# The image section is relative to a reference image which may be
# different than the input image and may have an offset. Only a
# subsample of pixels is used. Masked and thresholded pixels are
# ignored. Only the desired statistics are computed to increase
# efficiency.
procedure ic_statr (im, imref, section, offsets, image, nimages,
domode, domedian, domean, mode, median, mean)
pointer im # Data image
pointer imref # Reference image for image section
char section[ARB] # Image section
int offsets[nimages,ARB] # Image section offset from data to reference
int image # Image index (for mask I/O)
int nimages # Number of images in offsets.
bool domode, domedian, domean # Statistics to compute
real mode, median, mean # Statistics
int i, j, ndim, n, nv
real a
pointer sp, v1, v2, dv, va, vb
pointer data, mask, dp, lp, mp, imgnlr()
real asumr()
real ic_moder()
include "../icombine.com"
begin
call smark (sp)
call salloc (v1, IM_MAXDIM, TY_LONG)
call salloc (v2, IM_MAXDIM, TY_LONG)
call salloc (dv, IM_MAXDIM, TY_LONG)
call salloc (va, IM_MAXDIM, TY_LONG)
call salloc (vb, IM_MAXDIM, TY_LONG)
# Determine the image section parameters. This must be in terms of
# the data image pixel coordinates though the section may be specified
# in terms of the reference image coordinates. Limit the number of
# pixels in each dimension to a maximum.
ndim = IM_NDIM(im)
if (project)
ndim = ndim - 1
call amovki (1, Memi[v1], IM_MAXDIM)
call amovki (1, Memi[va], IM_MAXDIM)
call amovki (1, Memi[dv], IM_MAXDIM)
call amovi (IM_LEN(imref,1), Memi[vb], ndim)
call ic_section (section, Memi[va], Memi[vb], Memi[dv], ndim)
if (im != imref)
do i = 1, ndim {
Memi[va+i-1] = Memi[va+i-1] - offsets[image,i]
Memi[vb+i-1] = Memi[vb+i-1] - offsets[image,i]
}
do j = 1, 10 {
n = 1
do i = 0, ndim-1 {
Memi[v1+i] = max (1, min (Memi[va+i], Memi[vb+i]))
Memi[v2+i] = min (IM_LEN(im,i+1), max (Memi[va+i], Memi[vb+i]))
Memi[dv+i] = j
nv = max (1, (Memi[v2+i] - Memi[v1+i]) / Memi[dv+i] + 1)
Memi[v2+i] = Memi[v1+i] + (nv - 1) * Memi[dv+i]
n = n * nv
}
if (n < NMAX)
break
}
call amovl (Memi[v1], Memi[va], IM_MAXDIM)
Memi[va] = 1
if (project)
Memi[va+ndim] = image
call amovl (Memi[va], Memi[vb], IM_MAXDIM)
# Accumulate the pixel values within the section. Masked pixels and
# thresholded pixels are ignored.
call salloc (data, n, TY_REAL)
dp = data
while (imgnlr (im, lp, Memi[vb]) != EOF) {
call ic_mget1 (im, image, nimages, offsets[image,1], Memi[va], mask)
lp = lp + Memi[v1] - 1
if (dflag == D_ALL) {
if (dothresh) {
do i = Memi[v1], Memi[v2], Memi[dv] {
a = Memr[lp]
if (a >= lthresh && a <= hthresh) {
Memr[dp] = a
dp = dp + 1
}
lp = lp + Memi[dv]
}
} else {
do i = Memi[v1], Memi[v2], Memi[dv] {
Memr[dp] = Memr[lp]
dp = dp + 1
lp = lp + Memi[dv]
}
}
} else if (dflag == D_MIX) {
mp = mask + Memi[v1] - 1
if (dothresh) {
do i = Memi[v1], Memi[v2], Memi[dv] {
if (Memi[mp] == 0) {
a = Memr[lp]
if (a >= lthresh && a <= hthresh) {
Memr[dp] = a
dp = dp + 1
}
}
mp = mp + Memi[dv]
lp = lp + Memi[dv]
}
} else {
do i = Memi[v1], Memi[v2], Memi[dv] {
if (Memi[mp] == 0) {
Memr[dp] = Memr[lp]
dp = dp + 1
}
mp = mp + Memi[dv]
lp = lp + Memi[dv]
}
}
}
for (i=2; i<=ndim; i=i+1) {
Memi[va+i-1] = Memi[va+i-1] + Memi[dv+i-1]
if (Memi[va+i-1] <= Memi[v2+i-1])
break
Memi[va+i-1] = Memi[v1+i-1]
}
if (i > ndim)
break
call amovl (Memi[va], Memi[vb], IM_MAXDIM)
}
# Close mask until it is needed again.
call ic_mclose1 (image, nimages)
n = dp - data
if (n < 1) {
call sfree (sp)
call error (1, "Image section contains no pixels")
}
# Compute only statistics needed.
if (domode || domedian) {
call asrtr (Memr[data], Memr[data], n)
mode = ic_moder (Memr[data], n)
median = Memr[data+n/2-1]
}
if (domean)
mean = asumr (Memr[data], n) / n
call sfree (sp)
end
define NMIN 10 # Minimum number of pixels for mode calculation
define ZRANGE 0.7 # Fraction of pixels about median to use
define ZSTEP 0.01 # Step size for search for mode
define ZBIN 0.1 # Bin size for mode.
# IC_MODE -- Compute mode of an array. The mode is found by binning
# with a bin size based on the data range over a fraction of the
# pixels about the median and a bin step which may be smaller than the
# bin size. If there are too few points the median is returned.
# The input array must be sorted.
real procedure ic_moder (a, n)
real a[n] # Data array
int n # Number of points
int i, j, k, nmax
real z1, z2, zstep, zbin
real mode
bool fp_equalr()
begin
if (n < NMIN)
return (a[n/2])
# Compute the mode. The array must be sorted. Consider a
# range of values about the median point. Use a bin size which
# is ZBIN of the range. Step the bin limits in ZSTEP fraction of
# the bin size.
i = 1 + n * (1. - ZRANGE) / 2.
j = 1 + n * (1. + ZRANGE) / 2.
z1 = a[i]
z2 = a[j]
if (fp_equalr (z1, z2)) {
mode = z1
return (mode)
}
zstep = ZSTEP * (z2 - z1)
zbin = ZBIN * (z2 - z1)
z1 = z1 - zstep
k = i
nmax = 0
repeat {
z1 = z1 + zstep
z2 = z1 + zbin
for (; i < j && a[i] < z1; i=i+1)
;
for (; k < j && a[k] < z2; k=k+1)
;
if (k - i > nmax) {
nmax = k - i
mode = a[(i+k)/2]
}
} until (k >= j)
return (mode)
end
# IC_STAT -- Compute image statistics within specified section.
# The image section is relative to a reference image which may be
# different than the input image and may have an offset. Only a
# subsample of pixels is used. Masked and thresholded pixels are
# ignored. Only the desired statistics are computed to increase
# efficiency.
procedure ic_statd (im, imref, section, offsets, image, nimages,
domode, domedian, domean, mode, median, mean)
pointer im # Data image
pointer imref # Reference image for image section
char section[ARB] # Image section
int offsets[nimages,ARB] # Image section offset from data to reference
int image # Image index (for mask I/O)
int nimages # Number of images in offsets.
bool domode, domedian, domean # Statistics to compute
real mode, median, mean # Statistics
int i, j, ndim, n, nv
real a
pointer sp, v1, v2, dv, va, vb
pointer data, mask, dp, lp, mp, imgnld()
double asumd()
double ic_moded()
include "../icombine.com"
begin
call smark (sp)
call salloc (v1, IM_MAXDIM, TY_LONG)
call salloc (v2, IM_MAXDIM, TY_LONG)
call salloc (dv, IM_MAXDIM, TY_LONG)
call salloc (va, IM_MAXDIM, TY_LONG)
call salloc (vb, IM_MAXDIM, TY_LONG)
# Determine the image section parameters. This must be in terms of
# the data image pixel coordinates though the section may be specified
# in terms of the reference image coordinates. Limit the number of
# pixels in each dimension to a maximum.
ndim = IM_NDIM(im)
if (project)
ndim = ndim - 1
call amovki (1, Memi[v1], IM_MAXDIM)
call amovki (1, Memi[va], IM_MAXDIM)
call amovki (1, Memi[dv], IM_MAXDIM)
call amovi (IM_LEN(imref,1), Memi[vb], ndim)
call ic_section (section, Memi[va], Memi[vb], Memi[dv], ndim)
if (im != imref)
do i = 1, ndim {
Memi[va+i-1] = Memi[va+i-1] - offsets[image,i]
Memi[vb+i-1] = Memi[vb+i-1] - offsets[image,i]
}
do j = 1, 10 {
n = 1
do i = 0, ndim-1 {
Memi[v1+i] = max (1, min (Memi[va+i], Memi[vb+i]))
Memi[v2+i] = min (IM_LEN(im,i+1), max (Memi[va+i], Memi[vb+i]))
Memi[dv+i] = j
nv = max (1, (Memi[v2+i] - Memi[v1+i]) / Memi[dv+i] + 1)
Memi[v2+i] = Memi[v1+i] + (nv - 1) * Memi[dv+i]
n = n * nv
}
if (n < NMAX)
break
}
call amovl (Memi[v1], Memi[va], IM_MAXDIM)
Memi[va] = 1
if (project)
Memi[va+ndim] = image
call amovl (Memi[va], Memi[vb], IM_MAXDIM)
# Accumulate the pixel values within the section. Masked pixels and
# thresholded pixels are ignored.
call salloc (data, n, TY_DOUBLE)
dp = data
while (imgnld (im, lp, Memi[vb]) != EOF) {
call ic_mget1 (im, image, nimages, offsets[image,1], Memi[va], mask)
lp = lp + Memi[v1] - 1
if (dflag == D_ALL) {
if (dothresh) {
do i = Memi[v1], Memi[v2], Memi[dv] {
a = Memd[lp]
if (a >= lthresh && a <= hthresh) {
Memd[dp] = a
dp = dp + 1
}
lp = lp + Memi[dv]
}
} else {
do i = Memi[v1], Memi[v2], Memi[dv] {
Memd[dp] = Memd[lp]
dp = dp + 1
lp = lp + Memi[dv]
}
}
} else if (dflag == D_MIX) {
mp = mask + Memi[v1] - 1
if (dothresh) {
do i = Memi[v1], Memi[v2], Memi[dv] {
if (Memi[mp] == 0) {
a = Memd[lp]
if (a >= lthresh && a <= hthresh) {
Memd[dp] = a
dp = dp + 1
}
}
mp = mp + Memi[dv]
lp = lp + Memi[dv]
}
} else {
do i = Memi[v1], Memi[v2], Memi[dv] {
if (Memi[mp] == 0) {
Memd[dp] = Memd[lp]
dp = dp + 1
}
mp = mp + Memi[dv]
lp = lp + Memi[dv]
}
}
}
for (i=2; i<=ndim; i=i+1) {
Memi[va+i-1] = Memi[va+i-1] + Memi[dv+i-1]
if (Memi[va+i-1] <= Memi[v2+i-1])
break
Memi[va+i-1] = Memi[v1+i-1]
}
if (i > ndim)
break
call amovl (Memi[va], Memi[vb], IM_MAXDIM)
}
# Close mask until it is needed again.
call ic_mclose1 (image, nimages)
n = dp - data
if (n < 1) {
call sfree (sp)
call error (1, "Image section contains no pixels")
}
# Compute only statistics needed.
if (domode || domedian) {
call asrtd (Memd[data], Memd[data], n)
mode = ic_moded (Memd[data], n)
median = Memd[data+n/2-1]
}
if (domean)
mean = asumd (Memd[data], n) / n
call sfree (sp)
end
define NMIN 10 # Minimum number of pixels for mode calculation
define ZRANGE 0.7 # Fraction of pixels about median to use
define ZSTEP 0.01 # Step size for search for mode
define ZBIN 0.1 # Bin size for mode.
# IC_MODE -- Compute mode of an array. The mode is found by binning
# with a bin size based on the data range over a fraction of the
# pixels about the median and a bin step which may be smaller than the
# bin size. If there are too few points the median is returned.
# The input array must be sorted.
double procedure ic_moded (a, n)
double a[n] # Data array
int n # Number of points
int i, j, k, nmax
real z1, z2, zstep, zbin
double mode
bool fp_equalr()
begin
if (n < NMIN)
return (a[n/2])
# Compute the mode. The array must be sorted. Consider a
# range of values about the median point. Use a bin size which
# is ZBIN of the range. Step the bin limits in ZSTEP fraction of
# the bin size.
i = 1 + n * (1. - ZRANGE) / 2.
j = 1 + n * (1. + ZRANGE) / 2.
z1 = a[i]
z2 = a[j]
if (fp_equalr (z1, z2)) {
mode = z1
return (mode)
}
zstep = ZSTEP * (z2 - z1)
zbin = ZBIN * (z2 - z1)
z1 = z1 - zstep
k = i
nmax = 0
repeat {
z1 = z1 + zstep
z2 = z1 + zbin
for (; i < j && a[i] < z1; i=i+1)
;
for (; k < j && a[k] < z2; k=k+1)
;
if (k - i > nmax) {
nmax = k - i
mode = a[(i+k)/2]
}
} until (k >= j)
return (mode)
end
|