casa
$Rev:20696$
|
A templated, abstract base class for array-like objects with masks. More...
#include <MaskedLattice.h>
Public Member Functions | |
MaskedLattice () | |
Default constructor. | |
MaskedLattice (const MaskedLattice< T > &) | |
Copy constructor. | |
virtual | ~MaskedLattice () |
a virtual destructor is needed so that it will use the actual destructor in the derived class | |
virtual MaskedLattice< T > * | cloneML () const =0 |
Make a copy of the object (reference semantics). | |
virtual Lattice< T > * | clone () const |
Make a copy of the derived object (reference semantics). | |
virtual Bool | isMasked () const |
Has the object really a mask? The default implementation returns True if the MaskedLattice has a region with a mask. | |
virtual Bool | hasPixelMask () const |
Does the lattice have a pixelmask? The default implementation returns False. | |
virtual const Lattice< Bool > & | pixelMask () const |
Get access to the pixelmask. | |
virtual Lattice< Bool > & | pixelMask () |
const LatticeRegion & | region () const |
Get the region used. | |
Bool | getMask (COWPtr< Array< Bool > > &buffer, Bool removeDegenerateAxes=False) const |
Get the mask or a slice from the mask. | |
Bool | getMaskSlice (COWPtr< Array< Bool > > &buffer, const Slicer §ion, Bool removeDegenerateAxes=False) const |
Bool | getMaskSlice (COWPtr< Array< Bool > > &buffer, const IPosition &start, const IPosition &shape, Bool removeDegenerateAxes=False) const |
Bool | getMaskSlice (COWPtr< Array< Bool > > &buffer, const IPosition &start, const IPosition &shape, const IPosition &stride, Bool removeDegenerateAxes=False) const |
Bool | getMask (Array< Bool > &buffer, Bool removeDegenerateAxes=False) |
Bool | getMaskSlice (Array< Bool > &buffer, const Slicer §ion, Bool removeDegenerateAxes=False) |
Bool | getMaskSlice (Array< Bool > &buffer, const IPosition &start, const IPosition &shape, Bool removeDegenerateAxes=False) |
Bool | getMaskSlice (Array< Bool > &buffer, const IPosition &start, const IPosition &shape, const IPosition &stride, Bool removeDegenerateAxes=False) |
Array< Bool > | getMask (Bool removeDegenerateAxes=False) const |
Array< Bool > | getMaskSlice (const Slicer §ion, Bool removeDegenerateAxes=False) const |
Array< Bool > | getMaskSlice (const IPosition &start, const IPosition &shape, Bool removeDegenerateAxes=False) const |
Array< Bool > | getMaskSlice (const IPosition &start, const IPosition &shape, const IPosition &stride, Bool removeDegenerateAxes=False) const |
virtual Bool | doGetMaskSlice (Array< Bool > &buffer, const Slicer §ion) |
The function (in the derived classes) doing the actual work. | |
Protected Member Functions | |
MaskedLattice< T > & | operator= (const MaskedLattice< T > &) |
Assignment can only be used by derived classes. | |
virtual const LatticeRegion * | getRegionPtr () const =0 |
Get a pointer to the region used. | |
Private Attributes | |
LatticeRegion * | itsDefRegPtr |
A templated, abstract base class for array-like objects with masks.
Public interface
Lattice: "A regular, periodic configuration of points, particles, or objects, throughout an area of a space..." (American Heritage Directory) This definition matches our own: an n-dimensional arrangement of items, on regular orthogonal axes.
This pure abstract base class defines the operations which may be performed on any concrete class derived from it. It has only a few non-pure virtual member functions. The fundamental contribution of this class, therefore, is that it defines the operations derived classes must provide:
Tip: Lattices are always zero origined;
Because Lattice is an abstract base class, an actual instance of this class cannot be constructed. However the interface it defines can be used inside a function. This is always recommended as it allows Functions which have Lattices as arguments to work for any derived class.
I will give a few examples here and then refer the reader to the ArrayLattice class (a memory resident Lattice) and the PagedArray class (a disk based Lattice) which contain further examples with concrete classes (rather than an abstract one). All the examples shown below are used in the dLattice.cc
demo program.
This example calculates the mean of the Lattice. Because Lattices can be too large to fit into physical memory it is not good enough to simply use getSlice
to read all the elements into an Array. Instead the Lattice is accessed in chunks which can fit into memory (the size is determined by the maxPixels
and niceCursorShape
functions). The LatticeIterator::cursor()
function then returns each of these chunks as an Array and the standard Array based functions are used to calculate the mean on each of these chunks. Functions like this one are the recommended way to access Lattices as the LatticeIterator will correctly setup any required caches.
Complex latMean(const Lattice<Complex>& lat) { const uInt cursorSize = lat.advisedMaxPixels(); const IPosition cursorShape = lat.niceCursorShape(cursorSize); const IPosition latticeShape = lat.shape(); Complex currentSum = 0.0f; size_t nPixels = 0; RO_LatticeIterator<Complex> iter(lat, LatticeStepper(latticeShape, cursorShape)); for (iter.reset(); !iter.atEnd(); iter++){ currentSum += sum(iter.cursor()); nPixels += iter.cursor().nelements(); } return currentSum/nPixels; }
Sometimes it will be neccesary to access slices of a Lattice in a nearly random way. Often this can be done using the subSection commands in the LatticeStepper class. But it is also possible to use the getSlice and putSlice functions. The following example does a two-dimensional Real to Complex Fourier transform. This example is restricted to four-dimensional Arrays (unlike the previous example) and does not set up any caches (caching is currently only used with PagedArrays). So only use getSlice and putSlice when things cannot be done using LatticeIterators.
void FFT2DReal2Complex(Lattice<Complex>& result, const Lattice<Float>& input){ AlwaysAssert(input.ndim() == 4, AipsError); const IPosition shape = input.shape(); const uInt nx = shape(0); AlwaysAssert (nx > 1, AipsError); const uInt ny = shape(1); AlwaysAssert (ny > 1, AipsError); const uInt npol = shape(2); const uInt nchan = shape(3); const IPosition resultShape = result.shape(); AlwaysAssert(resultShape.nelements() == 4, AipsError); AlwaysAssert(resultShape(3) == nchan, AipsError); AlwaysAssert(resultShape(2) == npol, AipsError); AlwaysAssert(resultShape(1) == ny, AipsError); AlwaysAssert(resultShape(0) == nx/2 + 1, AipsError); const IPosition inputSliceShape(4,nx,ny,1,1); const IPosition resultSliceShape(4,nx/2+1,ny,1,1); COWPtr<Array<Float> > inputArrPtr(new Array<Float>(inputSliceShape.nonDegenerate())); Array<Complex> resultArray(resultSliceShape.nonDegenerate()); FFTServer<Float, Complex> FFT2D(inputSliceShape.nonDegenerate()); IPosition start(4,0); Bool isARef; for (uInt c = 0; c < nchan; c++){ for (uInt p = 0; p < npol; p++){ isARef = input.getSlice(inputArrPtr, Slicer(start,inputSliceShape), True); FFT2D.fft(resultArray, *inputArrPtr); result.putSlice(resultArray, start); start(2) += 1; } start(2) = 0; start(3) += 1; } }
Occasionally you may want to access a few elements of a Lattice without all the difficulty involved in setting up Iterators or calling getSlice and putSlice. This is demonstrated in the example below and uses the parenthesis operator, along with the LatticeValueRef companion class. Using these functions to access many elements of a Lattice is not recommended as this is the slowest access method.
In this example an ideal point spread function will be inserted into an empty Lattice. As with the previous examples all the action occurs inside a function because Lattice is an interface (abstract) class.
void makePsf(Lattice<Float>& psf) { const IPosition centrePos = psf.shape()/2; psf.set(0.0f); // this sets all the elements to zero // As it uses a LatticeIterator it is efficient psf(centrePos) = 1; // This sets just the centre element to one AlwaysAssert(near(psf(centrePos), 1.0f, 1E-6), AipsError); AlwaysAssert(near(psf(centrePos*0), 0.0f, 1E-6), AipsError); }
Creating an abstract base class which provides a common interface between memory and disk based arrays has a number of advantages.
Definition at line 216 of file MaskedLattice.h.
casa::MaskedLattice< T >::MaskedLattice | ( | ) | [inline] |
Default constructor.
Definition at line 225 of file MaskedLattice.h.
casa::MaskedLattice< T >::MaskedLattice | ( | const MaskedLattice< T > & | ) |
Copy constructor.
virtual casa::MaskedLattice< T >::~MaskedLattice | ( | ) | [virtual] |
a virtual destructor is needed so that it will use the actual destructor in the derived class
virtual Lattice<T>* casa::MaskedLattice< T >::clone | ( | ) | const [virtual] |
Make a copy of the derived object (reference semantics).
Implements casa::Lattice< T >.
virtual MaskedLattice<T>* casa::MaskedLattice< T >::cloneML | ( | ) | const [pure virtual] |
Make a copy of the object (reference semantics).
Implemented in casa::LatticeConcat< T >, casa::LatticeConcat< Float >, casa::LatticeExpr< T >, casa::LatticeExpr< Bool >, casa::ImageInterface< T >, casa::SubLattice< T >, casa::ImageInterface< Float >, casa::ImageInterface< Double >, casa::ImageInterface< float >, casa::ImageInterface< DComplex >, casa::ImageInterface< Bool >, casa::ImageInterface< Complex >, casa::SubLattice< Float >, casa::CurvedLattice2D< T >, casa::ExtendLattice< T >, and casa::RebinLattice< T >.
virtual Bool casa::MaskedLattice< T >::doGetMaskSlice | ( | Array< Bool > & | buffer, |
const Slicer & | section | ||
) | [virtual] |
The function (in the derived classes) doing the actual work.
These functions are public, so they can be used internally in the various Lattice classes.
However, doGetMaskSlice does not call Slicer::inferShapeFromSource to fill in possible unspecified section values. Therefore one should normally use one of the getMask(Slice) functions. doGetMaskSlice should be used with care and only when performance is an issue.
The default implementation gets the mask from the region and fills the buffer with True values if there is no region.
Reimplemented in casa::SubLattice< T >, casa::SubLattice< Float >, casa::LatticeConcat< T >, casa::LatticeConcat< Float >, casa::ImageConcat< T >, casa::SubImage< T >, casa::SubImage< Float >, casa::LatticeExpr< T >, casa::LatticeExpr< Bool >, casa::CurvedImage2D< T >, casa::ExtendLattice< T >, casa::TempImage< T >, casa::CurvedLattice2D< T >, casa::TempImage< Float >, casa::TempImage< Complex >, casa::MIRIADImage, casa::RebinLattice< T >, casa::FITSImage, casa::FITSQualityImage, casa::RebinImage< T >, casa::ExtendImage< T >, casa::ImageExpr< T >, and casa::ImageExpr< Bool >.
Bool casa::MaskedLattice< T >::getMask | ( | COWPtr< Array< Bool > > & | buffer, |
Bool | removeDegenerateAxes = False |
||
) | const |
Get the mask or a slice from the mask.
This is the mask formed by combination of the possible pixelmask of the lattice and the possible mask of the region taken from the lattice. If there is no mask, it still works fine. In that case it sizes the buffer correctly and sets it to True.
Bool casa::MaskedLattice< T >::getMask | ( | Array< Bool > & | buffer, |
Bool | removeDegenerateAxes = False |
||
) |
Array<Bool> casa::MaskedLattice< T >::getMask | ( | Bool | removeDegenerateAxes = False | ) | const |
Bool casa::MaskedLattice< T >::getMaskSlice | ( | COWPtr< Array< Bool > > & | buffer, |
const Slicer & | section, | ||
Bool | removeDegenerateAxes = False |
||
) | const |
Bool casa::MaskedLattice< T >::getMaskSlice | ( | COWPtr< Array< Bool > > & | buffer, |
const IPosition & | start, | ||
const IPosition & | shape, | ||
Bool | removeDegenerateAxes = False |
||
) | const |
Bool casa::MaskedLattice< T >::getMaskSlice | ( | COWPtr< Array< Bool > > & | buffer, |
const IPosition & | start, | ||
const IPosition & | shape, | ||
const IPosition & | stride, | ||
Bool | removeDegenerateAxes = False |
||
) | const |
Bool casa::MaskedLattice< T >::getMaskSlice | ( | Array< Bool > & | buffer, |
const Slicer & | section, | ||
Bool | removeDegenerateAxes = False |
||
) |
Bool casa::MaskedLattice< T >::getMaskSlice | ( | Array< Bool > & | buffer, |
const IPosition & | start, | ||
const IPosition & | shape, | ||
Bool | removeDegenerateAxes = False |
||
) |
Bool casa::MaskedLattice< T >::getMaskSlice | ( | Array< Bool > & | buffer, |
const IPosition & | start, | ||
const IPosition & | shape, | ||
const IPosition & | stride, | ||
Bool | removeDegenerateAxes = False |
||
) |
Array<Bool> casa::MaskedLattice< T >::getMaskSlice | ( | const Slicer & | section, |
Bool | removeDegenerateAxes = False |
||
) | const |
Array<Bool> casa::MaskedLattice< T >::getMaskSlice | ( | const IPosition & | start, |
const IPosition & | shape, | ||
Bool | removeDegenerateAxes = False |
||
) | const |
Array<Bool> casa::MaskedLattice< T >::getMaskSlice | ( | const IPosition & | start, |
const IPosition & | shape, | ||
const IPosition & | stride, | ||
Bool | removeDegenerateAxes = False |
||
) | const |
virtual const LatticeRegion* casa::MaskedLattice< T >::getRegionPtr | ( | ) | const [protected, pure virtual] |
Get a pointer to the region used.
It can return 0 meaning that the MaskedLattice is the full lattice.
Implemented in casa::TempImage< T >, casa::TempImage< Float >, casa::TempImage< Complex >, casa::SubLattice< T >, casa::SubLattice< Float >, casa::PagedImage< T >, casa::PagedImage< Float >, casa::PagedImage< Complex >, casa::ImageConcat< T >, casa::LatticeConcat< T >, casa::LatticeConcat< Float >, casa::MIRIADImage, casa::SubImage< T >, casa::SubImage< Float >, casa::LatticeExpr< T >, casa::LatticeExpr< Bool >, casa::FITSImage, casa::HDF5Image< T >, casa::CurvedImage2D< T >, casa::ExtendLattice< T >, casa::CurvedLattice2D< T >, casa::FITSQualityImage, casa::RebinLattice< T >, casa::ImageExpr< T >, casa::ImageExpr< Bool >, casa::RebinImage< T >, and casa::ExtendImage< T >.
virtual Bool casa::MaskedLattice< T >::hasPixelMask | ( | ) | const [virtual] |
Does the lattice have a pixelmask? The default implementation returns False.
Reimplemented in casa::SubLattice< T >, casa::SubLattice< Float >, casa::PagedImage< T >, casa::LatticeConcat< T >, casa::PagedImage< Float >, casa::PagedImage< Complex >, casa::LatticeConcat< Float >, casa::ImageConcat< T >, casa::HDF5Image< T >, casa::TempImage< T >, casa::TempImage< Float >, casa::TempImage< Complex >, casa::MIRIADImage, casa::CurvedImage2D< T >, casa::FITSImage, casa::ExtendLattice< T >, casa::SubImage< T >, casa::SubImage< Float >, casa::FITSQualityImage, casa::RebinImage< T >, and casa::ExtendImage< T >.
virtual Bool casa::MaskedLattice< T >::isMasked | ( | ) | const [virtual] |
Has the object really a mask? The default implementation returns True if the MaskedLattice has a region with a mask.
Reimplemented in casa::LatticeConcat< T >, casa::LatticeConcat< Float >, casa::ImageConcat< T >, casa::TempImage< T >, casa::TempImage< Float >, casa::TempImage< Complex >, casa::LatticeExpr< T >, casa::LatticeExpr< Bool >, casa::SubLattice< T >, casa::SubLattice< Float >, casa::MIRIADImage, casa::CurvedImage2D< T >, casa::FITSImage, casa::SubImage< T >, casa::SubImage< Float >, casa::ImageExpr< T >, casa::ImageExpr< Bool >, casa::FITSQualityImage, casa::CurvedLattice2D< T >, casa::ExtendLattice< T >, casa::RebinImage< T >, casa::ExtendImage< T >, and casa::RebinLattice< T >.
Referenced by casa::ImagePolarimetry::isMasked().
MaskedLattice<T>& casa::MaskedLattice< T >::operator= | ( | const MaskedLattice< T > & | ) | [protected] |
Assignment can only be used by derived classes.
virtual const Lattice<Bool>& casa::MaskedLattice< T >::pixelMask | ( | ) | const [virtual] |
Get access to the pixelmask.
An exception is thrown if the lattice does not have a pixelmask.
Reimplemented in casa::SubLattice< T >, casa::SubLattice< Float >, casa::PagedImage< T >, casa::LatticeConcat< T >, casa::PagedImage< Float >, casa::PagedImage< Complex >, casa::LatticeConcat< Float >, casa::ImageConcat< T >, casa::HDF5Image< T >, casa::TempImage< T >, casa::TempImage< Float >, casa::TempImage< Complex >, casa::MIRIADImage, casa::CurvedImage2D< T >, casa::FITSImage, casa::ExtendLattice< T >, casa::SubImage< T >, casa::SubImage< Float >, casa::FITSQualityImage, casa::RebinImage< T >, and casa::ExtendImage< T >.
virtual Lattice<Bool>& casa::MaskedLattice< T >::pixelMask | ( | ) | [virtual] |
Reimplemented in casa::SubLattice< T >, casa::SubLattice< Float >, casa::PagedImage< T >, casa::LatticeConcat< T >, casa::PagedImage< Float >, casa::PagedImage< Complex >, casa::LatticeConcat< Float >, casa::ImageConcat< T >, casa::HDF5Image< T >, casa::TempImage< T >, casa::TempImage< Float >, casa::TempImage< Complex >, casa::MIRIADImage, casa::CurvedImage2D< T >, casa::FITSImage, casa::ExtendLattice< T >, casa::SubImage< T >, casa::SubImage< Float >, casa::FITSQualityImage, casa::RebinImage< T >, and casa::ExtendImage< T >.
const LatticeRegion& casa::MaskedLattice< T >::region | ( | ) | const |
Get the region used.
This is in principle the region pointed to by getRegionPtr
. However, if that pointer is 0, it returns a LatticeRegion for the full image.
LatticeRegion* casa::MaskedLattice< T >::itsDefRegPtr [mutable, private] |
Definition at line 320 of file MaskedLattice.h.