casacore
|
#include <CLIPNearest2D.h>
Public Member Functions | |
CLIPNearest2D () | |
Only default constructor is needed. More... | |
virtual CLIPNearest2D< T > * | clone () const |
Make a copy of the object. More... | |
virtual void | getData (Array< T > &buffer, const Vector< Float > &x, const Vector< Float > &y, const Slicer §ion) |
Get the data for the given pixel points (on axis1 and axis2) and the chunk in the other axes as given by the section. More... | |
virtual void | getMask (Array< Bool > &buffer, const Vector< Float > &x, const Vector< Float > &y, const Slicer §ion) |
Get the mask for the given pixel points (on axis1 and axis2) and the chunk in the other axes as given by the section. More... | |
Public Member Functions inherited from casacore::CLInterpolator2D< T > | |
CLInterpolator2D () | |
virtual | ~CLInterpolator2D () |
void | set (MaskedLattice< T > *lattice, const AxesMapping &axesMap, uInt axis1, uInt axis2, uInt curveAxis) |
Set the internals to the values of the CurvedLattice using it. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from casacore::CLInterpolator2D< T > | |
CLInterpolator2D (const CLInterpolator2D< T > &) | |
Copy constructor can only be used by derived classes. More... | |
CLInterpolator2D & | operator= (const CLInterpolator2D< T > &) |
Assignment can only be used by derived classes. More... | |
virtual void | preset () |
Let a derived class do some initial work after set is called. More... | |
Protected Attributes inherited from casacore::CLInterpolator2D< T > | |
MaskedLattice< T > * | itsLatticePtr |
AxesMapping | itsAxesMap |
uInt | itsAxis1 |
uInt | itsAxis2 |
uInt | itsCurveAxis |
Bool | itsIsRef |
Arbitrarily shaped 1-dim lattice crosscut
Public interface
CLIP means CLInterpolator (its base class). The 2D means that interpolation in 2 dimensions needs to be done.
CLIPNearest2D is a realisation of the abstract base class CLInterpolator2D. This class interpolates in a very simple way by taking the nearest neighbour.
Note that the base class contains the lattice to be interpolated and the axis to be used in the interpolation.
Definition at line 73 of file CLIPNearest2D.h.
casacore::CLIPNearest2D< T >::CLIPNearest2D | ( | ) |
Only default constructor is needed.
The set function in the base class defines the lattice and axes.
|
virtual |
Make a copy of the object.
Implements casacore::CLInterpolator2D< T >.
|
virtual |
Get the data for the given pixel points (on axis1 and axis2) and the chunk in the other axes as given by the section.
Implements casacore::CLInterpolator2D< T >.
|
virtual |
Get the mask for the given pixel points (on axis1 and axis2) and the chunk in the other axes as given by the section.
Implements casacore::CLInterpolator2D< T >.