#include <aims/resampling/linearInterpolator.h>
|
| virtual | ~Interpolator () |
| |
| virtual bool | isValid (Coordinate_t x, Coordinate_t y, Coordinate_t z) const =0 |
| | Return true if point ( x, y, z ) can be used for interpolation.
|
| |
| bool | isValid (const Interpolator::Point_t &point) const |
| | Return true if point can be used for interpolation.
|
| |
| Scalar_t | operator() (Coordinate_t x, Coordinate_t y, Coordinate_t z) const __attribute__((__deprecated__("use value() method instead"))) |
| |
| Scalar_t | operator() (const Interpolator::Point_t &point) const __attribute__((__deprecated__("use value() method instead"))) |
| |
| void | operator() (Coordinate_t x, Coordinate_t y, Coordinate_t z, std::vector< Scalar_t > &v) const __attribute__((__deprecated__("use values() method instead"))) |
| |
| void | operator() (const Interpolator::Point_t &point, std::vector< Scalar_t > &v) const __attribute__((__deprecated__("use values() method instead"))) |
| |
| Scalar_t | value (Coordinate_t x, Coordinate_t y, Coordinate_t z) const |
| | Interpolate to get a value from point ( x, y ,z ).
|
| |
| Scalar_t | value (const Interpolator::Point_t &point) const |
| | Interpolate to get a value from point.
|
| |
| void | values (Coordinate_t x, Coordinate_t y, Coordinate_t z, std::vector< Scalar_t > &v) const |
| | Interpolate to get a series of values from point ( x, y ,z )
|
| |
| void | values (const Interpolator::Point_t &point, std::vector< Scalar_t > &v) const |
| | Interpolate to get a series of values from point ( x, y ,z )
|
| |
| virtual const carto::PropertySet & | header () const =0 |
| | Return the header of the image.
|
| |
| | RCObject () |
| |
| | RCObject (const RCObject &) |
| |
| RCObject & | operator= (const RCObject &) |
| |
| virtual | ~RCObject () |
| |
Definition at line 55 of file linearInterpolator.h.
◆ Coordinate_t
◆ Point_t
◆ Scalar_t
◆ ~Interpolator()
| virtual aims::Interpolator::~Interpolator |
( |
| ) |
|
|
virtual |
◆ header()
◆ isValid() [1/2]
Return true if point can be used for interpolation.
If interpolation is tried on an invalid point, it may crash the program.
Definition at line 73 of file linearInterpolator.h.
References isValid().
◆ isValid() [2/2]
Return true if point ( x, y, z ) can be used for interpolation.
If interpolation is tried on an invalid point, it may crash the program.
Implemented in aims::LinearInterpolator< T >.
Referenced by isValid().
◆ operator()() [1/4]
◆ operator()() [2/4]
◆ operator()() [3/4]
◆ operator()() [4/4]
◆ value() [1/2]
◆ value() [2/2]
◆ values() [1/2]
◆ values() [2/2]
The documentation for this class was generated from the following file: