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
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include <imhdr.h>
define OPTIONS "|average|sum|" # Values of task param options
define AVG 1 # Arithmetic average in block
define SUM 2 # Sum of pixels within block
define DEF_BLKFAC 1 # Default blocking factor
# T_BLKAVG -- Block average or sum on n-dimensional images.
#
# The input and output images are given by image template lists. The
# number of output images must match the number of input images. Image
# sections are allowed in the input images and are ignored in the output
# images. If the input and output image names are the same then the
# blocking operation is performed to a temporary file which then replaces
# the input image.
procedure t_blkavg()
char imtlist1[SZ_LINE] # Input image list
char imtlist2[SZ_LINE] # Output image list
int option # Type of operation
int blkfac[IM_MAXDIM] # Block sizes
char image1[SZ_FNAME] # Input image name
char image2[SZ_FNAME] # Output image name
char imtemp[SZ_FNAME] # Temporary file
int list1, list2, i
pointer im1, im2, mw
real shifts[IM_MAXDIM], mags[IM_MAXDIM]
bool envgetb()
int imtopen(), imtgetim(), imtlen(), clgeti(), clgwrd()
pointer immap(), mw_openim()
string blk_param "bX"
begin
# Get input and output image template lists and the block sizes.
call clgstr ("input", imtlist1, SZ_LINE)
call clgstr ("output", imtlist2, SZ_LINE)
option = clgwrd ("option", image1, SZ_FNAME, OPTIONS)
call amovki (INDEFI, blkfac, IM_MAXDIM)
# Expand the input and output image lists.
list1 = imtopen (imtlist1)
list2 = imtopen (imtlist2)
if (imtlen (list1) != imtlen (list2)) {
call imtclose (list1)
call imtclose (list2)
call error (0, "Number of input and output images not the same")
}
# Do each set of input/output images.
while ((imtgetim (list1, image1, SZ_FNAME) != EOF) &&
(imtgetim (list2, image2, SZ_FNAME) != EOF)) {
call xt_mkimtemp (image1, image2, imtemp, SZ_FNAME)
im1 = immap (image1, READ_ONLY, 0)
im2 = immap (image2, NEW_COPY, im1)
do i = 1, IM_NDIM(im1) {
if (IS_INDEFI(blkfac[i])) {
call sprintf (blk_param[2], SZ_CHAR, "%1d")
call pargi (i)
blkfac[i] = max (1, min (clgeti (blk_param),
IM_LEN(im1, i)))
}
}
# Perform the block operation.
switch (IM_PIXTYPE (im1)) {
case TY_SHORT, TY_USHORT, TY_INT, TY_LONG:
call blkavl (im1, im2, blkfac, option)
case TY_REAL:
call blkavr (im1, im2, blkfac, option)
case TY_DOUBLE:
call blkavd (im1, im2, blkfac, option)
case TY_COMPLEX:
#call blkavx (im1, im2, blkfac, option)
call error (0,
"Blkavg does not currently support pixel data type complex.")
default:
call error (0, "Unknown pixel data type")
}
# Update the world coordinate system.
if (!envgetb ("nomwcs")) {
mw = mw_openim (im1)
do i = 1, IM_NDIM(im1)
mags[i] = 1.0d0 / double (blkfac[i])
call mw_scale (mw, mags, (2 ** IM_NDIM(im1) - 1))
do i = 1, IM_NDIM(im1)
shifts[i] = 0.5d0 - 1.0d0 / double (blkfac[i]) / 2.0d0
call mw_shift (mw, shifts, (2 ** IM_NDIM(im1) - 1))
call mw_saveim (mw, im2)
call mw_close (mw)
}
call imunmap (im2)
call imunmap (im1)
call xt_delimtemp (image2, imtemp)
}
call imtclose (list1)
call imtclose (list2)
end
|