casacore
Loading...
Searching...
No Matches
WCUnion.h
Go to the documentation of this file.
1//# WCUnion.h: Make the union of 2 or more image regions
2//# Copyright (C) 1998
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_WCUNION_H
27#define IMAGES_WCUNION_H
28
29//# Includes
30#include <casacore/casa/aips.h>
31#include <casacore/images/Regions/WCCompound.h>
32
33
34namespace casacore { //# NAMESPACE CASACORE - BEGIN
35
36// <summary>
37// Make the union of 2 or more image regions.
38// </summary>
39
40// <use visibility=export>
41
42// <reviewed reviewer="" date="" tests="">
43// </reviewed>
44
45// <prerequisite>
46// <li> <linkto class=WCCompound>WCCompound</linkto>
47// </prerequisite>
48
49// <synopsis>
50// The WCUnion class is a specialization of class
51// <linkto class=WCCompound>WCCompound</linkto>.
52// It makes it possible to take the union of 2 or more image regions.
53// Note that only world coordinate regions can be used in a compound,
54// thus an LCSlicer object is not allowed in a union.
55// <p>
56// The union of regions is the collection of the pixels masked-on
57// in any region.
58// Note that the bounding box of a union is determined by the outermost
59// pixels. It means that if regions are very far apart, the bounding
60// box of the union is very large and therefore inefficient.
61// <p>
62// The regions in a union can have different axes and dimensionalities.
63// The axes and dimensionality of a union are determined by the
64// collection of all different axes in its regions. Each individual region
65// will be auto-extended along the axes not being part of the region.
66// E.g. one can define a WCBox with axis RA and another WCBox with
67// axis DEC. The union will be 2-dim with axes RA and DEC. The first
68// box will be auto-extended to cover the DEC axis, which results
69// in a 2-dim box with its DEC axis the length of the image's DEC axis.
70// Similarly the second box will be auto-extended to cover the RA axis.
71// </synopsis>
72
73// <example>
74// <srcblock>
75// </srcblock>
76// </example>
77
78//# <todo asof="1997/11/11">
79//# <li>
80//# </todo>
81
82
83class WCUnion: public WCCompound
84{
85public:
86 // Construct the union of one or more image regions.
87 // The image regions have to contain WCRegion objects, otherwise an
88 // exception is thrown.
89 // <group>
90 WCUnion (const ImageRegion& region1, const ImageRegion& region2);
91 WCUnion (const ImageRegion* region1,
92 const ImageRegion* region2 = 0,
93 const ImageRegion* region3 = 0,
94 const ImageRegion* region4 = 0,
95 const ImageRegion* region5 = 0,
96 const ImageRegion* region6 = 0,
97 const ImageRegion* region7 = 0,
98 const ImageRegion* region8 = 0,
99 const ImageRegion* region9 = 0,
100 const ImageRegion* region10 = 0);
102 // </group>
103
104 // Construct from multiple regions given as a Block.
105 // When <src>takeOver</src> is True, the destructor will delete the
106 // given regions. Otherwise a copy of the regions is made.
108
109 // Copy constructor (copy semantics).
110 WCUnion (const WCUnion& other);
111
112 virtual ~WCUnion();
113
114 // Assignment (copy semantics).
115 WCUnion& operator= (const WCUnion& other);
116
117 // Comparison
118 virtual Bool operator== (const WCRegion& other) const;
119
120 // Make a copy of the derived object.
121 virtual WCRegion* cloneRegion() const;
122
123 // Get the class name (to store in the record).
125
126 // Get the region type. Returns className()
127 virtual String type() const;
128
129 // Convert the (derived) object to a record.
130 virtual TableRecord toRecord (const String& tableName) const;
131
132 // Convert correct object from a record.
134 const String& tableName);
135
136protected:
137 // Convert to an LCRegion using the given coordinate system and shape.
138 // pixelAxesMap(i) gives the pixel axis in cSys of axes <src>i</src>
139 // in the axesDesc.
141 const IPosition& shape,
142 const IPosition& pixelAxesMap,
143 const IPosition& outOrder) const;
144};
145
146
147
148} //# NAMESPACE CASACORE - END
149
150#endif
A drop-in replacement for Block<T*>.
Definition Block.h:812
String: the storage and methods of handling collections of characters.
Definition String.h:223
const PtrBlock< const WCRegion * > & regions() const
Get the contributing regions.
Definition WCCompound.h:154
WCUnion & operator=(const WCUnion &other)
Assignment (copy semantics).
virtual WCRegion * cloneRegion() const
Make a copy of the derived object.
virtual String type() const
Get the region type.
static WCUnion * fromRecord(const TableRecord &, const String &tableName)
Convert correct object from a record.
static String className()
Get the class name (to store in the record).
WCUnion(const WCUnion &other)
Copy constructor (copy semantics).
WCUnion(Bool takeOver, const PtrBlock< const WCRegion * > &regions)
Construct from multiple regions given as a Block.
WCUnion(const ImageRegion &region1, const ImageRegion &region2)
Construct the union of one or more image regions.
WCUnion(const ImageRegion *region1, const ImageRegion *region2=0, const ImageRegion *region3=0, const ImageRegion *region4=0, const ImageRegion *region5=0, const ImageRegion *region6=0, const ImageRegion *region7=0, const ImageRegion *region8=0, const ImageRegion *region9=0, const ImageRegion *region10=0)
virtual TableRecord toRecord(const String &tableName) const
Convert the (derived) object to a record.
virtual Bool operator==(const WCRegion &other) const
Comparison.
virtual ~WCUnion()
WCUnion(const PtrBlock< const ImageRegion * > &regions)
virtual LCRegion * doToLCRegion(const CoordinateSystem &cSys, const IPosition &shape, const IPosition &pixelAxesMap, const IPosition &outOrder) const
Convert to an LCRegion using the given coordinate system and shape.
this file contains all the compiler specific defines
Definition mainpage.dox:28
TableExprNode shape(const TableExprNode &array)
Function operating on any scalar or array resulting in a Double array containing the shape.
Definition ExprNode.h:1991
bool Bool
Define the standard types used by Casacore.
Definition aipstype.h:40