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
|
#!/usr/bin/env python3
#
# Copyright (c) Weitian LI <weitian@aaronly.me>
# MIT license
#
"""
Create FITS image cube from a series of image slices.
"""
import os
import sys
import argparse
from datetime import datetime, timezone
from functools import lru_cache
import numpy as np
from astropy.io import fits
from astropy.wcs import WCS
class FITSCube:
"""
FITS image cube.
"""
def __init__(self, infile=None):
if infile is not None:
self.load(infile)
def load(self, infile):
with fits.open(infile) as f:
self.data = f[0].data
self.header = f[0].header
print("Loaded FITS cube from file: %s" % infile)
print("Cube dimensions: %dx%dx%d" %
(self.width, self.height, self.nslice))
# The Z-axis position of the first slice.
self.zbegin = self.header["CRVAL3"]
# The Z-axis step/spacing between slices.
self.zstep = self.header["CDELT3"]
def add_slices(self, infiles, zbegin=0.0, zstep=1.0):
"""
Create a FITS cube from input image slices.
"""
self.infiles = infiles
self.zbegin = zbegin
self.zstep = zstep
nslice = len(infiles)
header, image = self.open_image(infiles[0])
shape = (nslice, ) + image.shape
data = np.zeros(shape, dtype=image.dtype)
for i, fn in enumerate(infiles):
print("[%d/%d] Adding image slice: %s ..." % (i+1, nslice, fn))
hdr, img = self.open_image(fn)
data[i, :, :] = img
self.data = data
self.header = header.copy(strip=True)
print("Created FITS cube of dimensions: %dx%dx%d" %
(self.width, self.height, self.nslice))
@staticmethod
def open_image(infile):
"""
Open the slice image and return its header and 2D image data.
NOTE
----
The input slice image may have following dimensions:
* NAXIS=2: [Y, X]
* NAXIS=3: [FREQ=1, Y, X]
* NAXIS=4: [STOKES=1, FREQ=1, Y, X]
NOTE
----
Only open slice image that has only ONE frequency and ONE Stokes
parameter.
Returns
-------
header : `~astropy.io.fits.Header`
image : 2D `~numpy.ndarray`
The 2D [Y, X] image part of the slice image.
"""
with fits.open(infile) as f:
header = f[0].header
data = f[0].data
if data.ndim == 2:
# NAXIS=2: [Y, X]
image = data
elif data.ndim == 3 and data.shape[0] == 1:
# NAXIS=3: [FREQ=1, Y, X]
image = data[0, :, :]
elif data.ndim == 4 and data.shape[0] == 1 and data.shape[1] == 1:
# NAXIS=4: [STOKES=1, FREQ=1, Y, X]
image = data[0, 0, :, :]
else:
raise ValueError("Slice '{0}' has invalid dimensions: {1}".format(
infile, data.shape))
return (header, image)
@property
def header(self):
if not hasattr(self, "header_"):
self.header_ = fits.Header()
return self.header_
@header.setter
def header(self, value):
self.header_ = value
for key in ["CTYPE4", "CRPIX4", "CRVAL4", "CDELT4", "CUNIT4"]:
try:
del self.header_[key]
except KeyError:
pass
@property
@lru_cache()
def wcs(self):
w = WCS(naxis=3)
w.wcs.ctype = ["pixel", "pixel", "pixel"]
w.wcs.crpix = np.array([self.header.get("CRPIX1", 1.0),
self.header.get("CRPIX2", 1.0),
1.0])
w.wcs.crval = np.array([self.header.get("CRVAL1", 0.0),
self.header.get("CRVAL2", 0.0),
self.zbegin])
w.wcs.cdelt = np.array([self.header.get("CDELT1", 1.0),
self.header.get("CDELT2", 1.0),
self.zstep])
return w
def write(self, outfile, clobber=False):
header = self.header
header.extend(self.wcs.to_header(), update=True)
header["DATE"] = (datetime.now(timezone.utc).astimezone().isoformat(),
"File creation date")
header.add_history(" ".join(sys.argv))
hdu = fits.PrimaryHDU(data=self.data, header=header)
try:
hdu.writeto(outfile, overwrite=clobber)
except TypeError:
hdu.writeto(outfile, clobber=clobber)
@property
def width(self):
__, __, w = self.data.shape
return w
@property
def height(self):
__, h, __ = self.data.shape
return h
@property
def nslice(self):
ns, __, __ = self.data.shape
return ns
@property
@lru_cache()
def zvalues(self):
"""
Calculate the Z-axis positions for all slices
"""
nslice = self.nslice
wcs = self.wcs
pix = np.zeros(shape=(nslice, 3), dtype=int)
pix[:, 2] = np.arange(nslice)
world = wcs.wcs_pix2world(pix, 0)
return world[:, 2]
@property
def slices(self):
"""
A list of slices in the cube w.r.t. ``zvalues``.
"""
return (self.data[i, :, :] for i in range(self.nslice))
def get_slice(self, i, csize=None):
"""
Get the i-th (0-based) slice image, and crop out the central box
of size ``csize`` if specified.
"""
if csize is None:
return self.data[i, :, :]
else:
rows, cols = self.height, self.width
rc, cc = rows//2, cols//2
cs1, cs2 = csize//2, (csize+1)//2
return self.data[i, (rc-cs1):(rc+cs2), (cc-cs1):(cc+cs2)]
def apply_gain(self, gain):
"""
Multiply the supplied ``gain`` to each slice, to achieve slice
or channel response calibration or corruption.
"""
gain = np.asarray(gain)
self.data *= gain[:, np.newaxis, np.newaxis]
@property
def unit(self):
"""
Cube data unit.
"""
return self.header.get("BUNIT")
@unit.setter
def unit(self, value):
self.header["BUNIT"] = value
@property
def zunit(self):
"""
Unit of the slice z-axis positions.
"""
return self.header.get("CUNIT3")
@zunit.setter
def zunit(self, value):
self.header["CUNIT3"] = value
def cmd_info(args):
"""
Sub-command: "info", show FITS cube information
"""
cube = FITSCube(args.infile)
if cube.zunit:
pzunit = " [%s]" % cube.zunit
else:
pzunit = ""
zvalues = cube.zvalues
print("Data cube unit: %s" % cube.unit)
print("Image/slice size: %dx%d" % (cube.width, cube.height))
print("Number of slices: %d" % cube.nslice)
print("Slice step/spacing: %s%s" % (cube.zstep, pzunit))
print("Slice positions: %s <-> %s%s" %
(zvalues.min(), zvalues.max(), pzunit))
if args.meanstd:
mean = np.zeros(cube.nslice)
std = np.zeros(cube.nslice)
for i in range(cube.nslice):
image = cube.get_slice(i, csize=args.center)
if args.abs:
image = np.abs(image)
mean[i] = np.mean(image)
std[i] = np.std(image)
print("Slice <z> <mean> +/- <std>:")
for i, z in enumerate(zvalues):
print("* %12.4e: %-12.4e %-12.4e" % (z, mean[i], std[i]))
if args.outfile:
data = np.column_stack([zvalues, mean, std])
np.savetxt(args.outfile, data, header="z mean std")
print("Saved mean/std data to file: %s" % args.outfile)
def cmd_create(args):
"""
Sub-command: "create", create a FITS cube
"""
if not args.clobber and os.path.exists(args.outfile):
raise FileExistsError("output file already exists: %s" % args.outfile)
cube = FITSCube()
cube.add_slices(args.infiles, zbegin=args.zbegin, zstep=args.zstep)
cube.zunit = args.zunit
if args.unit:
cube.unit = args.unit
cube.write(args.outfile, clobber=args.clobber)
print("Created FITS cube: %s" % args.outfile)
def cmd_calibrate(args):
"""
Sub-command: "calibrate", calibrate the z-axis slice/channel responses
by fitting a polynomial.
"""
if not args.dryrun:
if args.outfile is None:
raise ValueError("--outfile required")
elif not args.clobber and os.path.exists(args.outfile):
raise OSError("output file already exists: %s" % args.outfile)
cube = FITSCube(args.infile)
zvalues = cube.zvalues
print("Data cube unit: %s" % cube.unit)
print("Image/slice size: %dx%d" % (cube.width, cube.height))
print("Number of slices: %d" % cube.nslice)
mean = np.zeros(cube.nslice)
std = np.zeros(cube.nslice)
for i in range(cube.nslice):
image = cube.get_slice(i, csize=args.center)
if args.abs:
image = np.abs(image)
threshold = np.percentile(image, q=100*args.threshold)
data = image[image >= threshold]
mean[i] = np.mean(data)
std[i] = np.std(data)
print("Fitting polynomial order: %d" % args.poly_order)
weights = 1.0 / std
pfit = np.polyfit(zvalues, mean, w=weights, deg=args.poly_order)
mean_new = np.polyval(pfit, zvalues)
coef = mean_new / mean
if args.dryrun:
print("*** DRY RUN MODE ***")
else:
print("Applying slice/channel calibration gains ...")
cube.apply_gain(coef)
print("Saving calibrated FITS cube ...")
cube.write(args.outfile, clobber=args.clobber)
print("Calibrated FITS cube wrote to: %s" % args.outfile)
print("Slice <z> <mean.old> +/- <std.old> " +
"<mean.new> <gain.coef>")
for i, z in enumerate(zvalues):
print("* %12.4e: %-12.4e %-12.4e %-12.4e %.6f" %
(z, mean[i], std[i], mean_new[i], coef[i]))
if args.save_info:
data = np.column_stack([zvalues, mean, std, mean_new, coef])
header = [
"Arguments:",
"+ center: %s" % args.center,
"+ abs: %s" % args.abs,
"+ threshold (percentile): %.2f" % args.threshold,
"+ polynomial_order: %d" % args.poly_order,
"",
"Columns:",
"1. z/frequency: z-axis position / frequency [%s]" % cube.zunit,
"2. mean.old: mean before calibration [%s]" % cube.unit,
"3. std.old: standard deviation before calibration",
"4. mean.new: mean after calibration",
"5. gain_coef: calibration coefficient",
"",
]
infofile = os.path.splitext(args.outfile)[0] + ".txt"
np.savetxt(infofile, data, header="\n".join(header))
print("Saved calibration information to file: %s" % infofile)
def main():
parser = argparse.ArgumentParser(
description="Create FITS cube from a series of image slices.")
subparsers = parser.add_subparsers(dest="subparser_name",
title="sub-commands",
help="additional help")
# sub-command: "info"
parser_info = subparsers.add_parser("info", help="show FITS cube info")
parser_info.add_argument("-c", "--center", dest="center", type=int,
help="crop the central box region of specified " +
"size to calculate the mean/std.")
parser_info.add_argument("-m", "--mean-std", dest="meanstd",
action="store_true",
help="calculate mean+/-std for each slice")
parser_info.add_argument("-a", "--abs", dest="abs", action="store_true",
help="take absolute values for image pixels")
parser_info.add_argument("-o", "--outfile", dest="outfile",
help="outfile to save mean/std values")
parser_info.add_argument("infile", help="FITS cube filename")
parser_info.set_defaults(func=cmd_info)
# sub-command: "create"
parser_create = subparsers.add_parser("create", help="create a FITS cube")
parser_create.add_argument("-C", "--clobber", dest="clobber",
action="store_true",
help="overwrite existing output file")
parser_create.add_argument("-U", "--data-unit", dest="unit",
help="cube data unit (will overwrite the " +
"slice data unit)")
parser_create.add_argument("-z", "--z-begin", dest="zbegin",
type=float, default=0.0,
help="Z-axis position of the first slice")
parser_create.add_argument("-s", "--z-step", dest="zstep",
type=float, default=1.0,
help="Z-axis step/spacing between slices")
parser_create.add_argument("-u", "--z-unit", dest="zunit",
help="Z-axis unit (e.g., cm, Hz)")
parser_create.add_argument("-o", "--outfile", dest="outfile",
required=True,
help="output FITS cube filename")
parser_create.add_argument("-i", "--infiles", dest="infiles",
nargs="+", required=True,
help="input image slices (in order)")
parser_create.set_defaults(func=cmd_create)
# sub-command: "calibrate"
parser_cal = subparsers.add_parser(
"calibrate",
help="calibrate z-axis slice/channel responses by fitting " +
"a polynomial")
parser_cal.add_argument("-n", "--dry-run", dest="dryrun",
action="store_true",
help="dry run mode")
parser_cal.add_argument("-C", "--clobber", dest="clobber",
action="store_true",
help="overwrite existing output file")
parser_cal.add_argument("-c", "--center", dest="center", type=int,
help="crop the central box region of specified " +
"size to calculate the mean/std.")
parser_cal.add_argument("-t", "--threshold", dest="threshold",
type=float, default=0.0,
help="percentile threshold (0 -> 1) and only " +
"considers image pixels with values > threshold " +
"to determine the channel/slice responses; " +
"(default: 0, i.e., all pixels are accounted for)")
parser_cal.add_argument("-a", "--abs", dest="abs", action="store_true",
help="take absolute values for image pixels")
parser_cal.add_argument("-p", "--poly-order", dest="poly_order",
type=int, default=2,
help="order of polynomial used for fitting " +
"(default: 2, i.e., quadratic)")
parser_cal.add_argument("-i", "--infile", dest="infile", required=True,
help="input FITS cube filename")
parser_cal.add_argument("-o", "--outfile", dest="outfile",
help="output calibrated FITS cube (optional " +
"for dry-run model)")
parser_cal.add_argument("--save-info", dest="save_info",
action="store_true",
help="save the calibration information of echo " +
"channel/slice to a text file")
parser_cal.set_defaults(func=cmd_calibrate)
#
args = parser.parse_args()
args.func(args)
if __name__ == "__main__":
main()
|