![]() |
aimsalgo
5.0.5
Neuroimaging image processing
|
#include <aims/resampling/resamplerfactory.h>
Public Types | |
| enum | ResamplerType { NearestNeighbor = 0, Linear = 1, Quadratic = 2, Cubic = 3, Quartic = 4, Quintic = 5, SixthOrder = 6, SeventhOrder = 7, MajorityLabel = 101, Median = 201 } |
Static Public Member Functions | |
| static std::unique_ptr< Resampler< T > > | getResampler (int order) |
| Instantiate a Resampler of the given order. More... | |
Definition at line 46 of file resamplerfactory.h.
| enum aims::ResamplerFactory::ResamplerType |
| Enumerator | |
|---|---|
| NearestNeighbor | |
| Linear | |
| Quadratic | |
| Cubic | |
| Quartic | |
| Quintic | |
| SixthOrder | |
| SeventhOrder | |
| MajorityLabel | |
| Median | |
Definition at line 49 of file resamplerfactory.h.
|
static |
Instantiate a Resampler of the given order.
| order | order of interpolation: 0 is nearest neighbour (no interpolation), 1 is linear, 3 is cubic, etc. up to 7th order. |
Definition at line 65 of file resamplerfactory_d.h.