#include <itkParametricImageSource.h>
Base class for all parametric image sources.
This abstract class specifies an interface than enables parameters to be set through a vector of values using the SetParameters() method. This interface makes it easier to include parameterized image sources within ITK's optimization/registration framework.
Concrete subclasses must implement the methods SetParameters(), GetParameters() and GetNumberOfParameters().
Definition at line 45 of file itkParametricImageSource.h.
Static Public Attributes | |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
![]() | |
static constexpr unsigned int | NDimensions = TOutputImage::ImageDimension |
![]() | |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Additional Inherited Members | |
![]() | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool val) |
![]() | |
static void | BreakOnError () |
static Pointer | New () |
![]() | |
static const ImageRegionSplitterBase * | GetGlobalDefaultSplitter () |
static ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION | ThreaderCallback (void *arg) |
![]() | |
template<typename TSourceObject> | |
static void | MakeRequiredOutputs (TSourceObject &sourceObject, const DataObjectPointerArraySizeType numberOfRequiredOutputs) |
static constexpr float | progressFixedToFloat (uint32_t fixed) |
static uint32_t | progressFloatToFixed (float f) |
![]() | |
bool | m_DynamicMultiThreading { true } |
![]() | |
TimeStamp | m_OutputInformationMTime {} |
bool | m_Updating {} |
![]() | |
std::atomic< int > | m_ReferenceCount {} |
using itk::ParametricImageSource< TOutputImage >::ConstPointer = SmartPointer<const Self> |
Definition at line 54 of file itkParametricImageSource.h.
using itk::ParametricImageSource< TOutputImage >::DataObjectPointer = DataObject::Pointer |
Smart Pointer type to a DataObject.
Definition at line 57 of file itkParametricImageSource.h.
using itk::ParametricImageSource< TOutputImage >::OutputImagePixelType = typename OutputImageType::PixelType |
Definition at line 62 of file itkParametricImageSource.h.
using itk::ParametricImageSource< TOutputImage >::OutputImagePointer = typename OutputImageType::Pointer |
Definition at line 61 of file itkParametricImageSource.h.
using itk::ParametricImageSource< TOutputImage >::OutputImageType = TOutputImage |
Some convenient type alias.
Definition at line 60 of file itkParametricImageSource.h.
using itk::ParametricImageSource< TOutputImage >::ParametersType = Array<ParametersValueType> |
Definition at line 65 of file itkParametricImageSource.h.
using itk::ParametricImageSource< TOutputImage >::ParametersValueType = double |
Definition at line 64 of file itkParametricImageSource.h.
using itk::ParametricImageSource< TOutputImage >::Pointer = SmartPointer<Self> |
Definition at line 53 of file itkParametricImageSource.h.
using itk::ParametricImageSource< TOutputImage >::Self = ParametricImageSource |
Standard class type aliases.
Definition at line 51 of file itkParametricImageSource.h.
using itk::ParametricImageSource< TOutputImage >::Superclass = GenerateImageSource<TOutputImage> |
Definition at line 52 of file itkParametricImageSource.h.
|
protecteddefault |
Referenced by GetNameOfClass().
|
overrideprotecteddefault |
|
overridevirtual |
Reimplemented from itk::GenerateImageSource< TOutputImage >.
References ParametricImageSource().
|
pure virtual |
Get the number of parameters.
Implemented in itk::GaussianImageSource< TOutputImage >.
|
pure virtual |
Get the parameters for this source.
Implemented in itk::GaussianImageSource< TOutputImage >.
|
overrideprotectedvirtual |
Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from itk::GenerateImageSource< TOutputImage >.
|
pure virtual |
Set the parameters for this source. Setting the parameters does not mark the image source as modified; subclasses should override this method to forward parameters through setters that call Modified().
Implemented in itk::GaussianImageSource< TOutputImage >.
|
staticconstexpr |
ImageDimension constant
Definition at line 68 of file itkParametricImageSource.h.