/usr/include/astrotcl/ImageIO.h is in skycat 3.1.2+starlink1~b-8+b2.
This file is owned by root:root, with mode 0o644.
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 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 | // -*-c++-*-
#ifndef _ImageIO_h_
#define _ImageIO_h_
/*
* E.S.O. - VLT project / ESO Archive
*
* "@(#) $Id: ImageIO.h,v 1.1.1.1 2009/03/31 14:11:53 cguirao Exp $"
*
* ImageIO.h - declarations for class ImageIO, an abstract base class
* representing the contents of an image file (or other
* image source) and managing the reading and writing of
* image files. The image data is (optionally) kept in shared
* memory so that it can be easily accessed by external
* applications.
*
* who when what
* -------------- -------- ----------------------------------------
* Allan Brighton 05/10/95 Created
*
* 12/03/98 Remove dependency on FitsIO (delegated to
* class FitsIO or other class derived from
* ImageIORep.
* Added WCS class, for optional World Coords
* support.
* Peter W. Draper 04/02/00 Changed constness of write so that
* non-const member can be used within this
* member.
* 30/05/01 Added DOUBLE_IMAGE enumeration.
* Added copy() and setHDU pure virtual members
* to support CompoundImageData not having access
* to the FitsIO class. The actual effect
* of the setHDU member is left to the
* implementation (this switches HDU for FitsIO).
* Peter W. Draper 08/01/07 Comment out isclear() methods. Not used and
* no longer reflect how a blank image is detected
* (if resurrected need to add and then check for
* RTD_BLANK value in OBJECT card to match behaviour
* in RTD, or add a member for blankness).
* pbiereic 12/08/07 added support for data types double and long long int
*/
#include <iostream>
#include <cstdlib>
#include <cmath>
#include <cstdlib>
#include "WCSRep.h"
#include "Mem.h"
// types of image data (these mostly correspond to the FITS BITPIX values)
enum ImageDataType {
UNKNOWN_IMAGE = -1, // unknown type
BYTE_IMAGE = 8, // 8 bit images
X_IMAGE = -8, // special, already color scaled, X image data
SHORT_IMAGE = 16, // 16 bit signed
USHORT_IMAGE = -16, // 16 bit unsigned
LONG_IMAGE = 32, // 32 bit integer
FLOAT_IMAGE = -32, // 32 bit floating point
LONGLONG_IMAGE = 64, // 64 bit integer
DOUBLE_IMAGE = -64 // 64 bit double
};
/*
* This class is used internally for reference counting and subclassing.
* The public interface is through the ImageIO class.
*/
class ImageIORep {
friend class ImageIO;
protected:
int width_, height_; // image dimensions
int bitpix_; // image data type
double bzero_, bscale_; // image value = bzero + bscale * val
Mem header_, data_; // header and data are kept in shared memory,
// Format of header is FITS.
WCS wcs_; // object used to manage World Coordinate conversion
// (You can initialize wcs by calling the virtual method "wcsinit()".)
int refcnt_; // reference count
int status_; // status after constructor
// constructor (derived classes call this)
ImageIORep(int width, int height, int bitpix,
double bzero, double bscale,
const Mem& header, const Mem& data)
: width_(width), height_(height), bitpix_(bitpix),
bzero_(bzero), bscale_(bscale),
header_(header), data_(data),
refcnt_(1), status_(0), usingNetBO_(1) {}
// FITS uses network byte order (=big Endian).
int usingNetBO_;
public:
// destructor
virtual ~ImageIORep() {}
// the following methods must be defined in a derived class
// initialize world coordinates (based on the image header)
virtual int wcsinit() = 0;
// If byte swapping is needed for this machine and image, make a byte
// swapped copy of the image data, otherwise, do nothing.
int byteSwapData();
// return the class name as a string
virtual const char* classname() const = 0;
// get the value for the given image header keyword and return 0 if found
virtual int get(const char* keyword, double& val) const = 0;
virtual int get(const char* keyword, float& val) const = 0;
virtual int get(const char* keyword, int& val) const = 0;
virtual int get(const char* keyword, long& val) const = 0;
virtual int get(const char* keyword, long long& val) const = 0;
virtual int get(const char* keyword, unsigned char& val) const = 0;
virtual int get(const char* keyword, unsigned short& val) const = 0;
virtual int get(const char* keyword, short& val) const = 0;
// find and return the value for the given FITS keyword, or NULL if not found
virtual char* get(const char* keyword) const = 0;
// write a (ASCII formatted) copy of the FITS header to the given stream.
virtual int getFitsHeader(ostream& os) const = 0;
// write the data to an image file
virtual int write(const char *filename) = 0;
// apply bzero and bscale to the value
double scaleValue(double d) const {return bzero_+d*bscale_;}
// reverse the effect of bzero and bscale
double unScaleValue(double d) const {return (d-bzero_)/bscale_;}
// return the size in bytes of a raw image pixel
int pixelSize() const {return abs(bitpix_)/8;}
// member access
int width() const {return width_;}
int height() const {return height_;}
int bitpix() const {return bitpix_;}
double bscale() const {return bscale_;}
void bscale(double d) {bscale_ = d;}
double bzero() const {return bzero_;}
void bzero(double d) {bzero_ = d;}
Mem& header() {return header_;}
Mem& data() {return data_;}
int status() const {return status_;}
void status(int s) {status_ = s;}
// class uses network byte ordering (=big Endian)
int usingNetBO() const {return usingNetBO_;}
void usingNetBO(int bo) {usingNetBO_ = bo;}
// return the object used to manage world coordinates
WCS& wcs() const {return (WCS&)wcs_;}
// set the object used to manage world coordinates
void wcs(const WCS& newwcs) {wcs_ = newwcs;}
// replace header
int header(const Mem&);
// replace data with data of same size
int data(const Mem&);
// Return true if no image is loaded (a 2x2 pixel or smaller
// image is considered blank).
// PWD: unsafe function. This is not true.
//virtual int isclear() const {return width_ <= 2 && height_ <= 2;}
// create a copy, as lightweight as possible.
virtual ImageIORep *copy() = 0;
// switch to another component of the implementation.
virtual int setHDU(int num) = 0;
};
/*
* This class defines the public interface for image I/O. It uses reference
* counting with the above class to make it easier to implement different
* views of the same image data.
*/
class ImageIO {
private:
ImageIORep* rep_; // internal representation for reference counting
public:
// constructor, to create a null object (use assignment operator to set later)
ImageIO() : rep_((ImageIORep*)NULL) {}
// constructor, from a pointer to a subclass of ImageIORep (FitsIO, etc...).
// rep should be allocated with new and will be deleted by this class when
// there are no more references to it.
ImageIO(ImageIORep* rep) : rep_(rep) {}
// copy constructor
ImageIO(const ImageIO&);
// destructor
~ImageIO();
// assignment
ImageIO& operator=(const ImageIO&);
// write the data to an image file
int write(const char *filename) const {
return rep_->write(filename);
}
// initialize world coordinates (based on the image header)
int wcsinit() {
return rep_->wcsinit();
}
// get the value for the given image header keyword and return 0 if found
int get(const char* keyword, double& val) const {
return rep_->get(keyword, val);
}
int get(const char* keyword, float& val) const {
return rep_->get(keyword, val);
}
int get(const char* keyword, int& val) const {
return rep_->get(keyword, val);
}
int get(const char* keyword, long& val) const {
return rep_->get(keyword, val);
}
int get(const char* keyword, long long& val) const {
return rep_->get(keyword, val);
}
int get(const char* keyword, unsigned char& val) const {
return rep_->get(keyword, val);
}
int get(const char* keyword, unsigned short& val) const {
return rep_->get(keyword, val);
}
int get(const char* keyword, short& val) const {
return rep_->get(keyword, val);
}
// find and return the value for the given FITS keyword, or NULL if not found
char* get(const char* keyword) const {
return rep_->get(keyword);
}
// get the value for the given image header keyword or return the
// supplied default value if not found
int get(const char* keyword, double& val, double defVal) const {
if (rep_->get(keyword, val) != 0) val = defVal; return 0;
}
int get(const char* keyword, float& val, float defVal) const {
if (rep_->get(keyword, val) != 0) val = defVal; return 0;
}
int get(const char* keyword, int& val, int defVal) const {
if (rep_->get(keyword, val) != 0) val = defVal; return 0;
}
int get(const char* keyword, long& val, long defVal) const {
if (rep_->get(keyword, val) != 0) val = defVal; return 0;
}
int get(const char* keyword, long long& val, long defVal) const {
if (rep_->get(keyword, val) != 0) val = defVal; return 0;
}
int get(const char* keyword, unsigned char& val, unsigned char defVal) const {
if (rep_->get(keyword, val) != 0) val = defVal; return 0;
}
int get(const char* keyword, unsigned short& val, unsigned short defVal) const {
if (rep_->get(keyword, val) != 0) val = defVal; return 0;
}
int get(const char* keyword, short& val, short defVal) const {
if (rep_->get(keyword, val) != 0) val = defVal; return 0;
}
char* get(const char* keyword, const char* defVal) const {
char* s = rep_->get(keyword); return (s != NULL) ? s : (char*)defVal;
}
// write a (ASCII formatted) copy of the FITS header to the given stream.
int getFitsHeader(ostream& os) const {
return rep_->getFitsHeader(os);
}
// apply bzero and bscale to the value
double scaleValue(double d) const {return rep_->scaleValue(d);}
// reverse the effect of bzero and bscale
double unScaleValue(double d) const {return rep_->unScaleValue(d);}
// return the size in bytes of a raw image pixel
int pixelSize() const {return rep_->pixelSize();}
// member access
int width() const {return rep_->width();}
int height() const {return rep_->height();}
int bitpix() const {return rep_->bitpix();}
double bscale() const {return rep_->bscale();}
void bscale(double d) {rep_->bscale(d);}
double bzero() const {return rep_->bzero();}
void bzero(double d) {rep_->bzero(d);}
const Mem& header() const {return rep_->header();}
const Mem& data() const {return rep_->data();}
int usingNetBO() const {return rep_->usingNetBO();}
void usingNetBO(int bo) {rep_->usingNetBO(bo);}
// return a reference to the object used to manage world coordinates
WCS& wcs() const {return rep_->wcs();}
// set the object used to manage world coordinates
void wcs(const WCS& newwcs) {rep_->wcs(newwcs);}
// replace header
int header(const Mem& m) {return rep_->header(m);}
// replace data with data of same size
int data(const Mem& m) {return rep_->data(m);}
// short cuts
const char* headerPtr() const {return (const char*)rep_->header().ptr();}
const void* dataPtr() const {return rep_->data().ptr();}
// note: if status is non-zero, the other methods are undefined
int status() const {return rep_ ? rep_->status() : 1;}
// Return true if no image is loaded.
// PWD: see ImageIORep.
//int isclear() const {return rep_->isclear();}
// return a pointer to the internal class
ImageIORep* rep() const {return rep_;}
};
#endif /* _ImageIO_h_ */
|