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
|
# 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
$for (sird)
# 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_stat$t (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, imgnl$t()
$if (datatype == csir)
real asum$t()
$else $if (datatype == ld)
double asum$t()
$else
PIXEL asum$t()
$endif $endif
PIXEL ic_mode$t()
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_PIXEL)
dp = data
while (imgnl$t (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 = Mem$t[lp]
if (a >= lthresh && a <= hthresh) {
Mem$t[dp] = a
dp = dp + 1
}
lp = lp + Memi[dv]
}
} else {
do i = Memi[v1], Memi[v2], Memi[dv] {
Mem$t[dp] = Mem$t[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 = Mem$t[lp]
if (a >= lthresh && a <= hthresh) {
Mem$t[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) {
Mem$t[dp] = Mem$t[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 asrt$t (Mem$t[data], Mem$t[data], n)
mode = ic_mode$t (Mem$t[data], n)
median = Mem$t[data+n/2-1]
}
if (domean)
mean = asum$t (Mem$t[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.
PIXEL procedure ic_mode$t (a, n)
PIXEL a[n] # Data array
int n # Number of points
int i, j, k, nmax
real z1, z2, zstep, zbin
PIXEL 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)
$if (datatype == sil)
zstep = max (1., zstep)
zbin = max (1., zbin)
$endif
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
$endfor
|