/usr/lib/python/astrometry/util/image2pnm.py is in astrometry.net 0.46-0ubuntu2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #! /usr/bin/env python
"""
Convert an image in a variety of formats into a pnm file
Copyright Keir Mierle 2007, Dustin Lang 2008,2009
"""
import sys
import os
import os.path
import tempfile
if __name__ == '__main__':
import addpath
addpath.addpath()
from astrometry.util.shell import shell_escape
from astrometry.util.filetype import filetype_short
import logging
fitstype = 'FITS image data'
fitsext = 'fits'
tiffext = 'tiff'
pgmcmd = 'pgmtoppm rgbi:1/1/1 %s > %s'
pgmext = 'pgm'
an_fitstopnm_ext_cmd = 'an-fitstopnm -e %i -i %%s > %%s'
imgcmds = {fitstype : (fitsext, 'an-fitstopnm -i %s > %s'),
'JPEG image data' : ('jpg', 'jpegtopnm %s > %s'),
'PNG image data' : ('png', 'pngtopnm %s > %s'),
'PNG image' : ('png', 'pngtopnm %s > %s'),
'GIF image data' : ('gif', 'giftopnm %s > %s'),
'Netpbm PPM' : ('ppm', 'ppmtoppm < %s > %s'),
'Netpbm PPM "rawbits" image data' : ('ppm', 'cp %s %s'),
'Netpbm PGM' : ('pgm', pgmcmd),
'Netpbm PGM "rawbits" image data' : ('pgm', pgmcmd),
'TIFF image data' : ('tiff', 'tifftopnm %s > %s'),
'PC bitmap' : ('bmp', 'bmptopnm %s > %s'),
# RAW is not recognized by 'file'; we have to use 'dcraw',
# but we still store this here for convenience.
'raw' : ('raw', 'dcraw -4 -c %s > %s'),
}
compcmds = {'gzip compressed data' : ('gz', 'gunzip -c %s > %s'),
"compress'd data 16 bits" : ('gz', 'gunzip -c %s > %s'),
'bzip2 compressed data' : ('bz2', 'bunzip2 -k -c %s > %s')
}
# command to identify a RAW image.
raw_id_cmd = 'dcraw -i %s >/dev/null 2> /dev/null'
verbose = False
def do_command(cmd):
logging.debug('Running: "%s"' % cmd)
if os.system(cmd) != 0:
print >>sys.stderr, 'Command failed: %s' % cmd
sys.exit(-1)
def get_cmd(types, cmds):
if types is None:
return None
ext=None
cmd=None
for t in types:
(ext,cmd) = cmds.get(t, (None,None))
if ext is not None:
break
return (ext,cmd)
def uncompress_file(infile, uncompressed, typeinfo=None):
"""
infile: input filename.
uncompressed: output filename.
typeinfo: output from the 'file' command; if None we'll run 'file'.
Returns: comptype
comptype: None if the file wasn't compressed, or 'gz' or 'bz2'.
"""
if typeinfo is None:
typeinfo = filetype_short(infile)
if typeinfo is None:
logging.debug('Could not determine file type of "%s"' % infile)
return None
(ext,cmd) = get_cmd(typeinfo, compcmds)
if ext is None:
logging.debug('File is not compressed: "%s"' % '/'.join(typeinfo))
return None
assert uncompressed != infile
logging.debug('Compressed file (type %s), dumping to: "%s"' % (ext, uncompressed))
do_command(cmd % (shell_escape(infile), shell_escape(uncompressed)))
return ext
def is_raw(fn):
rtn = os.system(raw_id_cmd % shell_escape(fn))
logging.debug('ran dcraw: return value %i' % rtn)
return os.WIFEXITED(rtn) and (os.WEXITSTATUS(rtn) == 0)
# Returns (extension, command, error)
def get_image_type(infile):
typeinfo = filetype_short(infile)
if typeinfo is None:
return (None, None, 'Could not determine file type (does the file exist?): %s' % infile)
(ext,cmd) = get_cmd(typeinfo, imgcmds)
logging.debug('ext: %s' % ext)
# "file" recognizes some RAWs as TIFF, but tifftopnm can't read them...
# run "dcraw" here if the type is TIFF.
if ext == tiffext and is_raw(infile):
(ext, cmd) = imgcmds['raw']
if ext is not None:
return (ext, cmd, None)
if ext != tiffext and is_raw(infile):
# it's a RAW image.
(ext, cmd) = imgcmds['raw']
return (ext, cmd, None)
return (None, None, 'Unknown image type "%s"' % typeinfo)
def find_program(mydir, cmd):
# pull off the executable name.
parts = cmd.split(' ', 1)
prog = parts[0]
# try the same directory - this should work for installed
# versions where image2pnm.py and an-fitstopnm are both in
# "bin".
p = os.path.join(mydir, prog)
if os.path.exists(p):
return ' '.join([p, parts[1]])
logging.info('path', p, 'does not exist.')
return None
def image2pnm(infile, outfile, sanitized=None, force_ppm=False,
no_fits2fits=False, extension=None, mydir=None,
fix_sdss=False):
"""
infile: input filename.
outfile: output filename.
sanitized: for FITS images, output filename of sanitized (fits2fits'd) image.
force_ppm: boolean, convert PGM to PPM so that the output is always PPM.
Returns: (type, error)
- type: (string): image type: 'jpg', 'png', 'gif', etc., or None if
image type isn't recognized.
- error: (string): error string, or None
"""
(ext, cmd, err) = get_image_type(infile)
if ext is None:
return (None, 'Image type not recognized: ' + err)
tempfiles = []
(outfile_dir, outfile_file) = os.path.split(outfile)
if (ext == fitsext) and fix_sdss and no_fits2fits:
# We want to run fix_sdss_idr even if no_fits2fits is set.
from fix_sdss_idr import is_sdss_idr_file, fix_sdss_idr_file
if is_sdss_idr_file(infile):
(f, fixidr) = tempfile.mkstemp('fix_sdss_idr', outfile_file, outfile_dir)
os.close(f)
tempfiles.append(fixidr)
logging.debug('fix_sdss_idr(in="%s", out="%s")' % (infile, fixidr))
fix_sdss_idr_file(infile, fixidr)
infile = fixidr
# If it's a FITS file we want to filter it first because of the many
# misbehaved FITS files. fits2fits is a sanitizer.
if (ext == fitsext) and (not no_fits2fits):
from fits2fits import fits2fits as fits2fits
if not sanitized:
(f, sanitized) = tempfile.mkstemp('sanitized', outfile_file, outfile_dir)
os.close(f)
tempfiles.append(sanitized)
else:
assert sanitized != infile
logging.debug('fits2fits(in="%s", out="%s", fix_idr=%s)' %
(infile, sanitized, str(fix_sdss)))
errstr = fits2fits(infile, sanitized, fix_idr=fix_sdss)
if errstr:
return (None, errstr)
infile = sanitized
if force_ppm:
original_outfile = outfile
(outfile_dir, outfile_file) = os.path.split(outfile)
(f, outfile) = tempfile.mkstemp('pnm', outfile_file, outfile_dir)
# we might rename this file later, so don't add it to the list of
# tempfiles to delete until later...
os.close(f)
logging.debug('temporary output file: %s' % outfile)
if ext == fitsext and extension:
cmd = an_fitstopnm_ext_cmd % extension
if ext == fitsext and mydir:
# an-fitstopnm: add explicit path...
cmd = find_program(mydir, cmd)
if cmd is None:
return (None, 'Couldn\'t find the program "an-fitstopnm".')
# Do the actual conversion
do_command(cmd % (shell_escape(infile), shell_escape(outfile)))
if force_ppm:
if ext == pgmext:
# Convert to PPM.
do_command(pgmcmd % (shell_escape(outfile), shell_escape(original_outfile)))
tempfiles.append(outfile)
else:
os.rename(outfile, original_outfile)
for fn in tempfiles:
os.unlink(fn)
# Success
return (ext, None)
def convert_image(infile, outfile, uncompressed=None, sanitized=None,
force_ppm=False, no_fits2fits=False, extension=None,
mydir=None, fix_sdss=False):
tempfiles = []
# if the caller didn't specify where to put the uncompressed file,
# create a tempfile.
if uncompressed is None:
(outfile_dir, outfile_file) = os.path.split(outfile)
(f, uncompressed) = tempfile.mkstemp('', 'uncomp', outfile_dir)
os.close(f)
tempfiles.append(uncompressed)
comp = uncompress_file(infile, uncompressed)
if comp:
print 'compressed'
print comp
infile = uncompressed
(imgtype, errstr) = image2pnm(infile, outfile, sanitized, force_ppm, no_fits2fits, extension, mydir, fix_sdss)
for fn in tempfiles:
os.unlink(fn)
if errstr:
logging.error('ERROR: %s' % errstr)
return -1
print imgtype
return 0
def main():
from optparse import OptionParser
parser = OptionParser()
parser.add_option('-i', '--infile',
dest='infile',
help='input image FILE', metavar='FILE')
parser.add_option('-u', '--uncompressed-outfile',
dest='uncompressed_outfile',
help='uncompressed temporary FILE', metavar='FILE',
default='')
parser.add_option('-s', '--sanitized-fits-outfile',
dest='sanitized_outfile',
help='sanitized temporary fits FILE', metavar='FILE',
default='')
parser.add_option('-o', '--outfile',
dest='outfile',
help='output pnm image FILE', metavar='FILE')
parser.add_option('-p', '--ppm',
action='store_true', dest='force_ppm',
help='convert the output to PPM')
parser.add_option('-e', '--extension',
dest='extension', type='int',
help='FITS extension to read')
parser.add_option('-2', '--no-fits2fits',
action='store_true', dest='no_fits2fits',
help="don't sanitize FITS files")
parser.add_option('-S', '--fix-sdss',
action='store_true', dest='fix_sdss',
help="fix SDSS idR files")
parser.add_option('-v', '--verbose',
action='store_true', dest='verbose',
help='be chatty')
(options, args) = parser.parse_args()
if not options.infile:
parser.error('required argument missing: infile')
if not options.outfile:
parser.error('required argument missing: outfile')
# Find the path to this executable and use it to find other Astrometry.net
# executables.
if (len(sys.argv) > 0):
mydir = os.path.dirname(sys.argv[0])
global verbose
verbose = options.verbose
logformat = '%(message)s'
if verbose:
logging.basicConfig(level=logging.DEBUG, format=logformat)
else:
logging.basicConfig(level=logging.INFO, format=logformat)
logging.raiseExceptions = False
return convert_image(options.infile, options.outfile,
options.uncompressed_outfile,
options.sanitized_outfile,
options.force_ppm,
options.no_fits2fits,
options.extension,
mydir, fix_sdss=options.fix_sdss)
if __name__ == '__main__':
sys.exit(main())
|