casacore
Loading...
Searching...
No Matches
ImageOpener.h
Go to the documentation of this file.
1//# ImageOpener.h: A class with static functions to open an image of any type
2//# Copyright (C) 2005
3//# Associated Universities, Inc. Washington DC, USA.
4//#
5//# This library is free software; you can redistribute it and/or modify it
6//# under the terms of the GNU Library General Public License as published by
7//# the Free Software Foundation; either version 2 of the License, or (at your
8//# option) any later version.
9//#
10//# This library is distributed in the hope that it will be useful, but WITHOUT
11//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12//# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13//# License for more details.
14//#
15//# You should have received a copy of the GNU Library General Public License
16//# along with this library; if not, write to the Free Software Foundation,
17//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
18//#
19//# Correspondence concerning AIPS++ should be addressed as follows:
20//# Internet email: casa-feedback@nrao.edu.
21//# Postal address: AIPS++ Project Office
22//# National Radio Astronomy Observatory
23//# 520 Edgemont Road
24//# Charlottesville, VA 22903-2475 USA
25
26#ifndef IMAGES_IMAGEOPENER_H
27#define IMAGES_IMAGEOPENER_H
28
29
30#include <casacore/casa/aips.h>
31#include <casacore/images/Images/MaskSpecifier.h>
32#include <casacore/casa/Containers/Block.h>
33#include <map>
34
35namespace casacore { //# NAMESPACE CASACORE - BEGIN
36
37//# Forward Declarations
38class LatticeBase;
39class LatticeExprNode;
40class JsonKVMap;
41
42// <summary>
43// Definition of image types and handlers
44// </summary>
45//
46// <use visibility=local>
47//
48// <reviewed reviewer="" date="yyyy/mm/dd" tests="" demos="">
49// </reviewed>
50//
51// <synopsis>
52// The class contains defines the possible image types.
53// It contains a registry containing functions to construct an image
54// based on its type. In this way any image can be used in the image package
55// without the need that the code must reside in the images package.
56// </synopsis>
57//
58// <motivation>
59// FITS and MIRIAD needed to be moved out of the images package.
60// </motivation>
61
62
64{
65public:
66// Define the possible image types.
68 // Casacore (former AIPS++)
70 // FITS
72 // Miriad
74 // Gipsy
76 // Classic AIPS
78 // Newstar
80 // HDF5
82 // ImageConcat
84 // ImageExpr
86 // ComponentListImage, CASA
88 // Unknown
90 };
91
92 // Return the type of an image with the given name. Will throw an
93 // exception if file does not exist.
94 static ImageTypes imageType (const String& fileName);
95
96 // Define the signature of a function opening an image.
97 // Each basic image class (like FITSImage) must have a static open function
98 // with this signature.
99 // They can be registered using registerOpenImageFunction.
100 // In this way a function like openImage can create any image object
101 // without the need that all image classes are in the images package.
102 // The LogIO object can be used for possible error reporting or logging.
103 typedef LatticeBase* OpenImageFunction (const String& fileName,
104 const MaskSpecifier&);
105
106 // Register an openImageFunction.
108
109 // Open an image in the file/table with the given name.
110 // The specified mask will be applied (default is default mask).
111 // A null pointer is returned for an unknown image type.
112 // Non-Casacore image types must have been registered to be known.
113 // Note that class ImageProxy has a function to open an image from a file
114 // or from an image expression.
115 static LatticeBase* openImage (const String& fileName,
116 const MaskSpecifier& = MaskSpecifier());
117
118 // Open a Casacore paged image of any data type.
119 static LatticeBase* openPagedImage (const String& fileName,
120 const MaskSpecifier& = MaskSpecifier());
121
122 // Open an HDF5 paged image of any data type.
123 static LatticeBase* openHDF5Image (const String& fileName,
124 const MaskSpecifier& = MaskSpecifier());
125
126 // Open a persistent image concatenation of any type.
127 static LatticeBase* openImageConcat (const String& fileName);
128
129 // Open a persistent image expression of any type.
130 // It reads the file written by ImageExpr::save.
131 static LatticeBase* openImageExpr (const String& fileName);
132
133 // Parse an image expression and return the ImageExpr<T> object for it.
134 // The block of nodes represents optional $i arguments in the expression.
135 // The JsonKVMap gives the keys found in a persistent image.expr file.
136 static LatticeBase* openExpr (const String& expr,
137 const Block<LatticeExprNode>& nodes,
138 const String& fileName = String());
139 static LatticeBase* openExpr (const String& expr,
140 const Block<LatticeExprNode>& nodes,
141 const String& fileName,
142 const JsonKVMap&);
143
144private:
145 // Mapping of the image type to an openImage function.
146 static std::map<ImageTypes,OpenImageFunction*> theirOpenFuncMap;
147};
148
149
150} //# NAMESPACE CASACORE - END
151
152#endif
simple 1-D array
Definition Block.h:198
static LatticeBase * openExpr(const String &expr, const Block< LatticeExprNode > &nodes, const String &fileName, const JsonKVMap &)
static LatticeBase * openHDF5Image(const String &fileName, const MaskSpecifier &=MaskSpecifier())
Open an HDF5 paged image of any data type.
static LatticeBase * openExpr(const String &expr, const Block< LatticeExprNode > &nodes, const String &fileName=String())
Parse an image expression and return the ImageExpr<T> object for it.
static LatticeBase * openImageExpr(const String &fileName)
Open a persistent image expression of any type.
static LatticeBase * openImage(const String &fileName, const MaskSpecifier &=MaskSpecifier())
Open an image in the file/table with the given name.
static std::map< ImageTypes, OpenImageFunction * > theirOpenFuncMap
Mapping of the image type to an openImage function.
static LatticeBase * openImageConcat(const String &fileName)
Open a persistent image concatenation of any type.
static ImageTypes imageType(const String &fileName)
Return the type of an image with the given name.
LatticeBase * OpenImageFunction(const String &fileName, const MaskSpecifier &)
Define the signature of a function opening an image.
static LatticeBase * openPagedImage(const String &fileName, const MaskSpecifier &=MaskSpecifier())
Open a Casacore paged image of any data type.
ImageTypes
Define the possible image types.
Definition ImageOpener.h:67
@ AIPSPP
Casacore (former AIPS++)
Definition ImageOpener.h:69
@ IMAGECONCAT
ImageConcat.
Definition ImageOpener.h:83
@ CAIPS
Classic AIPS.
Definition ImageOpener.h:77
@ IMAGEEXPR
ImageExpr.
Definition ImageOpener.h:85
@ COMPLISTIMAGE
ComponentListImage, CASA.
Definition ImageOpener.h:87
static void registerOpenImageFunction(ImageTypes, OpenImageFunction *)
Register an openImageFunction.
String: the storage and methods of handling collections of characters.
Definition String.h:223
this file contains all the compiler specific defines
Definition mainpage.dox:28