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
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include <imhdr.h>
# IMA_ADD -- Image arithmetic addition.
procedure ima_adds (im_a, im_b, im_c, a, b)
pointer im_a, im_b, im_c
short a, b
int len
pointer im[3], buf[3]
long v[IM_MAXDIM, 3]
int ima_nls()
begin
# Loop through all of the image lines.
im[1] = im_c
len = IM_LEN (im[1], 1)
call amovkl (long(1), v, 3 * IM_MAXDIM)
# If imagea is constant then read imageb and do a vector/scalar
# addition to imagec.
if (im_a == NULL) {
im[2] = im_b
while (ima_nls (im, buf, v, 2) != EOF) {
if (a == 0)
call amovs (Mems[buf[2]], Mems[buf[1]], len)
else
call aaddks (Mems[buf[2]], a, Mems[buf[1]], len)
}
# If imageb is constant then read imagea and do a vector/scalar
# addition to imagec.
} else if (im_b == NULL) {
im[2] = im_a
while (ima_nls (im, buf, v, 2) != EOF) {
if (b == 0)
call amovs (Mems[buf[2]], Mems[buf[1]], len)
else
call aaddks (Mems[buf[2]], b, Mems[buf[1]], len)
}
# Read imagea and imageb and do a vector addition into imagec.
} else {
im[2] = im_a
im[3] = im_b
while (ima_nls (im, buf, v, 3) != EOF)
call aadds (Mems[buf[2]], Mems[buf[3]], Mems[buf[1]], len)
}
end
# IMA_ADD -- Image arithmetic addition.
procedure ima_addi (im_a, im_b, im_c, a, b)
pointer im_a, im_b, im_c
int a, b
int len
pointer im[3], buf[3]
long v[IM_MAXDIM, 3]
int ima_nli()
begin
# Loop through all of the image lines.
im[1] = im_c
len = IM_LEN (im[1], 1)
call amovkl (long(1), v, 3 * IM_MAXDIM)
# If imagea is constant then read imageb and do a vector/scalar
# addition to imagec.
if (im_a == NULL) {
im[2] = im_b
while (ima_nli (im, buf, v, 2) != EOF) {
if (a == 0)
call amovi (Memi[buf[2]], Memi[buf[1]], len)
else
call aaddki (Memi[buf[2]], a, Memi[buf[1]], len)
}
# If imageb is constant then read imagea and do a vector/scalar
# addition to imagec.
} else if (im_b == NULL) {
im[2] = im_a
while (ima_nli (im, buf, v, 2) != EOF) {
if (b == 0)
call amovi (Memi[buf[2]], Memi[buf[1]], len)
else
call aaddki (Memi[buf[2]], b, Memi[buf[1]], len)
}
# Read imagea and imageb and do a vector addition into imagec.
} else {
im[2] = im_a
im[3] = im_b
while (ima_nli (im, buf, v, 3) != EOF)
call aaddi (Memi[buf[2]], Memi[buf[3]], Memi[buf[1]], len)
}
end
# IMA_ADD -- Image arithmetic addition.
procedure ima_addl (im_a, im_b, im_c, a, b)
pointer im_a, im_b, im_c
long a, b
int len
pointer im[3], buf[3]
long v[IM_MAXDIM, 3]
int ima_nll()
begin
# Loop through all of the image lines.
im[1] = im_c
len = IM_LEN (im[1], 1)
call amovkl (long(1), v, 3 * IM_MAXDIM)
# If imagea is constant then read imageb and do a vector/scalar
# addition to imagec.
if (im_a == NULL) {
im[2] = im_b
while (ima_nll (im, buf, v, 2) != EOF) {
if (a == 0)
call amovl (Meml[buf[2]], Meml[buf[1]], len)
else
call aaddkl (Meml[buf[2]], a, Meml[buf[1]], len)
}
# If imageb is constant then read imagea and do a vector/scalar
# addition to imagec.
} else if (im_b == NULL) {
im[2] = im_a
while (ima_nll (im, buf, v, 2) != EOF) {
if (b == 0)
call amovl (Meml[buf[2]], Meml[buf[1]], len)
else
call aaddkl (Meml[buf[2]], b, Meml[buf[1]], len)
}
# Read imagea and imageb and do a vector addition into imagec.
} else {
im[2] = im_a
im[3] = im_b
while (ima_nll (im, buf, v, 3) != EOF)
call aaddl (Meml[buf[2]], Meml[buf[3]], Meml[buf[1]], len)
}
end
# IMA_ADD -- Image arithmetic addition.
procedure ima_addr (im_a, im_b, im_c, a, b)
pointer im_a, im_b, im_c
real a, b
int len
pointer im[3], buf[3]
long v[IM_MAXDIM, 3]
int ima_nlr()
begin
# Loop through all of the image lines.
im[1] = im_c
len = IM_LEN (im[1], 1)
call amovkl (long(1), v, 3 * IM_MAXDIM)
# If imagea is constant then read imageb and do a vector/scalar
# addition to imagec.
if (im_a == NULL) {
im[2] = im_b
while (ima_nlr (im, buf, v, 2) != EOF) {
if (a == 0.0)
call amovr (Memr[buf[2]], Memr[buf[1]], len)
else
call aaddkr (Memr[buf[2]], a, Memr[buf[1]], len)
}
# If imageb is constant then read imagea and do a vector/scalar
# addition to imagec.
} else if (im_b == NULL) {
im[2] = im_a
while (ima_nlr (im, buf, v, 2) != EOF) {
if (b == 0.0)
call amovr (Memr[buf[2]], Memr[buf[1]], len)
else
call aaddkr (Memr[buf[2]], b, Memr[buf[1]], len)
}
# Read imagea and imageb and do a vector addition into imagec.
} else {
im[2] = im_a
im[3] = im_b
while (ima_nlr (im, buf, v, 3) != EOF)
call aaddr (Memr[buf[2]], Memr[buf[3]], Memr[buf[1]], len)
}
end
# IMA_ADD -- Image arithmetic addition.
procedure ima_addd (im_a, im_b, im_c, a, b)
pointer im_a, im_b, im_c
double a, b
int len
pointer im[3], buf[3]
long v[IM_MAXDIM, 3]
int ima_nld()
begin
# Loop through all of the image lines.
im[1] = im_c
len = IM_LEN (im[1], 1)
call amovkl (long(1), v, 3 * IM_MAXDIM)
# If imagea is constant then read imageb and do a vector/scalar
# addition to imagec.
if (im_a == NULL) {
im[2] = im_b
while (ima_nld (im, buf, v, 2) != EOF) {
if (a == 0.0D0)
call amovd (Memd[buf[2]], Memd[buf[1]], len)
else
call aaddkd (Memd[buf[2]], a, Memd[buf[1]], len)
}
# If imageb is constant then read imagea and do a vector/scalar
# addition to imagec.
} else if (im_b == NULL) {
im[2] = im_a
while (ima_nld (im, buf, v, 2) != EOF) {
if (b == 0.0D0)
call amovd (Memd[buf[2]], Memd[buf[1]], len)
else
call aaddkd (Memd[buf[2]], b, Memd[buf[1]], len)
}
# Read imagea and imageb and do a vector addition into imagec.
} else {
im[2] = im_a
im[3] = im_b
while (ima_nld (im, buf, v, 3) != EOF)
call aaddd (Memd[buf[2]], Memd[buf[3]], Memd[buf[1]], len)
}
end
|