Orfeo Toolbox  3.16
Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Types | Protected Member Functions | Protected Attributes | Private Member Functions | List of all members
itk::Transform< TScalarType, NInputDimensions, NOutputDimensions > Class Template Referenceabstract

Transform points and vector from an input space to an output space. More...

#include <itkTransform.h>

+ Inheritance diagram for itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >:
+ Collaboration diagram for itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >:

Public Types

typedef SmartPointer< const SelfConstPointer
 
typedef double CoordRepType
 
typedef CovariantVector
< TScalarType,
NInputDimensions > 
InputCovariantVectorType
 
typedef Point< CoordRepType,
NInputDimensions > 
InputPointType
 
typedef Vector< TScalarType,
NInputDimensions > 
InputVectorType
 
typedef vnl_vector_fixed
< TScalarType,
NInputDimensions > 
InputVnlVectorType
 
typedef
InverseTransformBaseType::Pointer 
InverseTransformBasePointer
 
typedef TransformBase InverseTransformBaseType
 
typedef Array2D< double > JacobianType
 
typedef CovariantVector
< TScalarType,
NOutputDimensions > 
OutputCovariantVectorType
 
typedef Point< CoordRepType,
NOutputDimensions > 
OutputPointType
 
typedef Vector< TScalarType,
NOutputDimensions > 
OutputVectorType
 
typedef vnl_vector_fixed
< TScalarType,
NOutputDimensions > 
OutputVnlVectorType
 
typedef Superclass::ParametersType ParametersType
 
typedef
Superclass::ParametersValueType 
ParametersValueType
 
typedef SmartPointer< SelfPointer
 
typedef TScalarType ScalarType
 
typedef Transform Self
 
typedef TransformBase Superclass
 

Public Member Functions

unsigned long AddObserver (const EventObject &event, Command *)
 
unsigned long AddObserver (const EventObject &event, Command *) const
 
virtual ::itk::LightObject::Pointer CreateAnother (void) const
 
virtual void DebugOff () const
 
virtual void DebugOn () const
 
virtual void Delete ()
 
CommandGetCommand (unsigned long tag)
 
bool GetDebug () const
 
virtual const ParametersTypeGetFixedParameters (void) const
 
unsigned int GetInputSpaceDimension (void) const
 
bool GetInverse (Self *) const
 
virtual InverseTransformBasePointer GetInverseTransform () const
 
virtual const JacobianTypeGetJacobian (const InputPointType &) const
 
MetaDataDictionaryGetMetaDataDictionary (void)
 
const MetaDataDictionaryGetMetaDataDictionary (void) const
 
virtual unsigned long GetMTime () const
 
virtual const char * GetNameOfClass () const
 
virtual unsigned int GetNumberOfParameters (void) const
 
unsigned int GetOutputSpaceDimension (void) const
 
virtual const ParametersTypeGetParameters (void) const
 
virtual int GetReferenceCount () const
 
virtual std::string GetTransformTypeAsString () const
 
bool HasObserver (const EventObject &event) const
 
void InvokeEvent (const EventObject &)
 
void InvokeEvent (const EventObject &) const
 
virtual bool IsLinear () const
 
virtual void Modified () const
 
void Print (std::ostream &os, Indent indent=0) const
 
virtual void Register () const
 
void RemoveAllObservers ()
 
void RemoveObserver (unsigned long tag)
 
void SetDebug (bool debugFlag) const
 
virtual void SetFixedParameters (const ParametersType &)=0
 
virtual void SetFixedParameters (const ParametersType &)
 
void SetMetaDataDictionary (const MetaDataDictionary &rhs)
 
virtual void SetParameters (const ParametersType &)=0
 
virtual void SetParameters (const ParametersType &)
 
virtual void SetParametersByValue (const ParametersType &p)=0
 
virtual void SetParametersByValue (const ParametersType &p)
 
virtual void SetReferenceCount (int)
 
virtual OutputCovariantVectorType TransformCovariantVector (const InputCovariantVectorType &) const
 
virtual OutputPointType TransformPoint (const InputPointType &) const
 
virtual OutputVectorType TransformVector (const InputVectorType &) const
 
virtual OutputVnlVectorType TransformVector (const InputVnlVectorType &) const
 
virtual void UnRegister () const
 

Static Public Member Functions

static void BreakOnError ()
 
static bool GetGlobalWarningDisplay ()
 
static void GlobalWarningDisplayOff ()
 
static void GlobalWarningDisplayOn ()
 
static Pointer New ()
 
static void SetGlobalWarningDisplay (bool flag)
 

Static Public Attributes

static const unsigned int InputSpaceDimension = NInputDimensions
 
static const unsigned int OutputSpaceDimension = NOutputDimensions
 

Protected Types

typedef int InternalReferenceCountType
 

Protected Member Functions

 Transform ()
 
 Transform (unsigned int Dimension, unsigned int NumberOfParameters)
 
virtual ~Transform ()
 
virtual void PrintHeader (std::ostream &os, Indent indent) const
 
bool PrintObservers (std::ostream &os, Indent indent) const
 
virtual void PrintSelf (std::ostream &os, Indent indent) const
 
virtual void PrintTrailer (std::ostream &os, Indent indent) const
 

Protected Attributes

ParametersType m_FixedParameters
 
JacobianType m_Jacobian
 
ParametersType m_Parameters
 
InternalReferenceCountType m_ReferenceCount
 
SimpleFastMutexLock m_ReferenceCountLock
 

Private Member Functions

 Transform (const Self &)
 
void operator= (const Self &)
 

Detailed Description

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
class itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >

Transform points and vector from an input space to an output space.

This abstract class define the generic interface for a geometrical transformation from one space to another. The class provides methods for mapping points, vectors and covariant vectors from the input space to the output space.

Given that transformation are not necesarily invertible, this basic class does not provide the methods for back transfromation. Back transform methods are implemented in derived classes where appropriate.

Registration Framework Support
Typically a Transform class has several methods for setting its parameters. For use in the registration framework, the parameters must also be represented by an array of doubles to allow communication with generic optimizers. The Array of transformation parameters is set using the SetParameters() method.

Another requirement of the registration framework is the computation of the transform Jacobian. In general, a ImageToImageMetric requires the knowledge of the Jacobian in order to compute the metric derivatives. The Jacobian is a matrix whose element are the partial derivatives of the output point with respect to the array of parameters that defines the transform.

Definition at line 66 of file itkTransform.h.

Member Typedef Documentation

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef SmartPointer< const Self > itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::ConstPointer

Definition at line 73 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef double itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::CoordRepType

Definition at line 94 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef CovariantVector<TScalarType, NInputDimensions> itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::InputCovariantVectorType

Standard covariant vector type for this class

Definition at line 108 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef Point<CoordRepType, NInputDimensions> itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::InputPointType

Standard coordinate point type for this class

Definition at line 116 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef Vector<TScalarType, NInputDimensions> itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::InputVectorType

Standard vector type for this class.

Definition at line 104 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef vnl_vector_fixed<TScalarType, NInputDimensions> itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::InputVnlVectorType

Standard vnl_vector type for this class.

Definition at line 112 of file itkTransform.h.

typedef int itk::LightObject::InternalReferenceCountType
protectedinherited

Define the type of the reference count according to the target. This allows the use of atomic operations

Definition at line 137 of file itkLightObject.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef InverseTransformBaseType::Pointer itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::InverseTransformBasePointer

Definition at line 129 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef TransformBase itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::InverseTransformBaseType

Base inverse transform type. This type should not be changed to the concrete inverse transform type or inheritance would be lost.

Definition at line 124 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef Array2D< double > itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::JacobianType

Type of the Jacobian matrix.

Definition at line 101 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef CovariantVector<TScalarType, NOutputDimensions> itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::OutputCovariantVectorType

Definition at line 109 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef Point<CoordRepType, NOutputDimensions> itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::OutputPointType

Definition at line 117 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef Vector<TScalarType, NOutputDimensions> itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::OutputVectorType

Definition at line 105 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef vnl_vector_fixed<TScalarType, NOutputDimensions> itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::OutputVnlVectorType

Definition at line 113 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef Superclass::ParametersType itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::ParametersType

Type of the input parameters.

Definition at line 97 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef Superclass::ParametersValueType itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::ParametersValueType

Definition at line 98 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef SmartPointer< Self > itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::Pointer

Definition at line 72 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef TScalarType itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::ScalarType

Type of the scalar representing coordinate and vector elements.

Definition at line 92 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef Transform itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::Self

Standard class typedefs.

Definition at line 70 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
typedef TransformBase itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::Superclass

Definition at line 71 of file itkTransform.h.

Constructor & Destructor Documentation

template<class TScalarType , unsigned int NInputDimensions, unsigned int NOutputDimensions>
itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::Transform ( )
protected

Constructor

Definition at line 33 of file itkTransform.txx.

template<class TScalarType , unsigned int NInputDimensions, unsigned int NOutputDimensions>
itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::Transform ( unsigned int  dimension,
unsigned int  numberOfParameters 
)
protected

Constructor

Definition at line 48 of file itkTransform.txx.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
virtual itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::~Transform ( )
inlineprotectedvirtual
template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::Transform ( const Self )
private

Member Function Documentation

unsigned long itk::Object::AddObserver ( const EventObject event,
Command cmd 
)
inherited

Allow people to add/remove/invoke observers (callbacks) to any ITK object. This is an implementation of the subject/observer design pattern. An observer is added by specifying an event to respond to and an itk::Command to execute. It returns an unsigned long tag which can be used later to remove the event or retrieve the command. The memory for the Command becomes the responsibility of this object, so don't pass the same instance of a command to two different objects

Definition at line 389 of file itkObject.cxx.

References itk::SubjectImplementation::AddObserver().

Referenced by otb::StreamingImageVirtualWriter< TInputImage >::GenerateData(), itk::ProgressAccumulator::RegisterInternalFilter(), otb::ImageFileWriter< TInputImage >::Update(), and otb::WriterWatcherBase::WriterWatcherBase().

unsigned long itk::Object::AddObserver ( const EventObject event,
Command cmd 
) const
inherited

Definition at line 401 of file itkObject.cxx.

References itk::SubjectImplementation::AddObserver().

void itk::LightObject::BreakOnError ( )
staticinherited

This method is called when itkExceptionMacro executes. It allows the debugger to break on error.

Definition at line 149 of file itkLightObject.cxx.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
virtual::itk::LightObject::Pointer itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::CreateAnother ( void  ) const
virtual

Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.

Reimplemented from itk::Object.

Reimplemented in otb::GenericMapProjection< TTransform >.

void itk::Object::DebugOff ( ) const
virtualinherited

Turn debugging output off.

Definition at line 253 of file itkObject.cxx.

void itk::Object::DebugOn ( ) const
virtualinherited

Turn debugging output on.

Definition at line 242 of file itkObject.cxx.

void itk::LightObject::Delete ( )
virtualinherited

Delete an itk object. This method should always be used to delete an object when the new operator was used to create it. Using the C delete method will not work with reference counting.

Delete a itk object. This method should always be used to delete an object when the new operator was used to create it. Using the C++ delete method will not work with reference counting.

Definition at line 88 of file itkLightObject.cxx.

Command * itk::Object::GetCommand ( unsigned long  tag)
inherited

Get the command associated with the given tag. NOTE: This returns a pointer to a Command, but it is safe to asign this to a Command::Pointer. Since Command inherits from LightObject, at this point in the code, only a pointer or a reference to the Command can be used.

Definition at line 414 of file itkObject.cxx.

References itk::Object::GetCommand(), and NULL.

Referenced by itk::Object::GetCommand().

bool itk::Object::GetDebug ( ) const
inherited

Get the value of the debug flag.

Definition at line 264 of file itkObject.cxx.

Referenced by otb::ogr::ImageReference< double >::GetDebug().

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
virtual const ParametersType& itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::GetFixedParameters ( void  ) const
inlinevirtual
bool itk::Object::GetGlobalWarningDisplay ( )
staticinherited

Get the value of the global debug output control flag.

Definition at line 381 of file itkObject.cxx.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
unsigned int itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::GetInputSpaceDimension ( void  ) const
inlinevirtual
template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
bool itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::GetInverse ( Self ) const
inline

Returns a boolean indicating whether it is possible or not to compute the inverse of this current Transform. If it is possible, then the inverse of the transform is returned in the inverseTransform variable passed by the user. The inverse is recomputed if this current transform has been modified. This method is intended to be overriden by derived classes.

Definition at line 237 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
virtual InverseTransformBasePointer itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::GetInverseTransform ( ) const
inlinevirtual
template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
virtual const JacobianType& itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::GetJacobian ( const InputPointType ) const
inlinevirtual

Compute the Jacobian of the transformation

This method computes the Jacobian matrix of the transformation at a given input point. The rank of the Jacobian will also indicate if the transform is invertible at this point.

The Jacobian is be expressed as a matrix of partial derivatives of the output point components with respect to the parameters that defined the transform:

\[ J=\left[ \begin{array}{cccc} \frac{\partial x_{1}}{\partial p_{1}} & \frac{\partial x_{1}}{\partial p_{2}} & \cdots & \frac{\partial x_{1}}{\partial p_{m}}\\ \frac{\partial x_{2}}{\partial p_{1}} & \frac{\partial x_{2}}{\partial p_{2}} & \cdots & \frac{\partial x_{2}}{\partial p_{m}}\\ \vdots & \vdots & \ddots & \vdots \\ \frac{\partial x_{n}}{\partial p_{1}} & \frac{\partial x_{n}}{\partial p_{2}} & \cdots & \frac{\partial x_{n}}{\partial p_{m}} \end{array}\right] \]

Reimplemented in otb::Transform< double, 2, 2 >, otb::Transform< TScalarType, NInputDimensions, NOutputDimensions >, otb::Transform< TScalarType, Dimension, Dimension >, and itk::KernelTransform< TScalarType, NDimensions >.

Definition at line 217 of file itkTransform.h.

Referenced by itk::MattesMutualInformationImageToImageMetric< TFixedImage, TMovingImage >::ComputePDFDerivatives(), and itk::MeanSquaresImageToImageMetric< TFixedImage, TMovingImage >::GetValueAndDerivativeThreadProcessSample().

MetaDataDictionary & itk::Object::GetMetaDataDictionary ( void  )
inherited
Returns
A reference to this objects MetaDataDictionary.
Warning
This reference may be changed.

Definition at line 532 of file itkObject.cxx.

References NULL.

Referenced by otb::RenderingImageFilter< TInputImage, TOutputImage >::BeforeThreadedGenerateData(), itk::Brains2MaskImageIO::CanReadFile(), otb::DataNode< TPrecision, VDimension, TValuePrecision >::CopyFieldList(), otb::VectorImage< TPixel, VImageDimension >::CopyInformation(), otb::Image< TPixel, VImageDimension >::CopyInformation(), itk::GDCMImageIO::GetBodyPart(), itk::GDCMImageIO::GetInstitution(), itk::GDCMImageIO::GetManufacturer(), itk::GDCMImageIO::GetModality(), itk::GDCMImageIO::GetModel(), itk::GDCMImageIO::GetNumberOfSeriesInStudy(), itk::GDCMImageIO::GetNumberOfStudyRelatedSeries(), itk::GDCMImageIO::GetPatientAge(), itk::GDCMImageIO::GetPatientDOB(), itk::GDCMImageIO::GetPatientID(), itk::GDCMImageIO::GetPatientName(), itk::GDCMImageIO::GetPatientSex(), itk::GDCMImageIO::GetScanOptions(), itk::GDCMImageIO::GetStudyDate(), itk::GDCMImageIO::GetStudyDescription(), itk::GDCMImageIO::GetStudyID(), itk::GDCMImageIO::GetValueFromTag(), otb::GDALImageIO::InternalReadImageInformation(), itk::GDCMImageIO::InternalReadImageInformation(), otb::GDALImageIO::InternalWriteImageInformation(), otb::RAMDrivenAdaptativeStreamingManager< TImage >::PrepareStreaming(), itk::DICOMImageIO2::Read(), itk::DICOMImageIO2::ReadImageInformation(), itk::NrrdImageIO::ReadImageInformation(), otb::JPEG2000ImageIO::ReadImageInformation(), itk::MetaImageIO::ReadImageInformation(), itk::VoxBoCUBImageIO::ReadImageInformation(), itk::MRCImageIO::ReadImageInformation(), itk::IPLCommonImageIO::ReadImageInformation(), itk::PhilipsRECImageIO::ReadImageInformation(), itk::AnalyzeImageIO::ReadImageInformation(), itk::Bruker2DSEQImageIO::ReadImageInformation(), otb::ImageMetadataInterfaceBase::SetImage(), itk::NiftiImageIO::SetImageIOMetadataFromNIfTI(), otb::VectorDataToLabelImageFilter< TVectorData, TOutputImage >::SetOutputParametersFromImage(), itk::NrrdImageIO::Write(), itk::GDCMImageIO::Write(), and itk::PolygonGroupSpatialObjectXMLFileWriter::WriteFile().

const MetaDataDictionary & itk::Object::GetMetaDataDictionary ( void  ) const
inherited
Returns
A constant reference to this objects MetaDataDictionary.

Definition at line 543 of file itkObject.cxx.

References NULL.

unsigned long itk::Object::GetMTime ( void  ) const
virtualinherited

Return this objects modified time.

Return the modification for this object.

Reimplemented in itk::ImageAdaptor< TImage, TAccessor >, itk::ImageAdaptor< TImage, Accessor::AsinPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::SqrtPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, otb::Accessor::VectorImageToASPixelAccessor< TImage::PixelType::ValueType > >, itk::ImageAdaptor< TImage, Accessor::TanPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::CosPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::VectorToRGBPixelAccessor< TImage::PixelType::ValueType > >, itk::ImageAdaptor< TImage, Accessor::RGBToVectorPixelAccessor< TImage::PixelType::ComponentType > >, itk::ImageAdaptor< TImage, Accessor::ComplexToModulusPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::AbsPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ShiftScalePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::SinPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::LogPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ComplexToPhasePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< VectorImage< TPixelType, Dimension >, Accessor::VectorImageToImagePixelAccessor< TPixelType > >, itk::ImageAdaptor< TImage, Accessor::Log10PixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::AtanPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ComplexToRealPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ComplexToImaginaryPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ExpNegativePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ExpPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::AcosPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::RGBToLuminancePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::AddPixelAccessor< TImage::PixelType > >, itk::ResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >, itk::ResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >, itk::SpatialObject< TDimension >, itk::SpatialObject< 3 >, itk::SpatialObject< ::itk::GetMeshDimension< TMesh >::PointDimension >, itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >, itk::ImageRegistrationMethod< TFixedImage, TMovingImage >, itk::VectorResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >, itk::ImageToSpatialObjectRegistrationMethod< TFixedImage, TMovingSpatialObject >, itk::TransformToDeformationFieldSource< TOutputImage, TTransformPrecisionType >, otb::InverseDeformationFieldImageFilter< TInputImage, TOutputImage >, itk::InverseDeformationFieldImageFilter< TInputImage, TOutputImage >, itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >, itk::BoundingBox< TPointIdentifier, VPointDimension, TCoordRep, TPointsContainer >, itk::PointSetToPointSetRegistrationMethod< TFixedPointSet, TMovingPointSet >, itk::DeformationFieldSource< TOutputImage >, itk::ImageSpatialObject< TDimension, TPixelType >, itk::ImageSpatialObject< TDimension, unsigned char >, itk::MeshSpatialObject< TMesh >, and itk::SceneSpatialObject< TSpaceDimension >.

Definition at line 286 of file itkObject.cxx.

Referenced by itk::DeformationFieldSource< TOutputImage >::GetMTime(), itk::BoundingBox< TPointIdentifier, VPointDimension, TCoordRep, TPointsContainer >::GetMTime(), otb::InverseDeformationFieldImageFilter< TInputImage, TOutputImage >::GetMTime(), itk::InverseDeformationFieldImageFilter< TInputImage, TOutputImage >::GetMTime(), itk::TransformToDeformationFieldSource< TOutputImage, TTransformPrecisionType >::GetMTime(), itk::VectorResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::GetMTime(), itk::SpatialObject< TDimension >::GetMTime(), itk::ResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::GetMTime(), itk::SpatialObject< ::itk::GetMeshDimension< TMesh >::PointDimension >::GetObjectMTime(), otb::Function::NoStretchRenderingFunction< TPixel, TRGBPixel, TPixelRepresentationFunction, TTransferFunction >::Initialize(), otb::Function::StandardRenderingFunction< TPixel, TRGBPixel, TPixelRepresentationFunction, TTransferFunction >::Initialize(), itk::VTKImageExportBase::PipelineModifiedCallback(), and itk::ProcessObject::UpdateOutputInformation().

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
virtual const char* itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::GetNameOfClass ( ) const
virtual

Run-time type information (and related methods).

Reimplemented from itk::TransformBase.

Reimplemented in itk::BSplineDeformableTransform< TScalarType, NDimensions, VSplineOrder >, itk::AffineTransform< TScalarType, NDimensions >, otb::CompositeTransform< TFirstTransform, TSecondTransform, TScalarType, NInputDimensions, NOutputDimensions >, itk::AzimuthElevationToCartesianTransform< TScalarType, NDimensions >, itk::MatrixOffsetTransformBase< TScalarType, NInputDimensions, NOutputDimensions >, itk::MatrixOffsetTransformBase< TScalarType, NDimensions, NDimensions >, itk::MatrixOffsetTransformBase< TScalarType, 2, 2 >, itk::MatrixOffsetTransformBase< TScalarType, 3, 3 >, otb::MapProjectionDeprecated< TMapProj, TTransform >, otb::GenericRSTransform< TScalarType, NInputDimensions, NOutputDimensions >, otb::GenericMapProjection< TDirectionOfMapping, TScalarType, NInputDimensions, NOutputDimensions >, otb::GenericMapProjection< TTransform >, itk::Similarity2DTransform< TScalarType >, itk::KernelTransform< TScalarType, NDimensions >, otb::RationalTransform< TScalarType, Dimension >, itk::CenteredSimilarity2DTransform< TScalarType >, otb::SensorModelBase< TScalarType, NInputDimensions, NOutputDimensions >, itk::IdentityTransform< TScalarType, NDimensions >, itk::Rigid2DTransform< TScalarType >, otb::ForwardSensorModel< TScalarType, NInputDimensions, NOutputDimensions >, otb::InverseSensorModel< TScalarType, NInputDimensions, NOutputDimensions >, itk::CenteredRigid2DTransform< TScalarType >, itk::ScaleSkewVersor3DTransform< TScalarType >, itk::QuaternionRigidTransform< TScalarType >, itk::Rigid3DPerspectiveTransform< TScalarType >, itk::Similarity3DTransform< TScalarType >, itk::Euler3DTransform< TScalarType >, itk::Rigid3DTransform< TScalarType >, itk::VersorRigid3DTransform< TScalarType >, itk::VersorTransform< TScalarType >, itk::ScaleVersor3DTransform< TScalarType >, otb::TileMapTransform< TTransformDirection, TScalarType, NInputDimensions, NOutputDimensions >, otb::LogPolarTransform< TScalarType >, otb::GeocentricTransform< TDirectionOfMapping, TScalarType, NInputDimensions, NOutputDimensions >, itk::Euler2DTransform< TScalarType >, itk::ScaleTransform< TScalarType, NDimensions >, otb::InverseLogPolarTransform< TScalarType >, itk::ElasticBodySplineKernelTransform< TScalarType, NDimensions >, itk::TranslationTransform< TScalarType, NDimensions >, itk::ElasticBodyReciprocalSplineKernelTransform< TScalarType, NDimensions >, itk::ScaleLogarithmicTransform< TScalarType, NDimensions >, itk::FixedCenterOfRotationAffineTransform< TScalarType, NDimensions >, itk::ScalableAffineTransform< TScalarType, NDimensions >, otb::Transform< TScalarType, NInputDimensions, NOutputDimensions >, otb::UtmMapProjection< TTransform >, itk::ThinPlateR2LogRSplineKernelTransform< TScalarType, NDimensions >, otb::Transform< double, 2, 2 >, otb::Transform< TScalarType, NInputDimensions, NOutputDimensions >, otb::Transform< TScalarType, Dimension, Dimension >, otb::Eckert4MapProjection< TTransform >, otb::SinusoidalMapProjection< TTransform >, otb::TransMercatorMapProjection< TTransform >, itk::CenteredAffineTransform< TScalarType, NDimensions >, itk::CenteredEuler3DTransform< TScalarType >, itk::VolumeSplineKernelTransform< TScalarType, NDimensions >, otb::Lambert3CartoSudProjection< TTransform >, otb::LambertConformalConicMapProjection< TTransform >, otb::SVY21MapProjection< TTransform >, itk::ThinPlateSplineKernelTransform< TScalarType, NDimensions >, otb::MollweidMapProjection< TTransform >, otb::Lambert2EtenduProjection< TTransform >, and otb::Lambert93Projection< TTransform >.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
virtual unsigned int itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::GetNumberOfParameters ( void  ) const
inlinevirtual
template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
unsigned int itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::GetOutputSpaceDimension ( void  ) const
inlinevirtual
template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
virtual const ParametersType& itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::GetParameters ( void  ) const
inlinevirtual

Get the Transformation Parameters.

Implements itk::TransformBase.

Reimplemented in itk::MatrixOffsetTransformBase< TScalarType, NInputDimensions, NOutputDimensions >, itk::MatrixOffsetTransformBase< TScalarType, NDimensions, NDimensions >, itk::MatrixOffsetTransformBase< TScalarType, 2, 2 >, itk::MatrixOffsetTransformBase< TScalarType, 3, 3 >, itk::BSplineDeformableTransform< TScalarType, NDimensions, VSplineOrder >, itk::Rigid2DTransform< TScalarType >, itk::IdentityTransform< TScalarType, NDimensions >, itk::KernelTransform< TScalarType, NDimensions >, itk::Similarity2DTransform< TScalarType >, itk::CenteredSimilarity2DTransform< TScalarType >, otb::Transform< TScalarType, NInputDimensions, NOutputDimensions >, otb::Transform< double, 2, 2 >, otb::Transform< TScalarType, NInputDimensions, NOutputDimensions >, otb::Transform< TScalarType, Dimension, Dimension >, itk::CenteredRigid2DTransform< TScalarType >, itk::ScaleSkewVersor3DTransform< TScalarType >, itk::Rigid3DPerspectiveTransform< TScalarType >, itk::QuaternionRigidTransform< TScalarType >, itk::VersorTransform< TScalarType >, itk::Similarity3DTransform< TScalarType >, itk::ScaleTransform< TScalarType, NDimensions >, itk::ScaleVersor3DTransform< TScalarType >, itk::VersorRigid3DTransform< TScalarType >, itk::CenteredEuler3DTransform< TScalarType >, itk::TranslationTransform< TScalarType, NDimensions >, itk::ScaleLogarithmicTransform< TScalarType, NDimensions >, itk::CenteredAffineTransform< TScalarType, NDimensions >, itk::Euler3DTransform< TScalarType >, otb::LogPolarTransform< TScalarType >, and otb::InverseLogPolarTransform< TScalarType >.

Definition at line 169 of file itkTransform.h.

virtual int itk::LightObject::GetReferenceCount ( ) const
inlinevirtualinherited

Gets the reference count on this object.

Definition at line 105 of file itkLightObject.h.

template<class TScalarType , unsigned int NInputDimensions, unsigned int NOutputDimensions>
std::string itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::GetTransformTypeAsString ( ) const
virtual

Generate a platform independant name

GenerateName

Implements itk::TransformBase.

Definition at line 63 of file itkTransform.txx.

static void itk::Object::GlobalWarningDisplayOff ( )
inlinestaticinherited
static void itk::Object::GlobalWarningDisplayOn ( )
inlinestaticinherited

Definition at line 98 of file itkObject.h.

References itk::Object::SetGlobalWarningDisplay().

bool itk::Object::HasObserver ( const EventObject event) const
inherited

Return true if an observer is registered for this event.

Definition at line 467 of file itkObject.cxx.

void itk::Object::InvokeEvent ( const EventObject event)
inherited
void itk::Object::InvokeEvent ( const EventObject event) const
inherited

Call Execute on all the Commands observing this event id. The actions triggered by this call doesn't modify this object.

Definition at line 457 of file itkObject.cxx.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
virtual bool itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::IsLinear ( ) const
inlinevirtual

Indicates if this transform is linear. A transform is defined to be linear if the transform of a linear combination of points is equal to the linear combination (with the same coefficients) of the individual transforms of each point. The transform T will be linear if given two points P and Q, and scalar coefficients a and b, then

      T( a*P + b*Q ) = a * T(P) + b * T(Q)

By default, we assume this to NOT be the case for most transforms. However, transforms for which this is true will overload and reimplement this method accordingly.

Reimplemented in itk::BSplineDeformableTransform< TScalarType, NDimensions, VSplineOrder >, itk::MatrixOffsetTransformBase< TScalarType, NInputDimensions, NOutputDimensions >, itk::MatrixOffsetTransformBase< TScalarType, NDimensions, NDimensions >, itk::MatrixOffsetTransformBase< TScalarType, 2, 2 >, itk::MatrixOffsetTransformBase< TScalarType, 3, 3 >, itk::IdentityTransform< TScalarType, NDimensions >, itk::ScaleTransform< TScalarType, NDimensions >, itk::KernelTransform< TScalarType, NDimensions >, and itk::TranslationTransform< TScalarType, NDimensions >.

Definition at line 263 of file itkTransform.h.

void itk::Object::Modified ( void  ) const
virtualinherited

Update the modification time for this object. Many filters rely on the modification time to determine if they need to recompute their data.

Make sure this object's modified time is greater than all others.

Reimplemented in otb::SVMModel< TValue, TLabel >, otb::SurfaceAdjacencyEffect6SCorrectionSchemeFilter< TInputImage, TOutputImage >, itk::ImageAdaptor< TImage, TAccessor >, itk::ImageAdaptor< TImage, Accessor::AsinPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::SqrtPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, otb::Accessor::VectorImageToASPixelAccessor< TImage::PixelType::ValueType > >, itk::ImageAdaptor< TImage, Accessor::TanPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::CosPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::VectorToRGBPixelAccessor< TImage::PixelType::ValueType > >, itk::ImageAdaptor< TImage, Accessor::RGBToVectorPixelAccessor< TImage::PixelType::ComponentType > >, itk::ImageAdaptor< TImage, Accessor::ComplexToModulusPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::AbsPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ShiftScalePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::SinPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::LogPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ComplexToPhasePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< VectorImage< TPixelType, Dimension >, Accessor::VectorImageToImagePixelAccessor< TPixelType > >, itk::ImageAdaptor< TImage, Accessor::Log10PixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::AtanPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ComplexToRealPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ComplexToImaginaryPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ExpNegativePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ExpPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::AcosPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::RGBToLuminancePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::AddPixelAccessor< TImage::PixelType > >, otb::GenericRSTransform< TScalarType, NInputDimensions, NOutputDimensions >, otb::MeanShiftImageFilter< TInputImage, TOutputImage, TLabeledOutput, TBufferConverter >, otb::MeanShiftImageFilter< TInputImage, TOutputImage, TLabeledOutput, MeanShift::VectorBufferConverter >, otb::GCPsToRPCSensorModelImageFilter< TImage >, otb::Polygon< TValue >, otb::ImageRegionAdaptativeSplitter< VImageDimension >, otb::GenericInterpolateImageFunction< TInputImage, TFunction, TBoundaryCondition, TCoordRep >, itk::GrayscaleDilateImageFilter< TInputImage, TOutputImage, TKernel >, otb::PolyLineParametricPathWithValue< TValue, VDimension >, itk::GrayscaleErodeImageFilter< TInputImage, TOutputImage, TKernel >, otb::PolyLineParametricPathWithValue< TValue, 2 >, itk::MorphologicalGradientImageFilter< TInputImage, TOutputImage, TKernel >, itk::GrayscaleMorphologicalClosingImageFilter< TInputImage, TOutputImage, TKernel >, itk::GrayscaleMorphologicalOpeningImageFilter< TInputImage, TOutputImage, TKernel >, otb::PhysicalToRPCSensorModelImageFilter< TImage >, itk::MiniPipelineSeparableImageFilter< TInputImage, TOutputImage, TFilter >, itk::MiniPipelineSeparableImageFilter< TInputImage, TOutputImage, RankImageFilter< TInputImage, TInputImage, FlatStructuringElement< ::itk::GetImageDimension< TInputImage >::ImageDimension > > >, itk::NormalizeImageFilter< TInputImage, TOutputImage >, and otb::StatisticsXMLFileReader< TMeasurementVector >.

Definition at line 297 of file itkObject.cxx.

Referenced by otb::Wrapper::InputImageListParameter::AddFromFileName(), otb::Wrapper::InputVectorDataListParameter::AddFromFileName(), otb::Wrapper::InputFilenameListParameter::AddFromFileName(), otb::Wrapper::InputImageListParameter::AddImage(), otb::Wrapper::InputVectorDataListParameter::AddNullElement(), otb::Wrapper::InputImageListParameter::AddNullElement(), otb::Wrapper::InputFilenameListParameter::AddNullElement(), otb::Wrapper::StringListParameter::AddNullElement(), otb::VectorDataModel::AddPointToGeometry(), otb::Wrapper::InputVectorDataListParameter::AddVectorData(), otb::Wrapper::InputFilenameListParameter::ClearValue(), otb::Wrapper::InputVectorDataListParameter::ClearValue(), otb::Wrapper::InputImageListParameter::ClearValue(), otb::VectorDataModel::DeleteGeometry(), otb::VectorDataModel::EndGeometry(), otb::Wrapper::InputFilenameListParameter::Erase(), otb::Wrapper::InputVectorDataListParameter::Erase(), otb::Wrapper::InputImageListParameter::Erase(), itk::NarrowBandImageFilterBase< TInputImage, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >::InsertNarrowBandNode(), otb::ImageWidget< TInputImage >::LinearInterpolationOff(), otb::ImageWidget< TInputImage >::LinearInterpolationOn(), itk::MatrixOffsetTransformBase< TScalarType, NInputDimensions, NOutputDimensions >::MatrixOffsetTransformBase(), otb::ogr::ImageReference< double >::Modified(), otb::Function::StandardRenderingFunction< TPixel, TRGBPixel, TPixelRepresentationFunction, TTransferFunction >::SetAutoMinMax(), otb::BlendingImageFilter< TInputImage1, TInputImage2, TOutputImage >::SetBlendingFunction(), otb::ImageLayerGenerator< TImageLayer >::SetBlendingFunction(), otb::TileMapImageIO::SetCacheDirectory(), itk::MatrixOffsetTransformBase< TScalarType, 3, 3 >::SetCenter(), otb::Function::StandardRenderingFunction< TPixel, TRGBPixel, TPixelRepresentationFunction, TTransferFunction >::SetChannelList(), itk::LBFGSBOptimizer::SetCostFunction(), itk::MINC2ImageIO::SetDimensionName(), itk::ImageIOBase::SetDimensions(), otb::ImageIOBase::SetDimensions(), itk::ImageIOBase::SetDirection(), otb::ImageIOBase::SetDirection(), otb::Wrapper::InputImageListParameter::SetImageList(), itk::GDCMSeriesFileNames::SetInputDirectory(), otb::HistogramStatisticsFunction< TInputHistogram, TOutput >::SetInputHistogram(), otb::ImageToGenericRSOutputParameters< TImage >::SetInputKeywordList(), otb::Wrapper::InputImageListParameter::SetListFromFileName(), otb::Wrapper::InputVectorDataListParameter::SetListFromFileName(), otb::Wrapper::InputFilenameListParameter::SetListFromFileName(), otb::Function::RenderingFunction< TPixel, TRGBPixel >::SetListSample(), itk::MatrixOffsetTransformBase< TScalarType, 3, 3 >::SetMatrix(), itk::NarrowBandImageFilterBase< TInputImage, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >::SetNarrowBand(), itk::NarrowBandImageFilterBase< TInputImage, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >::SetNarrowBandInnerRadius(), itk::NarrowBandImageFilterBase< TInputImage, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >::SetNarrowBandTotalRadius(), otb::Wrapper::InputVectorDataListParameter::SetNthFileName(), otb::Wrapper::InputImageListParameter::SetNthFileName(), otb::Wrapper::InputFilenameListParameter::SetNthFileName(), otb::ImageIOBase::SetNumberOfDimensions(), itk::ImageIOBase::SetNumberOfDimensions(), itk::MatrixOffsetTransformBase< TScalarType, 3, 3 >::SetOffset(), itk::ImageIOBase::SetOrigin(), otb::ImageIOBase::SetOrigin(), otb::ImageToGenericRSOutputParameters< TImage >::SetOutputProjectionRef(), otb::MapProjectionAdapter::SetParameter(), otb::Function::GaussianRenderingFunction< TPixel, TRGBPixel, TPixelRepresentationFunction, TTransferFunction >::SetParameters(), otb::Function::StandardRenderingFunction< TPixel, TRGBPixel, TPixelRepresentationFunction, TTransferFunction >::SetParameters(), itk::ThresholdLabelerImageFilter< TInputImage, TOutputImage >::SetRealThresholds(), otb::ImageLayerGenerator< TImageLayer >::SetRenderingFunction(), otb::RenderingImageFilter< TInputImage, TOutputImage >::SetRenderingFunction(), otb::ImageIOBase::SetSpacing(), itk::ImageIOBase::SetSpacing(), itk::ThresholdLabelerImageFilter< TInputImage, TOutputImage >::SetThresholds(), itk::Statistics::GoodnessOfFitFunctionBase< TInputHistogram >::SetTotalObservedScale(), itk::MatrixOffsetTransformBase< TScalarType, 3, 3 >::SetTranslation(), otb::Wrapper::InputFilenameParameter::SetValue(), otb::Wrapper::OutputFilenameParameter::SetValue(), otb::Wrapper::ListViewParameter::SetValue(), otb::Wrapper::ChoiceParameter::SetValue(), otb::Wrapper::InputVectorDataListParameter::SetVectorDataList(), and otb::MapProjectionAdapter::SetWkt().

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
static Pointer itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::New ( )
static

New method for creating an object using a factory.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
void itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::operator= ( const Self )
private
void itk::LightObject::Print ( std::ostream &  os,
Indent  indent = 0 
) const
inherited

Cause the object to print itself out.

Avoid DLL boundary problems. This function will be common to all itk objects. It just calls the header/self/trailer virtual print methods, which can be overriden by subclasses (any itk object).

Definition at line 135 of file itkLightObject.cxx.

References itk::Indent::GetNextIndent().

Referenced by itk::operator<<().

void itk::LightObject::PrintHeader ( std::ostream &  os,
Indent  indent 
) const
protectedvirtualinherited

Define a default print header for all objects.

Definition at line 320 of file itkLightObject.cxx.

bool itk::Object::PrintObservers ( std::ostream &  os,
Indent  indent 
) const
protectedinherited

Definition at line 478 of file itkObject.cxx.

void itk::Object::PrintSelf ( std::ostream &  os,
Indent  indent 
) const
protectedvirtualinherited

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.

Chaining method to print an object's instance variables, as well as its superclasses.

Reimplemented from itk::LightObject.

Reimplemented in itk::Statistics::KdTree< TSample >, itk::ImageBase< VImageDimension >, itk::ImageBase< ::itk::GetImageDimension< TLabelObject >::ImageDimension >, itk::ImageBase< ::itk::GetImageDimension< VectorImage< TPixelType, Dimension > >::ImageDimension >, itk::ImageBase< ::itk::GetImageDimension< TImage >::ImageDimension >, otb::MeanShiftSmoothingImageFilter< TInputImage, TOutputImage, TKernel, TOutputIterationImage >, otb::ObjectList< TObject >, otb::ObjectList< TImage >, itk::fem::FEMRegistrationFilter< TMovingImage, TFixedImage >, itk::SpatialObject< TDimension >, itk::SpatialObject< 3 >, itk::SpatialObject< ::itk::GetMeshDimension< TMesh >::PointDimension >, otb::ogr::DataSource, itk::MRIBiasFieldCorrectionFilter< TInputImage, TOutputImage, TMaskImage >, itk::SegmentationLevelSetImageFilter< TInputImage, TFeatureImage, TOutputPixelType >, itk::LabelGeometryImageFilter< TLabelImage, TIntensityImage >, itk::Mesh< TPixelType, VDimension, TMeshTraits >, itk::Mesh< TCoordType, 2, DefaultDynamicMeshTraits< TCoordType, 2, 2, TCoordType > >, itk::Mesh< TPixel, VDimension, TTraits >, itk::DataObject, otb::ImageSeriesFileReader< VectorImage< TPixel, 2 >, VectorImage< TInternalPixel, 2 > >, otb::SVMModel< TValue, TLabel >, itk::MultiphaseFiniteDifferenceImageFilter< TInputImage, TFeatureImage, TOutputImage, TFiniteDifferenceFunction, TIdCell >, itk::MultiphaseFiniteDifferenceImageFilter< TInputImage, TFeatureImage, TOutputImage, TFunction, TIdCell >, itk::MultiphaseFiniteDifferenceImageFilter< TInputImage, TFeatureImage, TOutputImage, TFunction, unsigned int >, otb::ImageIOBase, itk::ImageIOBase, itk::BSplineDeformableTransform< TScalarType, NDimensions, VSplineOrder >, itk::MatrixOffsetTransformBase< TScalarType, NInputDimensions, NOutputDimensions >, itk::MatrixOffsetTransformBase< TScalarType, NDimensions, NDimensions >, itk::MatrixOffsetTransformBase< TScalarType, 2, 2 >, itk::MatrixOffsetTransformBase< TScalarType, 3, 3 >, itk::ImageAdaptor< TImage, TAccessor >, itk::ImageAdaptor< TImage, Accessor::AsinPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::SqrtPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, otb::Accessor::VectorImageToASPixelAccessor< TImage::PixelType::ValueType > >, itk::ImageAdaptor< TImage, Accessor::TanPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::CosPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::VectorToRGBPixelAccessor< TImage::PixelType::ValueType > >, itk::ImageAdaptor< TImage, Accessor::RGBToVectorPixelAccessor< TImage::PixelType::ComponentType > >, itk::ImageAdaptor< TImage, Accessor::ComplexToModulusPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::AbsPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ShiftScalePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::SinPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::LogPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ComplexToPhasePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< VectorImage< TPixelType, Dimension >, Accessor::VectorImageToImagePixelAccessor< TPixelType > >, itk::ImageAdaptor< TImage, Accessor::Log10PixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::AtanPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ComplexToRealPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ComplexToImaginaryPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ExpNegativePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::ExpPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::AcosPixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::RGBToLuminancePixelAccessor< TImage::PixelType, TOutputPixelType > >, itk::ImageAdaptor< TImage, Accessor::AddPixelAccessor< TImage::PixelType > >, itk::NarrowBandLevelSetImageFilter< TInputImage, TFeatureImage, TOutputPixelType, TOutputImage >, itk::NarrowBandLevelSetImageFilter< TInputImage, TFeatureImage, TOutputPixelType, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::MultiphaseSparseFiniteDifferenceImageFilter< TInputImage, TFeatureImage, TOutputImage, TFunction, TIdCell >, itk::ParallelSparseFieldLevelSetImageFilter< TInputImage, TOutputImage >, itk::PhasedArray3DSpecialCoordinatesImage< TPixel >, itk::BSplineInterpolateImageFunction< TImageType, TCoordRep, TCoefficientType >, itk::BSplineInterpolateImageFunction< TImageType, TCoordRep, TImageType::PixelType >, itk::ImageToImageMetric< TFixedImage, TMovingImage >, otb::ImageSeriesFileReader< Image< TPixel, 2 >, VectorImage< TInternalPixel, 2 > >, itk::Statistics::Histogram< TMeasurement, VMeasurementVectorSize, TFrequencyContainer >, otb::MarkovRandomFieldFilter< TInputImage, TClassifiedImage >, itk::SparseFieldLevelSetImageFilter< TInputImage, TOutputImage >, itk::SparseFieldLevelSetImageFilter< TInputImage, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::MRFImageFilter< TInputImage, TClassifiedImage >, itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >, itk::Statistics::VariableDimensionHistogram< TMeasurement, TFrequencyContainer >, otb::ProlateInterpolateImageFunction< TInputImage, TBoundaryCondition, TCoordRep, TInputInterpolator, TOutputInterpolator >, itk::SpecialCoordinatesImage< TPixel, VImageDimension >, itk::SpecialCoordinatesImage< TPixel, 3 >, itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >, itk::AffineTransform< TScalarType, NDimensions >, itk::ShapeUniqueLabelMapFilter< TImage >, itk::VectorImage< TPixel, VImageDimension >, itk::VectorImage< TOutputPixelType, VImageDimension >, itk::VectorImage< TNeuron::ComponentType, VImageDimension >, itk::VectorImage< TInputPixelType, VImageDimension >, itk::VectorImage< TPixelType, Dimension >, itk::Statistics::Subsample< TSample >, itk::WindowedSincInterpolateImageFunction< TInputImage, VRadius, TWindowFunction, TBoundaryCondition, TCoordRep >, itk::Statistics::ListSample< TMeasurementVector >, itk::Statistics::ListSample< TInputImage::PixelType >, otb::SVMModelEstimator< InputPixelType, LabelPixelType >, otb::SVMModelEstimator< TInputImage::InternalPixelType, TTrainingImage::PixelType >, otb::SVMModelEstimator< TInputSampleList::MeasurementType, TTrainingSampleList::MeasurementType >, otb::SVMModelEstimator< TInputPointSet::PixelType::value_type, TTrainingPointSet::PixelType >, itk::ProcessObject, itk::FastMarchingImageFilter< TLevelSet, TSpeedImage >, otb::DataNode< TPrecision, VDimension, TValuePrecision >, itk::Statistics::ImageToListAdaptor< TImage, TMeasurementVector >, itk::Statistics::ImageToListAdaptor< TImage, FixedArray< TImage::PixelType, 2 > >, itk::Statistics::ImageToListAdaptor< TImage, ImageJointDomainTraits< TImage >::MeasurementVectorType >, itk::Statistics::ImageToListAdaptor< TImage, FixedArray< TImage::PixelType, 1 > >, itk::MovingHistogramMorphologyImageFilter< TInputImage, TOutputImage, TKernel, THistogram >, itk::MovingHistogramMorphologyImageFilter< TInputImage, TOutputImage, TKernel, Function::MorphologyHistogram< TInputImage::PixelType, std::less< TInputImage::PixelType > > >, itk::MovingHistogramMorphologyImageFilter< TInputImage, TOutputImage, TKernel, Function::MorphologyHistogram< TInputImage::PixelType, std::greater< TInputImage::PixelType > > >, itk::SparseFieldFourthOrderLevelSetImageFilter< TInputImage, TOutputImage >, itk::Image< TPixel, VImageDimension >, itk::Image< TInputPixel, VImageDimension >, itk::Image< TOutputPixelType, VImageDimension >, itk::Image< TOutputPixel, VImageDimension >, itk::Image< BloxCoreAtomPixel< NDimension >, TImageDimension >, itk::Image< TNode *, VImageDimension >, itk::Image< BloxBoundaryProfilePixel< TImageDimension >, TImageDimension >, itk::Image< TBloxPixelType, TImageDimension >, itk::Image< BloxBoundaryPointPixel< TImageDimension >, TImageDimension >, otb::VariableLengthVectorConverter< itk::SmartPointer< itk::Statistics::Histogram< TPixel > >, TPrecisionType >, itk::LabelMap< TLabelObject >, otb::ShapeAttributesLabelMapFilter< TImage, TLabelImage >, itk::MattesMutualInformationImageToImageMetric< TFixedImage, TMovingImage >, itk::VectorGradientMagnitudeImageFilter< TInputImage, TRealType, TOutputImage >, otb::GenericRSResampleImageFilter< TInputImage, TOutputImage >, otb::SurfaceAdjacencyEffect6SCorrectionSchemeFilter< TInputImage, TOutputImage >, itk::OrientImageFilter< TInputImage, TOutputImage >, itk::SimplexMesh< TPixelType, VDimension, TMeshTraits >, otb::watershed::Segmenter< TInputImage >, itk::watershed::Segmenter< TInputImage >, otb::watershed::Segmenter< InputImageType >, itk::watershed::Segmenter< InputImageType >, itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType >, itk::ResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >, otb::AtmosphericRadiativeTerms, itk::WatershedImageFilter< TInputImage >, itk::ResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >, itk::VectorFuzzyConnectednessImageFilter< TInputImage, TOutputImage >, itk::SimplexMeshAdaptTopologyFilter< TInputMesh, TOutputMesh >, otb::ConvexOrConcaveClassificationFilter< TInputImage, TOutputImage >, itk::SparseFieldLayer< TNodeType >, otb::LineSegmentDetector< TInputImage, TPrecision >, itk::Statistics::MembershipSample< TSample >, otb::LineSegmentDetector< TImageType, double >, otb::VectorRescaleIntensityImageFilter< TInputImage, TOutputImage >, otb::WatershedImageFilter< TInputImage >, itk::MultiThreader, itk::Statistics::GoodnessOfFitComponentBase< TInputSample >, otb::ArrowKeyMoveActionHandler< TModel, TView >, itk::RelabelComponentImageFilter< TInputImage, TOutputImage >, itk::GDCMImageIO, itk::Statistics::PointSetToListAdaptor< TPointSet >, itk::ActiveShapeModelCalculator< TImage >, otb::VariableLengthVectorConverter< itk::FixedArray< TInternalInputType, VArrayDimension >, TPrecisionType >, itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >, itk::Rigid2DTransform< TScalarType >, itk::CannyEdgeDetectionImageFilter< ImageType, ImageType >, otb::WarpImageFilter< TInputImage, TOutputImage, TDeformationField >, itk::WarpImageFilter< TInputImage, TOutputImage, TDeformationField >, otb::MultiScaleConvexOrConcaveClassificationFilter< TInputImage, TOutputImage >, otb::ReflectanceToSurfaceReflectanceImageFilter< TInputImage, TOutputImage >, itk::STAPLEImageFilter< TInputImage, TOutputImage >, itk::ConnectedRegionsMeshFilter< TInputMesh, TOutputMesh >, itk::ImageToImageMetric< TFixedImage, TMovingImage >, otb::ImageSeriesFileReader< Image< TPixel, 2 >, Image< TInternalPixel, 2 > >, itk::PointSet< TPixelType, VDimension, TMeshTraits >, itk::PointSet< TPixel, VDimension, TTraits >, itk::PointSet< TCoordType, VDimension, DefaultDynamicMeshTraits< TCoordType, 2, 2, TCoordType > >, itk::VoronoiDiagram2D< TCoordType >, itk::FiniteDifferenceImageFilter< TInputImage, TOutputImage >, itk::PhilipsPAR, itk::FiniteDifferenceImageFilter< TDeformationField, TDeformationField >, itk::FiniteDifferenceImageFilter< TInputImage, TSparseOutputImage >, itk::FiniteDifferenceImageFilter< TInputImage, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::FiniteDifferenceImageFilter< TInputImageType, TSparseOutputImageType >, otb::ImageToSIFTKeyPointSetFilter< TInputImage, TOutputPointSet >, itk::MultiResolutionPDEDeformableRegistration< TFixedImage, TMovingImage, TDeformationField, TRealType >, itk::ImageFunction< TInputImage, TOutput, TCoordRep >, itk::Statistics::GaussianDistribution, itk::MattesMutualInformationImageToImageMetric< TFixedImage, TMovingImage >, itk::ImageFunction< TInputImage, SymmetricSecondRankTensor< TOutput,::itk::GetImageDimension< TInputImage >::ImageDimension >, TOutput >, itk::ImageFunction< TInputImage, itk::Statistics::Histogram< TInputImage::PixelType >::Pointer, TCoordRep >, itk::ImageFunction< TInputImage, itk::NumericTraits< TInputImage::PixelType >::AbsType, TCoordRep >, itk::ImageFunction< TInputImage, Vector< TOutput,::itk::GetImageDimension< TInputImage >::ImageDimension >, TOutput >, itk::ImageFunction< TInputImage, std::vector< std::vector< TOutputPrecision > >, TCoordRep >, itk::ImageFunction< TInputImage, CovariantVector< double,::itk::GetImageDimension< TInputImage >::ImageDimension >, TCoordRep >, itk::ImageFunction< TInputImage, vnl_matrix< NumericTraits< TInputImage::PixelType::ValueType >::RealType >, TCoordRep >, itk::ImageFunction< TInputImage, NumericTraits< TInputImage::PixelType >::RealType, TCoordRep >, itk::ImageFunction< TInputImage, itk::FixedArray< itk::NumericTraits< TInputImage::PixelType >::RealType, 11 >, TCoordRep >, itk::ImageFunction< TInputImage, Matrix< double,::itk::GetDimension< TInputImage::PixelType >::Dimension,::itk::GetImageDimension< TInputImage >::ImageDimension >, TCoordRep >, itk::ImageFunction< TInputImage, itk::NumericTraits< TInputImage::PixelType >::RealType, TCoordRep >, itk::ImageFunction< TInternalImageFunctionType::InputImageType, itk::VariableLengthVector< TOutputPrecision >, TInternalImageFunctionType::CoordRepType >, itk::ImageFunction< TInputImage, itk::FixedArray< itk::NumericTraits< TInputImage::PixelType >::RealType, 7 >, TCoordRep >, itk::ImageFunction< TInputImage, std::vector< std::vector< itk::NumericTraits< TInputImage::PixelType >::RealType > >, TCoordRep >, itk::ImageFunction< TInputImage, FixedArray< NumericTraits< TInputImage::PixelType::ValueType >::RealType,::itk::GetVectorDimension< TInputImage::PixelType >::VectorDimension >, TCoordRep >, itk::ImageFunction< TInputImage, itk::FixedArray< itk::NumericTraits< TInputImage::PixelType >::RealType, 4 >, TCoordRep >, itk::ImageFunction< TInputImage, itk::Vector< float, 2 >, TCoordRep >, itk::ImageFunction< TImageType, NumericTraits< TImageType::PixelType >::RealType, TCoordRep >, itk::ImageFunction< TInputImage, itk::FixedArray< itk::NumericTraits< TInputImage::PixelType >::RealType, 8 >, TCoordRep >, itk::ImageFunction< TInputImage, std::vector< std::vector< std::complex< double > > >, TCoordRep >, itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep >, itk::ImageFunction< TInputImage, TOutput >, itk::ImageFunction< TInputImage, bool, TCoordRep >, itk::ImageFunction< TInputImage, TOutput, TOutput >, itk::ImageFunction< TInputImage, itk::NumericTraits< TInputImage::PixelType >::ScalarRealType, TCoordRep >, itk::ImageFunction< otb::VectorImage< TPixel, VImageDimension >, NumericTraits< otb::VectorImage< TPixel, VImageDimension >::PixelType >::RealType, TCoordRep >, itk::DiscreteGaussianImageFilter< TInputImage, TOutputImage >, otb::VectorDataActionHandler< TModel, TView >, itk::DisplacementFieldJacobianDeterminantFilter< TInputImage, TRealType, TOutputImage >, itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >, itk::MultiResolutionPyramidImageFilter< TInputImage, TOutputImage >, itk::TriangleMeshToBinaryImageFilter< TInputMesh, TOutputImage >, otb::HistogramActionHandler< TModel, TView, TRenderingFunction >, otb::LabelMapWithAdjacency< TLabelObject >, itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDeformationField >, otb::SFSTexturesImageFilter< TInputImage, TOutputImage >, otb::ImageLayer< TImage, TOutputImage >, otb::PersistentShrinkImageFilter< TInputImage, TOutputImage >, itk::KLMSegmentationRegion, itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >, itk::ChangeInformationImageFilter< TInputImage >, itk::SignedDanielssonDistanceMapImageFilter< TInputImage, TOutputImage >, itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage >, itk::ImageKmeansModelEstimator< TInputImage, TMembershipFunction >, itk::NarrowBandImageFilterBase< TInputImage, TOutputImage >, itk::NarrowBandImageFilterBase< TInputImage, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::DeformableSimplexMesh3DFilter< TInputMesh, TOutputMesh >, itk::VectorResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >, itk::Statistics::MersenneTwisterRandomVariateGenerator, otb::PersistentStreamingStatisticsVectorImageFilter< TInputImage, TPrecision >, itk::BayesianClassifierImageFilter< TInputVectorImage, TLabelsType, TPosteriorsPrecisionType, TPriorsPrecisionType >, itk::DiscreteGaussianDerivativeImageFunction< TInputImage, TOutput >, itk::ImageMomentsCalculator< TImage >, itk::SPSAOptimizer, itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::watershed::Boundary< TScalarType, TDimension >, itk::MultiphaseDenseFiniteDifferenceImageFilter< TInputImage, TFeatureImage, TOutputImage, TFunction, TIdCell >, itk::MultiphaseDenseFiniteDifferenceImageFilter< TInputImage, TFeatureImage, TOutputImage, TFunction >, itk::BSplineScatteredDataPointSetToImageFilter< TInputPointSet, TOutputImage >, itk::BinaryMorphologyImageFilter< TInputImage, TOutputImage, TKernel >, itk::AzimuthElevationToCartesianTransform< TScalarType, NDimensions >, otb::ImageMetadataInterfaceBase, otb::ImageViewerHistogramAndTransferFunctionWidget< THistogram, TPixel, TLabel >, itk::Statistics::TDistribution, otb::Transform< TScalarType, NInputDimensions, NOutputDimensions >, otb::VariableLengthVectorConverter< std::vector< std::vector< std::complex< TInternalInputType > > >, TPrecisionType >, otb::ImageFileWriter< TInputImage >, itk::ImageRegistrationMethod< TFixedImage, TMovingImage >, otb::Transform< double, 2, 2 >, otb::Transform< TScalarType, NInputDimensions, NOutputDimensions >, otb::Transform< TScalarType, Dimension, Dimension >, otb::BandsStatisticsAttributesLabelMapFilter< TImage, TFeatureImage >, itk::HistogramImageToImageMetric< TFixedImage, TMovingImage >, itk::Similarity2DTransform< TScalarType >, itk::Statistics::ChiSquareDistribution, itk::BinaryMorphologyImageFilter< TInputImage, TOutputImage, TKernel >, otb::ViewerViewGUI, itk::DiscreteHessianGaussianImageFunction< TInputImage, TOutput >, itk::ImageSeriesWriter< TInputImage, TOutputImage >, otb::BCOInterpolateImageFunction< otb::VectorImage< TPixel, VImageDimension >, TCoordRep >, otb::GenericRoadExtractionFilter< TInputImage, TOutputPath >, otb::StatisticsAttributesLabelMapFilter< TImage, TFeatureImage >, itk::ObjectMorphologyImageFilter< TInputImage, TOutputImage, TKernel >, itk::ThresholdLabelerImageFilter< TInputImage, TOutputImage >, itk::Statistics::JointDomainImageToListAdaptor< TImage >, itk::NarrowBandThresholdSegmentationLevelSetImageFilter< TInputImage, TFeatureImage, TOutputPixelType >, otb::ImageAlternateViewer< TPixel >, itk::watershed::SegmentTreeGenerator< TScalarType >, itk::BinaryThresholdImageFilter< TInputImage, TOutputImage >, itk::Rigid3DTransform< TScalarType >, itk::watershed::SegmentTreeGenerator< ScalarType >, itk::DiscreteGradientMagnitudeGaussianImageFunction< TInputImage, TOutput >, otb::MDMDNMFImageFilter< TInputImage, TOutputImage >, itk::FastMarchingUpwindGradientImageFilter< TLevelSet, TSpeedImage >, itk::KernelTransform< TScalarType, NDimensions >, itk::TransformToDeformationFieldSource< TOutputImage, TTransformPrecisionType >, otb::ImageLayerGenerator< TImageLayer >, itk::MutualInformationImageToImageMetric< TFixedImage, TMovingImage >, otb::MeanShiftImageFilter< TInputImage, TOutputImage, TLabeledOutput, TBufferConverter >, otb::GenericRSTransform< TScalarType, NInputDimensions, NOutputDimensions >, otb::MultiChannelsPolarimetricSynthesisFilter< TInputImage, TOutputImage, TFunction >, itk::BilateralImageFilter< TInputImage, TOutputImage >, itk::BoundingBox< TPointIdentifier, VPointDimension, TCoordRep, TPointsContainer >, otb::MeanShiftImageFilter< TInputImage, TOutputImage, TLabeledOutput, MeanShift::VectorBufferConverter >, otb::DataNodeImageFunction< TImage, TOutput, TCoordRep, TPrecision >, otb::VectorDataToMapFilter< TVectorData, TImage >, itk::BSplineInterpolateImageFunction< TImageType, TCoordRep, TCoefficientType >, itk::ScaleTransform< TScalarType, NDimensions >, itk::Statistics::ScalarImageTextureCalculator< TImageType, THistogramFrequencyContainer >, otb::DataNodeImageFunction< TImage, std::vector< TPrecision >, TCoordRep, TPrecision >, itk::BSplineInterpolateImageFunction< TImageType, TCoordRep, TImageType::PixelType >, otb::DisparityMapEstimationMethod< TFixedImage, TMovingImage, TPointSet >, otb::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >, itk::BinaryImageToStatisticsLabelMapFilter< TInputImage, TFeatureImage, TOutputImage >, itk::BinaryStatisticsKeepNObjectsImageFilter< TInputImage, TFeatureImage >, itk::DiscreteGaussianDerivativeImageFilter< TInputImage, TOutputImage >, otb::HaralickTexturesImageFunction< TInputImage, TCoordRep >, otb::VectorDataToLabelMapWithAttributesFilter< TVectorData, TLabelMap >, otb::DecisionTreeMachineLearningModel< TInputValue, TTargetValue >, otb::StandardImageViewer< TImage, TVectorData, TWidgetManager >, itk::ImageToSpatialObjectRegistrationMethod< TFixedImage, TMovingSpatialObject >, itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >, otb::RationalTransform< TScalarType, Dimension >, itk::ThresholdSegmentationLevelSetImageFilter< TInputImage, TFeatureImage, TOutputPixelType >, itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >, itk::BinaryStatisticsKeepNObjectsImageFilter< TInputImage, TFeatureImage >, otb::RandomForestsMachineLearningModel< TInputValue, TTargetValue >, itk::ScalarImageKmeansImageFilter< TInputImage, TOutputImage >, itk::VectorExpandImageFilter< TInputImage, TOutputImage >, otb::NeuralNetworkMachineLearningModel< TInputValue, TTargetValue >, itk::DanielssonDistanceMapImageFilter< TInputImage, TOutputImage >, itk::DanielssonDistanceMapImageFilter< ImageType, ImageType >, otb::AtmosphericCorrectionParameters, itk::SimplexMeshVolumeCalculator< TInputMesh >, itk::KLMSegmentationBorder, otb::MassOfBelief< TLabel, TMass >, itk::TranslationTransform< TScalarType, NDimensions >, itk::Bruker2DSEQImageIO, otb::ImageSeriesFileReaderBase< TImage, TInternalImage >, itk::ImageFileWriter< TInputImage >, otb::ImageSeriesFileReaderBase< VectorImage< TPixel, 2 >, VectorImage< TInternalPixel, 2 > >, otb::ImageSeriesFileReaderBase< Image< TPixel, 2 >, Image< TInternalPixel, 2 > >, otb::ImageSeriesFileReaderBase< Image< TPixel, 2 >, VectorImage< TInternalPixel, 2 > >, otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >, itk::ImageToSpatialObjectMetric< TFixedImage, TMovingSpatialObject >, itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::InverseDeformationFieldImageFilter< TInputImage, TOutputImage >, otb::PCAImageFilter< TInputImage, TOutputImage, TDirectionOfTransformation >, otb::WindowedSincInterpolateImageFunctionBase< TInputImage, TWindowFunction, TBoundaryCondition, TCoordRep >, itk::DeformableMesh3DFilter< TInputMesh, TOutputMesh >, otb::WindowedSincInterpolateImageFunctionBase< TInputImage, Function::WelchWindowFunction< TInputInterpolator, TOutputInterpolator >, TBoundaryCondition, TCoordRep >, otb::WindowedSincInterpolateImageFunctionBase< TInputImage, Function::CosineWindowFunction< TInputInterpolator, TOutputInterpolator >, TBoundaryCondition, TCoordRep >, otb::WindowedSincInterpolateImageFunctionBase< TInputImage, Function::GaussianWindowFunction< TInputInterpolator, TOutputInterpolator >, TBoundaryCondition, TCoordRep >, otb::WindowedSincInterpolateImageFunctionBase< TInputImage, Function::BlackmanWindowFunction< TInputInterpolator, TOutputInterpolator >, TBoundaryCondition, TCoordRep >, otb::WindowedSincInterpolateImageFunctionBase< TInputImage, Function::LanczosWindowFunction< TInputInterpolator, TOutputInterpolator >, TBoundaryCondition, TCoordRep >, otb::WindowedSincInterpolateImageFunctionBase< TInputImage, Function::HammingWindowFunction< TInputInterpolator, TOutputInterpolator >, TBoundaryCondition, TCoordRep >, otb::DEMToImageGenerator< TDEMImage >, itk::ContourSpatialObject< TDimension >, otb::StereorectificationDeformationFieldSource< TInputImage, TOutputImage >, itk::CurvatureRegistrationFilter< TFixedImage, TMovingImage, TDeformationField, TImageForceFunction >, itk::RayCastInterpolateImageFunction< TInputImage, TCoordRep >, itk::PCAShapeSignedDistanceFunction< TCoordRep, VSpaceDimension, TImage >, itk::Statistics::ListSampleToHistogramGenerator< TListSample, THistogramMeasurement, TFrequencyContainer, TMeasurementVectorLength >, otb::PolarimetricSynthesisFilter< TInputImageHH, TInputImageHV, TInputImageVH, TInputImageVV, TOutputImage, TFunction >, itk::BalloonForceFilter< TInputMesh, TOutputMesh >, itk::PointSetToImageMetric< TFixedPointSet, TMovingImage >, itk::CenteredSimilarity2DTransform< TScalarType >, itk::GDCMSeriesFileNames, itk::LBFGSBOptimizer, itk::MultiScaleHessianBasedMeasureImageFilter< TInputImage, THessianImage, TOutputImage >, itk::ShapeKeepNObjectsLabelMapFilter< TImage >, itk::OnePlusOneEvolutionaryOptimizer, otb::ImageToImageRCC8Calculator< TInputImage >, otb::VectorImageToColorAnaglyphVectorImageFilter< TInputImage1, TInputImage2, TOutputImage >, itk::BayesianClassifierInitializationImageFilter< TInputImage, TProbabilityPrecisionType >, itk::LabelVotingImageFilter< TInputImage, TOutputImage >, itk::ContourExtractor2DImageFilter< TInputImage >, otb::NCLSUnmixingImageFilter< TInputImage, TOutputImage, TPrecision >, otb::UnConstrainedLeastSquareImageFilter< TInputImage, TOutputImage, TPrecision >, otb::InverseDeformationFieldImageFilter< TInputImage, TOutputImage >, itk::PathSource< TOutputPath >, itk::PathSource< PolyLineParametricPath< 2 > >, itk::PathSource< OrthogonallyCorrected2DParametricPath >, itk::PathSource< TOutputChainCodePath >, itk::PathSource< TOutputFourierSeriesPath >, otb::PersistentHistogramVectorImageFilter< TInputImage >, otb::ObjectListSource< TOutputList >, otb::Image< TPixel, VImageDimension >, otb::ImageSimulationMethod< TInputVectorData, TSpatialisation, TSimulationStep1, TSimulationStep2, TFTM, TOutputImage >, itk::LoggerBase, itk::Rigid3DPerspectiveTransform< TScalarType >, itk::Statistics::ScalarImageToGreyLevelCooccurrenceMatrixGenerator< TImageType, THistogramFrequencyContainer >, itk::LabelStatisticsKeepNObjectsImageFilter< TInputImage, TFeatureImage >, itk::LabelStatisticsOpeningImageFilter< TInputImage, TFeatureImage >, itk::ShapeRelabelLabelMapFilter< TImage >, otb::ObjectListSource< ObjectList< TPath > >, otb::ObjectListSource< ObjectList< Landmark< TPointSet::PointType, TPointSet::PixelType, double > > >, otb::ObjectListSource< ObjectList< TOutputPath > >, otb::Image< TOutputPixel, 2 >, otb::Image< TInputPixel, 2 >, otb::Image< TOutputPixelType, 2 >, itk::Statistics::ScalarImageToGreyLevelCooccurrenceMatrixGenerator< TImage, THistogramFrequencyContainer >, otb::ISRAUnmixingImageFilter< TInputImage, TOutputImage, TPrecision >, otb::PersistentDescriptorsListSampleGenerator< TInputImage, TVectorData, TFunctionType, TListSample, TLabelListSample >, otb::GCPsToRPCSensorModelImageFilter< TImage >, itk::FastChamferDistanceImageFilter< TInputImage, TOutputImage >, itk::watershed::SegmentTree< TScalarType >, itk::IntensityWindowingImageFilter< TInputImage, TOutputImage >, itk::SimplexMeshToTriangleMeshFilter< TInputMesh, TOutputMesh >, itk::LabelImageToStatisticsLabelMapFilter< TInputImage, TFeatureImage, TOutputImage >, otb::MNFImageFilter< TInputImage, TOutputImage, TNoiseImageFilter, TDirectionOfTransformation >, otb::PersistentObjectDetectionClassifier< TInputImage, TOutputVectorData, TLabel, TFunctionType >, itk::ShapePriorSegmentationLevelSetImageFilter< TInputImage, TFeatureImage, TOutputPixelType >, itk::CenteredRigid2DTransform< TScalarType >, itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >, itk::PointLocator< TPointIdentifier, VPointDimension, TCoordRep, TPointsContainer >, itk::CoxDeBoorBSplineKernelFunction< VSplineOrder >, itk::TubeSpatialObject< TDimension, TTubePointType >, itk::TubeSpatialObject< TDimension, VesselTubeSpatialObjectPoint< TDimension > >, itk::TubeSpatialObject< TDimension, DTITubeSpatialObjectPoint< TDimension > >, otb::ChangeLabelImageFilter< TInputImage, TOutputImage >, itk::HistogramToImageFilter< THistogram, TFunction >, itk::HistogramToImageFilter< THistogram, Function::HistogramIntensityFunction< unsigned long, TOutputPixel > >, itk::HistogramToImageFilter< THistogram, Function::HistogramEntropyFunction< unsigned long, TOutputPixel > >, itk::HistogramToImageFilter< THistogram, Function::HistogramProbabilityFunction< unsigned long, TOutputPixel > >, itk::HistogramToImageFilter< THistogram, Function::HistogramLogProbabilityFunction< unsigned long, TOutputPixel > >, otb::PersistentMatrixTransposeMatrixImageFilter< TInputImage, TInputImage2 >, otb::VectorDataToImageFilter< TVectorData, TImage >, otb::SEMClassifier< TInputImage, TOutputImage >, itk::ConnectedComponentImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::GradientRecursiveGaussianImageFilter< TInputImage, TOutputImage >, itk::HoughTransform2DCirclesImageFilter< TInputPixelType, TOutputPixelType >, itk::NeighborhoodOperatorImageFilter< TInputImage, TOutputImage, TOperatorValueType >, otb::VectorDataToDSValidatedVectorDataFilter< TVectorData, TPrecision >, itk::RGBGibbsPriorFilter< TInputImage, TClassifiedImage >, itk::ExpandImageFilter< TInputImage, TOutputImage >, itk::SymmetricEigenAnalysisImageFilter< TInputImage, TOutputImage >, otb::KmzProductWriter< TInputImage >, otb::SVMSampleListModelEstimator< TInputSampleList, TTrainingSampleList, TMeasurementFunctor >, itk::GeodesicActiveContourShapePriorLevelSetImageFilter< TInputImage, TFeatureImage, TOutputPixelType >, itk::HistogramMatchingImageFilter< TInputImage, TOutputImage, THistogramMeasurement >, itk::BinaryProjectionImageFilter< TInputImage, TOutputImage >, itk::ImageSeriesReader< TOutputImage >, itk::LabelMapMaskImageFilter< TInputImage, TOutputImage >, otb::VectorDataToLabelMapFilter< TVectorData, TLabelMap >, itk::InterpolateImagePointsFilter< TInputImage, TOutputImage, TCoordType, InterpolatorType >, itk::LandmarkBasedTransformInitializer< TTransform, TFixedImage, TMovingImage >, itk::ActiveShapeModelGradientSearchMethod< TImage >, itk::StatisticsRelabelImageFilter< TInputImage, TFeatureImage >, otb::MapFileProductWriter< TInputImage >, otb::ImageWidget< TInputImage >, itk::ChangeLabelImageFilter< TInputImage, TOutputImage >, itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >, itk::RescaleIntensityImageFilter< TInputImage, TOutputImage >, itk::ZeroCrossingBasedEdgeDetectionImageFilter< TInputImage, TOutputImage >, itk::SliceBySliceImageFilter< TInputImage, TOutputImage, TInputFilter, TOutputFilter, TInternalInputImage, TInternalOutputImage >, otb::TerraSarImageMetadataInterface, otb::GeometriesSet, itk::CollidingFrontsImageFilter< TInputImage, TOutputImage >, itk::GradientDifferenceImageToImageMetric< TFixedImage, TMovingImage >, itk::MaskImageFilter< TInputImage, TMaskImage, TOutputImage >, itk::MaskNegatedImageFilter< TInputImage, TMaskImage, TOutputImage >, itk::ScalableAffineTransform< TScalarType, NDimensions >, itk::GrayscaleDilateImageFilter< TInputImage, TOutputImage, TKernel >, otb::PixelDescriptionActionHandler< TModel, TView >, otb::SelectAreaActionHandler< TModel, TWidget >, itk::CurvatureFlowImageFilter< TInputImage, TOutputImage >, itk::GaussianBlurImageFunction< TInputImage, TOutput >, itk::GrayscaleErodeImageFilter< TInputImage, TOutputImage, TKernel >, itk::VectorCentralDifferenceImageFunction< TInputImage, TCoordRep >, itk::BinaryReconstructionByDilationImageFilter< TInputImage >, itk::BinaryReconstructionByErosionImageFilter< TInputImage >, otb::PrintableImageFilter< TInputImage, TMaskImage >, otb::VariableLengthVectorConverter< std::vector< std::vector< TInternalInputType > >, TPrecisionType >, itk::AntiAliasBinaryImageFilter< TInputImage, TOutputImage >, itk::BinaryThresholdProjectionImageFilter< TInputImage, TOutputImage >, itk::VTKImageImport< TOutputImage >, itk::BinaryShapeKeepNObjectsImageFilter< TInputImage >, otb::PersistentMinMaxVectorImageFilter< TInputImage >, itk::HessianRecursiveGaussianImageFilter< TInputImage, TOutputImage >, itk::Statistics::ImageToListGenerator< TImage, TMaskImage >, itk::DiffeomorphicDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::ShapeOpeningLabelMapFilter< TImage >, otb::BCOInterpolateImageFunction< TInputImage, TCoordRep >, otb::ImageFileReader< TOutputImage, ConvertPixelTraits >, itk::PointSetToPointSetRegistrationMethod< TFixedPointSet, TMovingPointSet >, itk::BSplineResampleImageFilterBase< TInputImage, TOutputImage >, itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >, itk::BinaryContourImageFilter< TInputImage, TOutputImage >, itk::BinaryShapeOpeningImageFilter< TInputImage >, otb::ConvolutionImageFilter< TInputImage, TOutputImage, TBoundaryCondition, TFilterPrecision >, itk::BinaryImageToLabelMapFilter< TInputImage, TOutputImage >, itk::MorphologicalWatershedFromMarkersImageFilter< TInputImage, TLabelImage >, itk::BinaryShapeOpeningImageFilter< TInputImage >, itk::CompareHistogramImageToImageMetric< TFixedImage, TMovingImage >, itk::GeodesicActiveContourLevelSetImageFilter< TInputImage, TFeatureImage, TOutputPixelType >, itk::ThresholdMaximumConnectedComponentsImageFilter< TInputImage, TOutputImage >, itk::SignedMaurerDistanceMapImageFilter< TInputImage, TOutputImage >, itk::MetaImageIO, otb::OverlapSaveConvolutionImageFilter< TInputImage, TOutputImage, TBoundaryCondition >, otb::PersistentStatisticsImageFilter< TInputImage >, otb::MorphologicalPyramid::MRToMSConverter< TInputImage, TOutputImage >, itk::ClassifierBase< TDataContainer >, itk::DeformableSimplexMesh3DGradientConstraintForceFilter< TInputMesh, TOutputMesh >, itk::VectorThresholdSegmentationLevelSetImageFilter< TInputImage, TFeatureImage, TOutputPixelType >, itk::SimpleContourExtractorImageFilter< TInputImage, TOutputImage >, itk::SpatialObjectToImageFilter< TInputSpatialObject, TOutputImage >, itk::NonUniformBSpline< TDimension >, itk::Statistics::KdTreeBasedKmeansEstimator< TKdTree >, itk::Statistics::ProbabilityDistribution, itk::BinaryShapeKeepNObjectsImageFilter< TInputImage >, itk::ClassifierBase< TInputImage >, itk::ClassifierBase< TSample >, itk::ClassifierBase< itk::Statistics::ListSample< TInputImage::PixelType > >, otb::StandardDSCostFunction< TDSValidationFilter >, otb::VectorDataIOBase, otb::GeodesicMorphologyDecompositionImageFilter< TInputImage, TOutputImage, TStructuringElement >, itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >, itk::MahalanobisDistanceThresholdImageFunction< TInputImage, TCoordRep >, itk::ArrowSpatialObject< TDimension >, otb::ProjectiveProjectionImageFilter< TInputImage, TOutputImage, TPrecision >, otb::RoadExtractionFilter< TInputImage, TOutputPath >, itk::GrayscaleGeodesicDilateImageFilter< TInputImage, TOutputImage >, itk::NormalizedCorrelationImageFilter< TInputImage, TMaskImage, TOutputImage, TOperatorValueType >, itk::VectorInterpolateImageFunction< TInputImage, TCoordRep >, itk::DICOMSeriesFileNames, itk::LabelContourImageFilter< TInputImage, TOutputImage >, otb::ImageRegionAdaptativeSplitter< VImageDimension >, otb::Polygon< TValue >, otb::ChangeScaleActionHandler< TModel, TView, TViewToUpdate >, itk::AnalyzeImageIO, itk::ImageFileReader< TOutputImage, ConvertPixelTraits >, otb::SpatialObjectToImageDrawingFilter< TInputSpatialObject, TOutputImage >, otb::DisparityMapMedianFilter< TInputImage, TOutputImage, TMask >, otb::GDALImageIO, itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >, itk::Statistics::GreyLevelCooccurrenceMatrixTextureCoefficientsCalculator< THistogram >, itk::BinaryAttributeOpeningImageFilter< TInputImage, TLabelObject, TLabelObjectValuator, TAttributeAccessor >, otb::Curves2DWidget, otb::ImageLayerBase< TOutputImage, TLayerValuePrecision >, itk::CurvesLevelSetImageFilter< TInputImage, TFeatureImage, TOutputPixelType >, itk::NarrowBandCurvesLevelSetImageFilter< TInputImage, TFeatureImage, TOutputPixelType >, itk::DeformationFieldSource< TOutputImage >, itk::VersorTransform< TScalarType >, otb::ImageUniqueValuesCalculator< TImage >, otb::ImageLayerBase< TOutputImage >, otb::ImportVectorImageFilter< TOutputImageType >, otb::RasterizeVectorDataFilter< TVectorData, TInputImage, TOutputImage >, otb::DEMCaracteristicsExtractor< TInputImage, TOutputImage >, itk::bio::CellularAggregate< NSpaceDimension >, itk::MaskNeighborhoodOperatorImageFilter< TInputImage, TMaskImage, TOutputImage, TOperatorValueType >, itk::Statistics::LayerBase< TMeasurementVector, TTargetVector >, itk::PhilipsRECImageIO, itk::BinaryAttributeKeepNObjectsImageFilter< TInputImage, TLabelObject, TLabelObjectValuator, TAttributeAccessor >, otb::SarRadiometricCalibrationFunction< TInputImage, TCoordRep >, otb::PolygonListToRCC8GraphFilter< TPolygonList, TOutputGraph >, itk::IsoContourDistanceImageFilter< TInputImage, TOutputImage >, itk::BloxBoundaryPointImageToBloxBoundaryProfileImageFilter< TSourceImage >, itk::PointSetToImageFilter< TInputPointSet, TOutputImage >, itk::ChainCodePath< VDimension >, itk::RobustAutomaticThresholdImageFilter< TInputImage, TGradientImage, TOutputImage >, itk::ChainCodePath< 2 >, otb::OGRDataSourceToLabelImageFilter< TOutputImage >, otb::VectorImage< TPixel, VImageDimension >, itk::ImageClassifierBase< TInputImage, TClassifiedImage >, itk::ShapePriorMAPCostFunctionBase< TFeatureImage, TOutputPixel >, itk::ValuedRegionalExtremaImageFilter< TInputImage, TOutputImage, TFunction1, TFunction2 >, otb::VectorImage< TInputPixelType, 2 >, otb::VectorImage< TNeuron::ComponentType, VMapDimension >, otb::VectorImage< TOutputPixelType, 2 >, itk::ValuedRegionalExtremaImageFilter< TInputImage, TOutputImage, std::greater< TInputImage::PixelType >, std::greater< TOutputImage::PixelType > >, itk::ValuedRegionalExtremaImageFilter< TInputImage, TOutputImage, std::less< TInputImage::PixelType >, std::less< TOutputImage::PixelType > >, otb::DSFusionOfClassifiersImageFilter< TInputImage, TOutputImage, TMaskImage >, otb::GDALOverviewsBuilder, otb::CircleGlComponent, otb::VectorDataEditVertexActionHandler< TModel, TView >, otb::VectorDataTranslateGeometryActionHandler< TModel, TView >, itk::MatchCardinalityImageToImageMetric< TFixedImage, TMovingImage >, itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >, itk::ScaleSkewVersor3DTransform< TScalarType >, itk::MovingHistogramImageFilterBase< TInputImage, TOutputImage, TKernel >, otb::ImportImageFilter< TOutputImageType >, otb::MorphologicalPyramidSegmentationFilter< TInputImage, TOutputImage >, otb::NormalizeAttributesLabelMapFilter< TImage >, itk::ShapePriorMAPCostFunction< TFeatureImage, TOutputPixel >, itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >, itk::DoubleThresholdImageFilter< TInputImage, TOutputImage >, itk::SmoothingRecursiveGaussianImageFilter< TInputImage, TOutputImage >, itk::ChainCodePath2D, itk::ImportImageContainer< TElementIdentifier, TElement >, itk::KappaSigmaThresholdImageFilter< TInputImage, TMaskImage, TOutputImage >, itk::LabelShapeOpeningImageFilter< TInputImage >, otb::ConfusionMatrixCalculator< TRefListLabel, TProdListLabel >, otb::SOM< TListSample, TMap, TSOMLearningBehaviorFunctor, TSOMNeighborhoodBehaviorFunctor >, itk::GradientMagnitudeRecursiveGaussianImageFilter< TInputImage, TOutputImage >, itk::QuaternionRigidTransform< TScalarType >, itk::PowellOptimizer, itk::AttributeSelectionLabelMapFilter< TImage, TAttributeAccessor >, itk::LabelMapOverlayImageFilter< TInputImage, TFeatureImage, TOutputImage >, itk::LabelReconstructionByDilationImageFilter< TInputImage >, itk::AttributeSelectionLabelMapFilter< TImage, Functor::LabelLabelObjectAccessor< TImage::LabelObjectType > >, otb::Statistics::ListSampleToBalancedListSampleFilter< TInputSampleList, TLabelSampleList, TOutputSampleList >, itk::BinaryMaskToNarrowBandPointSetFilter< TInputImage, TOutputMesh >, itk::GradientImageFilter< TInputImage, TOperatorValueType, TOutputValueType >, itk::ReconstructionImageFilter< TInputImage, TOutputImage, TCompare >, itk::EquivalencyTable, itk::MutexLock, itk::ObjectFactoryBase, itk::ValarrayImageContainer< TElementIdentifier, TElement >, itk::LabelShapeKeepNObjectsImageFilter< TInputImage >, itk::ReconstructionImageFilter< TInputImage, TOutputImage, std::greater< TOutputImage::PixelType > >, itk::ReconstructionImageFilter< TInputImage, TOutputImage, std::less< TOutputImage::PixelType > >, otb::VectorDataToLabelImageFilter< TVectorData, TOutputImage >, otb::StreamingImageVirtualWriter< TInputImage >, otb::ListSampleGenerator< TImage, TVectorData >, otb::SarBrightnessFunction< TInputImage, TCoordRep >, itk::LaplacianImageFilter< TInputImage, TOutputImage >, itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >, itk::Statistics::KdTreeGenerator< TSample >, itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >, itk::ExponentialDeformationFieldImageFilter< TInputImage, TOutputImage >, itk::MaskedMovingHistogramImageFilter< TInputImage, TMaskImage, TOutputImage, TKernel, THistogram >, itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, std::less< TInputImage::PixelType > >, itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, std::greater< TInputImage::PixelType > >, itk::MaskedMovingHistogramImageFilter< TInputImage, TMaskImage, TOutputImage, TKernel, MaskedRankHistogram< TInputImage::PixelType > >, otb::BSplineInterpolateImageFunction< TImageType, TCoordRep, TCoefficientType >, otb::RGBAPixelConverter< TInternalInputPixelType, itk::RGBPixel< TInternalOutputPixelType > >, otb::ImageToSURFKeyPointSetFilter< TInputImage, TOutputPointSet >, itk::MinMaxCurvatureFlowImageFilter< TInputImage, TOutputImage >, itk::CenteredTransformInitializer< TTransform, TFixedImage, TMovingImage >, itk::Statistics::GaussianGoodnessOfFitComponent< TInputSample >, itk::CenteredTransformInitializer< VersorRigid3DTransform< double >, TFixedImage, TMovingImage >, otb::ConcatenateScalarValueImageFilter< TInputImage, TOutputImage >, otb::PersistentCompareImageFilter< TInputImage >, otb::LeastSquareAffineTransformEstimator< TPoint >, otb::watershed::Relabeler< TScalarType, TImageDimension >, otb::ImageLayerRenderingModel< TOutputImage, TLayer >, otb::MouseClickActionHandler< TModel, TView >, itk::ShapeDetectionLevelSetImageFilter< TInputImage, TFeatureImage, TOutputPixelType >, itk::watershed::Relabeler< TScalarType, TImageDimension >, itk::SimpleFuzzyConnectednessRGBImageFilter< TInputImage, TOutputImage >, itk::BinaryImageToShapeLabelMapFilter< TInputImage, TOutputImage >, itk::FastSymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, otb::watershed::Relabeler< ScalarType, itkGetStaticConstMacro(ImageDimension)>, itk::watershed::Relabeler< ScalarType, itkGetStaticConstMacro(ImageDimension)>, otb::DotProductImageFilter< TInputImage, TOutputImage >, otb::ListSampleToHistogramListGenerator< TListSample, THistogramMeasurement, TFrequencyContainer >, otb::RadiometryHomogenousWithNeighborhoodDataNodeFeatureFunction< TImage, TCoordRep, TPrecision >, otb::WindowedSincInterpolateImageLanczosFunction< TInputImage, TBoundaryCondition, TCoordRep, TInputInterpolator, TOutputInterpolator >, otb::ExtractSegmentsImageFilter< TInputImage, TOutputImage >, otb::GreyLevelCooccurrenceMatrixAdvancedTextureCoefficientsCalculator< THistogram >, otb::GeodesicMorphologyIterativeDecompositionImageFilter< TImage, TStructuringElement >, otb::CrossGlComponent, itk::AnisotropicDiffusionImageFilter< TInputImage, TOutputImage >, itk::Statistics::GoodnessOfFitMixtureModelCostFunction< TInputSample >, itk::DivideByConstantImageFilter< TInputImage, TConstant, TOutputImage >, itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >, itk::StatisticsLabelMapFilter< TImage, TFeatureImage >, otb::VectorData< TPrecision, VDimension, TValuePrecision >, otb::RCC8GraphFileWriter< TInputGraph >, otb::DEMHandler, itk::ImageModelEstimatorBase< TInputImage, TMembershipFunction >, itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >, itk::LevelSetNeighborhoodExtractor< TLevelSet >, itk::Statistics::Sample< TMeasurementVector >, itk::Statistics::Sample< FixedArray< TImage::PixelType, 2 > >, itk::Statistics::Sample< FixedArray< TMeasurement, VMeasurementVectorSize > >, itk::Statistics::Sample< Array< TMeasurement > >, itk::Statistics::Sample< TSample::MeasurementVectorType >, itk::Statistics::Sample< TInputImage::PixelType >, itk::Statistics::Sample< FixedArray< TImage::PixelType, 1 > >, itk::Statistics::Sample< TPointSet::PointType >, itk::Statistics::Sample< ImageJointDomainTraits< TImage >::MeasurementVectorType >, otb::ContinuousMinimumMaximumImageCalculator< TInputImage >, otb::PersistentMinMaxImageFilter< TInputImage >, otb::NCCRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::FastMarchingExtensionImageFilter< TLevelSet, TAuxValue, VAuxDimension, TSpeedImage >, itk::KullbackLeiblerCompareHistogramImageToImageMetric< TFixedImage, TMovingImage >, itk::VectorRescaleIntensityImageFilter< TInputImage, TOutputImage >, itk::RawImageIO< TPixel, VImageDimension >, itk::SimpleFuzzyConnectednessScalarImageFilter< TInputImage, TOutputImage >, itk::VectorLinearInterpolateNearestNeighborExtrapolateImageFunction< TInputImage, TCoordRep >, otb::ImageToHessianDeterminantImageFilter< TInputImage, TOutputImage, TPrecision >, otb::LineDetectorImageFilterBase< TInputImage, TOutputImage, TOutputImageDirection, TInterpolator >, itk::MedialNodePairCorrespondenceProcess< TSourceImage >, itk::ReinitializeLevelSetImageFilter< TLevelSet >, itk::Statistics::RBFNetwork< TMeasurementVector, TTargetVector >, itk::LabelMapToBinaryImageFilter< TInputImage, TOutputImage >, itk::NeuralNetworkFileWriter< TNetwork >, itk::MatchCardinalityImageToImageMetric< TFixedImage, TMovingImage >, itk::ShapeRelabelImageFilter< TInputImage >, otb::WindowedSincInterpolateImageBlackmanFunction< TInputImage, TBoundaryCondition, TCoordRep, TInputInterpolator, TOutputInterpolator >, otb::GradientBoostedTreeMachineLearningModel< TInputValue, TTargetValue >, itk::BinaryMask3DMeshSource< TInputImage, TOutputMesh >, itk::ImplicitManifoldNormalVectorFilter< TInputImage, TSparseOutputImage >, itk::GaussianDerivativeImageFunction< TInputImage, TOutput >, itk::HessianToObjectnessMeasureImageFilter< TInputImage, TOutputImage >, itk::LabelOverlayImageFilter< TInputImage, TLabelImage, TOutputImage >, itk::ImageSpatialObject< TDimension, TPixelType >, itk::Statistics::ScalarImageToGreyLevelRunLengthMatrixGenerator< TImageType, THistogramFrequencyContainer >, itk::ImageSpatialObject< TDimension, unsigned char >, itk::Statistics::ScalarImageToGreyLevelRunLengthMatrixGenerator< TImage, THistogramFrequencyContainer >, otb::CommandLineArgumentParseResult, otb::HistogramOfOrientedGradientCovariantImageFunction< TInputImage, TOutputPrecision, TCoordRep >, otb::NonMaxRemovalByDirectionFilter< TInputModulus, TInputDirection, TOutputImage >, otb::WidgetResizingActionHandler< TModel, TView >, itk::ImagePCADecompositionCalculator< TInputImage, TBasisImage >, itk::ContourDirectedMeanDistanceImageFilter< TInputImage1, TInputImage2 >, itk::ContourMeanDistanceImageFilter< TInputImage1, TInputImage2 >, itk::ImportImageFilter< TPixel, VImageDimension >, itk::NearestNeighborExtrapolateImageFunction< TInputImage, TCoordRep >, itk::Statistics::NeighborhoodSampler< TSample >, itk::SimpleFuzzyConnectednessImageFilterBase< TInputImage, TOutputImage >, itk::WarpHarmonicEnergyCalculator< TInputImage >, itk::LabelAttributeOpeningImageFilter< TInputImage, TLabelObject, TLabelObjectValuator, TAttributeAccessor >, otb::FlusserMomentsImageFunction< TInputImage, TCoordRep >, otb::ImageToPathListAlignFilter< TInputImage, TOutputPath >, otb::LocalHoughFilter< TInputImage >, otb::VectorDataFileReader< TOutputVectorData >, itk::LaplacianSegmentationLevelSetImageFilter< TInputImage, TFeatureImage, TOutputPixelType >, itk::DeformationFieldJacobianDeterminantFilter< TInputImage, TRealType, TOutputImage >, itk::HMaximaImageFilter< TInputImage, TOutputImage >, itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >, itk::ShrinkImageFilter< TInputImage, TOutputImage >, itk::StatisticsImageFilter< TInputImage >, itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >, itk::GrayscaleMorphologicalClosingImageFilter< TInputImage, TOutputImage, TKernel >, itk::GrayscaleMorphologicalOpeningImageFilter< TInputImage, TOutputImage, TKernel >, otb::MorphologicalPyramidSynthesisFilter< TInputImage, TOutputImage >, itk::SobelEdgeDetectionImageFilter< TInputImage, TOutputImage >, itk::OneWayEquivalencyTable, itk::Statistics::ExpectationMaximizationMixtureModelEstimator< TSample >, itk::LabelAttributeKeepNObjectsImageFilter< TInputImage, TLabelObject, TLabelObjectValuator, TAttributeAccessor >, otb::ForwardFourierMellinTransformImageFilter< TPixel, TInterpol, Dimension >, otb::FourierMellinDescriptorsImageFunction< TInputImage, TCoordRep >, otb::ImageSeriesFileReader< TImage, TInternalImage >, otb::Statistics::ModelComponentBase< TSample >, otb::SubsampleImageFilter< TInputImage, TOutputImage, TDirectionOfTransformation >, otb::MultiChannelRadiometricImageFilter< TInputImage, TOutputImage, TFunction >, otb::ChangeExtractRegionActionHandler< TModel, TView >, otb::DragFullWindowActionHandler< TModel, TView >, itk::LevelSetVelocityNeighborhoodExtractor< TLevelSet, TAuxValue, VAuxDimension >, itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >, itk::SymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::BinaryErodeImageFilter< TInputImage, TOutputImage, TKernel >, itk::HardConnectedComponentImageFilter< TInputImage, TOutputImage >, itk::Hessian3DToVesselnessMeasureImageFilter< TPixel >, itk::HMinimaImageFilter< TInputImage, TOutputImage >, itk::MorphologicalGradientImageFilter< TInputImage, TOutputImage, TKernel >, itk::PasteImageFilter< TInputImage, TSourceImage, TOutputImage >, itk::ScaleVersor3DTransform< TScalarType >, itk::AddConstantToImageFilter< TInputImage, TConstant, TOutputImage >, itk::MultiplyByConstantImageFilter< TInputImage, TConstant, TOutputImage >, itk::RegionalMaximaImageFilter< TInputImage, TOutputImage >, itk::ShapeLabelMapFilter< TImage, TLabelImage >, itk::SubtractConstantFromImageFilter< TInputImage, TConstant, TOutputImage >, itk::GaussianSpatialObject< TDimension >, itk::ShapeLabelMapFilter< TImage, Image< TImage::PixelType,::itk::GetImageDimension< TImage >::ImageDimension > >, otb::ImageRegionSquareTileSplitter< VImageDimension >, otb::watershed::BoundaryResolver< TPixelType, TDimension >, otb::SVMMachineLearningModel< TInputValue, TTargetValue >, itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, itk::watershed::BoundaryResolver< TPixelType, TDimension >, itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >, itk::ExtractOrthogonalSwath2DImageFilter< TImage >, itk::GaussianImageSource< TOutputImage >, itk::RecursiveGaussianImageFilter< TInputImage, TOutputImage >, itk::ZeroCrossingImageFilter< TInputImage, TOutputImage >, itk::ImageToImageFilter< TInputImage, TOutputImage >, itk::IPLCommonImageIO, itk::AmoebaOptimizer, itk::ComplexBSplineInterpolateImageFunction< TImageType, TCoordRep, TCoefficientType >, itk::GridImageSource< TOutputImage >, itk::ImageToImageFilter< TInputImage, TOutputModulus >, itk::ImageToImageFilter< TInputImageHH, TOutputImage >, itk::ImageToImageFilter< TVImage, TVImage >, itk::ImageToImageFilter< VectorImage< TInputPixelType, 2 >, VectorImage< TOutputPixelType, 2 > >, itk::ImageToImageFilter< TInputLabelImage, TOutputLabelImage >, itk::ImageToImageFilter< TSpeedImage, TLevelSet >, itk::ImageToImageFilter< TDeformationField, TDeformationField >, itk::ImageToImageFilter< TLabelImage, TOutputImage >, itk::ImageToImageFilter< TInputImage1, Functor::MakeJoin< TInputImage1, TInputImage2 >::ImageType >, itk::ImageToImageFilter< TInputImage, TInputImage >, itk::ImageToImageFilter< TInputImage, TSparseOutputImage >, itk::ImageToImageFilter< TInputImage, T0utputCorrelation >, itk::ImageToImageFilter< Image< TReferenceImagePixelType, 3 >, Image< DiffusionTensor3D< TTensorPixelType >, 3 > >, itk::ImageToImageFilter< TInputImage, Image< CovariantVector< TDataType,::itk::GetImageDimension< TInputImage >::ImageDimension >,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, BloxBoundaryPointImage< ::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, TDisparityImage >, itk::ImageToImageFilter< Image< TPixel, Dimension >, itk::Image< std::complex< TPixel >, Dimension > >, itk::ImageToImageFilter< TInputImageRealPart, TOutputImage >, itk::ImageToImageFilter< Image< SymmetricSecondRankTensor< double, 3 >, 3 >, Image< TPixel, 3 > >, itk::ImageToImageFilter< TInputImage, TLabelImage >, itk::ImageToImageFilter< Image< TInputPixel1, NDimension >, Image< std::complex< TOutputPixel >, NDimension > >, itk::ImageToImageFilter< Image< TInputPixelType, 3 >, Image< TOutputPixelType, 3 > >, itk::ImageToImageFilter< TInputImage, Image< unsigned long,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< Image< std::complex< double >, NDimension >, Image< std::complex< double >, NDimension > >, itk::ImageToImageFilter< TLabelMap, TLabelMap >, itk::ImageToImageFilter< TSourceImage, BloxBoundaryProfileImage< ::itk::GetImageDimension< TSourceImage >::ImageDimension > >, itk::ImageToImageFilter< TInputMap, TOutputImage >, itk::ImageToImageFilter< TDisparityImage, TDisparityImage >, itk::ImageToImageFilter< TInputImage1, TOutputImage >, itk::ImageToImageFilter< FeatureImageType, ImageType >, itk::ImageToImageFilter< BloxBoundaryPointImage< dim >, BloxCoreAtomImage< dim > >, itk::ImageToImageFilter< Image< std::complex< TPixel >, VDimension >, Image< TPixel, VDimension > >, itk::ImageToImageFilter< TInputImageR, TOutputImage >, itk::ImageToImageFilter< TImageType, TImageType >, itk::ImageToImageFilter< TInputImage, otb::Image< TInputImage::PixelType, 1 > >, itk::ImageToImageFilter< TInputImage, VectorImage< TProbabilityPrecisionType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputMultiSpectralImage, TOutputImage >, itk::ImageToImageFilter< TDisparityImage, TOutputImage >, itk::ImageToImageFilter< TInputImage, TOutputVectorImage >, itk::ImageToImageFilter< TLabelImage, TIntensityImage >, itk::ImageToImageFilter< TInputImage, Image< CovariantVector< TOutputValueType,::itk::GetImageDimension< TInputImage >::ImageDimension >,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< LabelMapWithAdjacency< TLabelObject >, LabelMapWithAdjacency< TLabelObject > >, itk::ImageToImageFilter< TInputImage, TEigenValueImage >, itk::ImageToImageFilter< Image< std::complex< float >, NDimension >, Image< std::complex< float >, NDimension > >, itk::ImageToImageFilter< TInputVectorImage, Image< TLabelsType,::itk::GetImageDimension< TInputVectorImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImage, TClassifiedImage >, itk::ImageToImageFilter< TInputImage1, TInputImage1 >, itk::ImageToImageFilter< TFeatureImage, TOutputImage >, itk::ImageToImageFilter< TInputImage, TOutputLabelImage >, itk::ImageToImageFilter< ImageType, ImageType >, itk::ImageToImageFilter< TInputImage, otb::VectorImage< unsigned char, 2 > >, itk::ImageToImageFilter< Image< TPixel, VDimension >, Image< std::complex< TPixel >, VDimension > >, itk::ImageToImageFilter< TVInputImage, TLabelImage >, itk::ImageToImageFilter< TInputModulus, TOutputImage >, itk::ImageToImageFilter< TInputImage, TOutputHeight >, itk::ImageToImageFilter< TXsImageType, TOutputImageType >, itk::ImageToImageFilter< TInputImage, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TInputImageG, TOutputImage >, itk::ImageToImageFilter< Image< std::complex< TPixel >, NDimension >, Image< std::complex< TPixel >, NDimension > >, itk::ImageToImageFilter< TLevelSet, TLevelSet >, itk::ImageToImageFilter< TInputImage, itk::Image< unsigned long,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TMovingImage, TFixedImage >, itk::ImageToImageFilter< TInputLabelMap, TOutputImage >, itk::ImageToImageFilter< TInputImage, TOutputDisparityImage >, itk::ImageToImageFilter< Image< TInputPixel, 2 >, Image< TOutputPixel, 2 > >, itk::ImageToImageFilter< TImage, TImage >, itk::ImageToImageFilter< TInpuImage, TOutputImage >, itk::ImageToImageFilter< TInputImage, TOuputImage >, itk::ImageToImageFilter< TInputImageType, TSparseOutputImageType >, itk::ImageToImageFilter< TVectorImage, TVectorImage >, itk::ImageToImageFilter< TInputImage, VectorImage< TInputImage::InternalPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::ImageToImageFilter< TDeformationField, TOutputImage >, itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >, itk::ImageToImageFilter< TImage, TImage >, itk::ImageToImageFilter< ImageType, ImageType >, itk::ImageToImageFilter< TInputVectorImage, TOutputImage >, itk::ImageToImageFilter< TInputLabelMap, TInputLabelMap >, itk::ImageToImageFilter< TInputVectorImage, TInputVectorImage >, itk::ImageToImageFilter< VectorImage< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >, itk::ImageToImageFilter< TInputImageImaginaryPart, TOutputImage >, itk::ImageToImageFilter< TDisparityImage, TOutputDEMImage >, otb::InnerProductPCAImageFilter< TInputImage, TOutputImage >, otb::WindowedSincInterpolateImageHammingFunction< TInputImage, TBoundaryCondition, TCoordRep, TInputInterpolator, TOutputInterpolator >, otb::HuMomentsImageFunction< TInputImage, TCoordRep >, otb::LocalHistogramImageFunction< TInputImage, TCoordRep >, otb::SarParametricMapFunction< TInputImage, TCoordRep >, otb::RCC8Graph< TVertex >, otb::BinaryErodeImageFilter< TInputImage, TOutputImage, TKernel >, itk::DemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::DirectedHausdorffDistanceImageFilter< TInputImage1, TInputImage2 >, itk::GrayscaleMorphologicalOpeningImageFilter< TInputImage, TOutputImage, TKernel >, itk::Similarity3DTransform< TScalarType >, itk::TIFFImageIO, itk::InPlaceLabelMapFilter< TInputImage >, itk::InPlaceLabelMapFilter< TImage >, itk::InPlaceLabelMapFilter< TLabelMap >, itk::InPlaceLabelMapFilter< TInputLabelMap >, otb::BandMathImageFilter< TImage >, otb::WindowedSincInterpolateImageCosineFunction< TInputImage, TBoundaryCondition, TCoordRep, TInputInterpolator, TOutputInterpolator >, otb::WindowedSincInterpolateImageGaussianFunction< TInputImage, TBoundaryCondition, TCoordRep, TInputInterpolator, TOutputInterpolator >, otb::WindowedSincInterpolateImageWelchFunction< TInputImage, TBoundaryCondition, TCoordRep, TInputInterpolator, TOutputInterpolator >, otb::TileMapImageIO, otb::AeronetFileReader, otb::SatelliteRSR< TPrecision, TValuePrecision >, otb::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >, otb::ChangeScaledExtractRegionActionHandler< TModel, TView >, otb::ImageView< TViewerModel >, otb::VectorDataGlComponent< TVectorData >, itk::ImageGaussianModelEstimator< TInputImage, TMembershipFunction, TTrainingImage >, itk::MRASlabIdentifier< TInputImage >, itk::RegionGrowImageFilter< TInputImage, TOutputImage >, itk::AdaptiveHistogramEqualizationImageFilter< TImageType >, itk::GrayscaleGrindPeakImageFilter< TInputImage, TOutputImage >, itk::GrayscaleMorphologicalClosingImageFilter< TInputImage, TOutputImage, TKernel >, itk::BloxCoreAtomImage< NDimension >, itk::MeshSource< TOutputMesh >, itk::ObjectStore< TObjectType >, itk::GradientDescentOptimizer, itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >, itk::Statistics::MixtureModelComponentBase< TSample >, itk::MorphologicalGradientImageFilter< TInputImage, TOutputImage, TKernel >, itk::SimpleContourExtractorImageFilter< TInputImage, TOutputImage >, itk::RegionalMinimaImageFilter< TInputImage, TOutputImage >, itk::MeshSource< TOutputPointSet >, itk::MeshSource< TOutput >, itk::MeshSource< VoronoiDiagram2D< TCoordType > >, otb::LabelImageRegionMergingFilter< TInputLabelImage, TInputSpectralImage, TOutputLabelImage, TOutputClusteredImage >, otb::PointSetSource< TOutputPointSet >, otb::MultiChannelRAndGAndNIRIndexImageFilter< TInputImage, TOutputImage, TFunction >, otb::BoostMachineLearningModel< TInputValue, TTargetValue >, itk::BinaryPruningImageFilter< TInputImage, TOutputImage >, itk::ApproximateSignedDistanceMapImageFilter< TInputImage, TOutputImage >, itk::GradientMagnitudeImageFilter< TInputImage, TOutputImage >, itk::HausdorffDistanceImageFilter< TInputImage1, TInputImage2 >, itk::OpeningByReconstructionImageFilter< TInputImage, TOutputImage, TKernel >, itk::CenteredEuler3DTransform< TScalarType >, itk::InterpolateImageFunction< TInputImage, TCoordRep >, itk::PolyLineParametricPath< VDimension >, itk::Statistics::ImageToCooccurrenceListAdaptor< TImage >, itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, itk::BinaryNotImageFilter< TImage >, otb::PointSetSource< TPointSet >, itk::InterpolateImageFunction< TImageType, TCoordRep >, itk::InterpolateImageFunction< otb::VectorImage< TPixel, VImageDimension >, TCoordRep >, otb::LabelImageRegionPruningFilter< TInputLabelImage, TInputSpectralImage, TOutputLabelImage, TOutputClusteredImage >, otb::LabelObjectOpeningMuParserFilter< TImage, TFunction >, otb::ImageRegionTileMapSplitter< VImageDimension >, otb::PersistentImageToOGRDataFilter< TImage >, otb::JPEG2000ImageIO, otb::MultiChannelRAndBAndNIRIndexImageFilter< TInputImage, TOutputImage, TFunction >, itk::KappaStatisticImageToImageMetric< TFixedImage, TMovingImage >, itk::BinaryMedianImageFilter< TInputImage, TOutputImage >, itk::ExtractImageFilter< TInputImage, TOutputImage >, itk::SimilarityIndexImageFilter< TInputImage1, TInputImage2 >, otb::GeodesicMorphologyLevelingFilter< TInputImage, TInputMaps, TOutputImage >, itk::TileImageFilter< TInputImage, TOutputImage >, itk::VotingBinaryImageFilter< TInputImage, TOutputImage >, itk::Euler2DTransform< TScalarType >, itk::ParametricPath< VDimension >, itk::SparseImage< TNode, VImageDimension >, itk::Statistics::MultilayerNeuralNetworkBase< TMeasurementVector, TTargetVector, TLearningLayer >, itk::Statistics::WeightSetBase< TMeasurementVector, TTargetVector >, itk::Statistics::SampleClassifier< TSample >, itk::LabelImageToShapeLabelMapFilter< TInputImage, TOutputImage >, itk::NeuralNetworkFileReader< TNetwork >, itk::BlobSpatialObject< TDimension >, itk::MeshSpatialObject< TMesh >, itk::ParametricPath< 2 >, itk::Statistics::MultilayerNeuralNetworkBase< TMeasurementVector, TTargetVector, BackPropagationLayer< TMeasurementVector, TTargetVector > >, itk::Statistics::SampleClassifier< itk::Statistics::ListSample< TInputImage::PixelType > >, otb::MaskMuParserFilter< TInputImage, TOutputImage, TFunction >, otb::PointSetToDeformationFieldGenerator< TPointSet, TDeformationField >, itk::MedialNodeTripletCorrespondenceProcess< TSourceImage >, itk::ClosingByReconstructionImageFilter< TInputImage, TOutputImage, TKernel >, itk::PolylineMaskImageFilter< TInputImage, TPolyline, TVector, TOutputImage >, itk::Euler3DTransform< TScalarType >, itk::SumOfSquaresImageFunction< TInputImage, TCoordRep >, itk::Statistics::MeanShiftModeCacheMethod< TMeasurementVector >, otb::PeriodicSOM< TListSample, TMap, TSOMLearningBehaviorFunctor, TSOMNeighborhoodBehaviorFunctor >, otb::MorphologicalPyramidAnalysisFilter< TInputImage, TOutputImage, TMorphoFilter >, otb::MorphologicalPyramid::Segmenter< TInputImage, TOutputImage >, otb::watershed::EquivalenceRelabeler< TScalarType, TImageDimension >, itk::GradientVectorFlowImageFilter< TInputImage, TOutputImage, TInternalPixel >, itk::watershed::EquivalenceRelabeler< TScalarType, TImageDimension >, itk::DerivativeImageFilter< TInputImage, TOutputImage >, itk::StreamingImageFilter< TInputImage, TOutputImage >, itk::GridForwardWarpImageFilter< TDeformationField, TOutputImage >, otb::PersistentInnerProductVectorImageFilter< TInputImage >, otb::GISTable< TConnectionImplementation, TPrecision, TSpatialDimension >, otb::PostGISTable< TConnectionImplementation, TPrecision, TSpatialDimension >, otb::ComplexMomentsImageFunction< TInputImage, TCoordRep >, otb::VCAImageFilter< TVectorImage >, itk::TriangleMeshToSimplexMeshFilter< TInputMesh, TOutputMesh >, itk::FourierSeriesPath< VDimension >, itk::ExhaustiveOptimizer, itk::Statistics::ListSampleBase< TMeasurementVector >, itk::Statistics::ScalarImageToListAdaptor< TImage >, itk::LandmarkSpatialObject< TDimension >, itk::SceneSpatialObject< TSpaceDimension >, itk::SurfaceSpatialObject< TDimension >, itk::Statistics::ListSampleBase< FixedArray< TImage::PixelType, 2 > >, itk::Statistics::ListSampleBase< TInputImage::PixelType >, itk::Statistics::ListSampleBase< FixedArray< TImage::PixelType, 1 > >, itk::Statistics::ListSampleBase< TPointSet::PointType >, itk::Statistics::ListSampleBase< ImageJointDomainTraits< TImage >::MeasurementVectorType >, otb::PipelineMemoryPrintCalculator, otb::AddCarvingPathFilter< TInputImage, TInputPath, TOutputImage >, otb::RemoveCarvingPathFilter< TInputImage, TInputPath, TOutputImage >, otb::TextureImageFunction< TInputImage, TFunctor, TCoordRep >, itk::BinaryMinMaxCurvatureFlowImageFilter< TInputImage, TOutputImage >, itk::OtsuMultipleThresholdsImageFilter< TInputImage, TOutputImage >, itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >, itk::HConcaveImageFilter< TInputImage, TOutputImage >, itk::HConvexImageFilter< TInputImage, TOutputImage >, itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >, itk::InPlaceImageFilter< TInputImage, TOutputImage >, itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >, itk::Functor::ColormapFunctor< TScalar, TRGBPixel >, itk::AttributeRelabelImageFilter< TInputImage, TLabelObject, TLabelObjectValuator, TAttributeAccessor >, itk::InPlaceImageFilter< TInputImage, TOutputImage >, itk::InPlaceImageFilter< TInputImageG, TOutputImage >, itk::InPlaceImageFilter< TDeformationField, TDeformationField >, itk::InPlaceImageFilter< TInputImage1, Functor::MakeJoin< TInputImage1, TInputImage2 >::ImageType >, itk::InPlaceImageFilter< TInputImage, TSparseOutputImage >, itk::InPlaceImageFilter< TInputImage >, itk::InPlaceImageFilter< TInputImageImaginaryPart, TOutputImage >, itk::InPlaceImageFilter< TImage >, itk::InPlaceImageFilter< TInputImage1, TOutputImage >, itk::InPlaceImageFilter< Image< TInputPixel1, NDimension >, Image< std::complex< TOutputPixel >, NDimension > >, itk::InPlaceImageFilter< TInputImage, TOutputVectorImage >, itk::InPlaceImageFilter< TInputMultiSpectralImage, TOutputImage >, itk::InPlaceImageFilter< TFeatureImage, TOutputImage >, itk::InPlaceImageFilter< TInputVectorImage, TOutputImage >, itk::InPlaceImageFilter< TInputImage, Image< TOutputPixelType,::itk::GetImageDimension< TInputImage >::ImageDimension > >, itk::InPlaceImageFilter< TInputImageHH, TOutputImage >, itk::InPlaceImageFilter< TLabelImage, TOutputImage >, itk::InPlaceImageFilter< TInputImageR, TOutputImage >, itk::InPlaceImageFilter< TInputImageRealPart, TOutputImage >, itk::InPlaceImageFilter< FeatureImageType, ImageType >, itk::InPlaceImageFilter< TImage, TImage >, itk::InPlaceImageFilter< TInputImageType, TSparseOutputImageType >, otb::LabelMapToGISTableFilter< TLabelMap, TGISTable >, itk::GrayscaleConnectedOpeningImageFilter< TInputImage, TOutputImage >, itk::PadImageFilter< TInputImage, TOutputImage >, itk::VectorMeanImageFunction< TInputImage, TCoordRep >, itk::VersorRigid3DTransform< TScalarType >, itk::RegularExpressionSeriesFileNames, itk::Statistics::GaussianDensityFunction< TMeasurementVector >, itk::Statistics::SampleToHistogramProjectionFilter< TInputSample, THistogramMeasurement >, itk::LabelPerimeterEstimationCalculator< TInputImage >, otb::PersistentStreamingStatisticsMapFromLabelImageFilter< TInputVectorImage, TLabelImage >, otb::VariableLengthVectorConverter< itk::VariableLengthVector< TInternalInputType >, TPrecisionType >, otb::LineSpatialObjectListToRightAnglePointSetFilter< TImage, TLinesList, TPointSet >, otb::VectorizationPathListFilter< TInputModulus, TInputDirection, TOutputPath >, otb::CoordinateToName, otb::PhysicalToRPCSensorModelImageFilter< TImage >, otb::AtmosphericRadiativeTermsSingleChannel, itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >, itk::GrayscaleConnectedClosingImageFilter< TInputImage, TOutputImage >, itk::MedianImageFilter< TInputImage, TOutputImage >, itk::BloxImage< TBloxPixelType, TImageDimension >, itk::LightProcessObject, itk::BloxImage< BloxCoreAtomPixel< NDimension >, NDimension >, itk::BloxImage< BloxBoundaryProfilePixel< TImageDimension >, TImageDimension >, itk::BloxImage< BloxBoundaryPointPixel< TImageDimension >, TImageDimension >, otb::NDVIDataNodeFeatureFunction< TImage, TCoordRep, TPrecision >, otb::LineSpatialObject< VDimension >, otb::VectorDataToVectorDataFilter< TInputVectorData, TOutputVectorData >, otb::VectorDataToRoadDescriptionFilter< TVectorData, TOpticalImage >, otb::LabelMapToSimulatedImageFilter< TInputLabelMap, TSimuStep1, TSimuStep2, TOutputImage >, itk::AccumulateImageFilter< TInputImage, TOutputImage >, itk::InterpolateImageFilter< TInputImage, TOutputImage >, itk::IterativeInverseDeformationFieldImageFilter< TInputImage, TOutputImage >, itk::NoiseImageFilter< TInputImage, TOutputImage >, itk::ImageRegionSplitter< VImageDimension >, itk::OrthogonallyCorrected2DParametricPath, itk::TreeContainer< TValueType >, itk::Statistics::MeanShiftModeSeekerBase< TSample >, itk::Statistics::NormalVariateGenerator, itk::RegionFromReferenceLabelMapFilter< TInputImage >, itk::LineSpatialObject< TDimension >, itk::BinaryReconstructionLabelMapFilter< TImage, TMarkerImage, TAttributeAccessor >, otb::VectorDataToVectorDataFilter< TInputVectorData, TInputVectorData >, otb::VectorDataToVectorDataFilter< TVectorData, TVectorData >, itk::ImageRegionSplitter< 2 >, itk::TreeContainer< itk::SpatialObject< TDimension > * >, itk::LineSpatialObject< 2 >, otb::UnaryImageFunctorWithVectorImageFilter< TInputImage, TOutputImage, TFunction >, otb::LmvmPanSharpeningFusionImageFilter< TPanImageType, TXsImageType, TOutputImageType, TInternalPrecision >, itk::AnisotropicFourthOrderLevelSetImageFilter< TInputImage, TOutputImage >, itk::WhiteTopHatImageFilter< TInputImage, TOutputImage, TKernel >, itk::CovarianceImageFunction< TInputImage, TCoordRep >, itk::ScatterMatrixImageFunction< TInputImage, TCoordRep >, otb::UnaryImageFunctorWithVectorImageFilter< TInputImage, TOutputImage, Functor::ReflectanceToSurfaceReflectanceImageFunctor< TInputImage::InternalPixelType, TOutputImage::InternalPixelType > >, otb::UnaryImageFunctorWithVectorImageFilter< TInputImage, TOutputImage, Functor::ImageToLuminanceImageFunctor< TInputImage::InternalPixelType, TOutputImage::InternalPixelType > >, otb::UnaryImageFunctorWithVectorImageFilter< TInputImage, TOutputImage, Functor::ImageToReflectanceImageFunctor< TInputImage::InternalPixelType, TOutputImage::InternalPixelType > >, otb::UnaryImageFunctorWithVectorImageFilter< TInputImage, TOutputImage, Functor::LuminanceToReflectanceImageFunctor< TInputImage::InternalPixelType, TOutputImage::InternalPixelType > >, otb::GaborFilterGenerator< TPrecision >, otb::PersistentVectorImageToMatrixFilter< TInputImage >, otb::GenericInterpolateImageFunction< TInputImage, TFunction, TBoundaryCondition, TCoordRep >, otb::LineRatioDetectorImageFilter< TInputImage, TOutputImage, TOutputImageDirection, TInterpolator >, otb::SailModel, otb::SpatialisationFilter< TLabelMap >, itk::OtsuThresholdImageFilter< TInputImage, TOutputImage >, itk::SpatialObjectToImageStatisticsCalculator< TInputImage, TInputSpatialObject, TSampleDimension >, itk::ConicShellInteriorExteriorSpatialFunction< VDimension, TInput >, itk::DenseFiniteDifferenceImageFilter< TInputImage, TOutputImage >, itk::FiniteDifferenceSparseImageFilter< TInputImageType, TSparseOutputImageType >, itk::NeighborhoodOperatorImageFunction< TInputImage, TOutput >, otb::GenericInterpolateImageFunction< TInputImage, Function::WelchWindowFunction< TInputInterpolator, TOutputInterpolator >, TBoundaryCondition, TCoordRep >, otb::GenericInterpolateImageFunction< TInputImage, Function::CosineWindowFunction< TInputInterpolator, TOutputInterpolator >, TBoundaryCondition, TCoordRep >, otb::GenericInterpolateImageFunction< TInputImage, TWindowFunction, TBoundaryCondition, TCoordRep >, otb::GenericInterpolateImageFunction< TInputImage, Function::GaussianWindowFunction< TInputInterpolator, TOutputInterpolator >, TBoundaryCondition, TCoordRep >, otb::GenericInterpolateImageFunction< TInputImage, Function::ProlateFunction< TInputInterpolator, TOutputInterpolator >, TBoundaryCondition, TCoordRep >, otb::GenericInterpolateImageFunction< TInputImage, Function::BlackmanWindowFunction< TInputInterpolator, TOutputInterpolator >, TBoundaryCondition, TCoordRep >, otb::GenericInterpolateImageFunction< TInputImage, Function::LanczosWindowFunction< TInputInterpolator, TOutputInterpolator >, TBoundaryCondition, TCoordRep >, otb::GenericInterpolateImageFunction< TInputImage, Function::HammingWindowFunction< TInputInterpolator, TOutputInterpolator >, TBoundaryCondition, TCoordRep >, itk::DenseFiniteDifferenceImageFilter< TDeformationField, TDeformationField >, itk::FiniteDifferenceSparseImageFilter< TInputImage, TSparseOutputImage >, otb::ListSampleToVariableDimensionHistogramGenerator< TListSample, THistogramMeasurement, TFrequencyContainer >, otb::MultiChannelExtractROI< TInputPixelType, TOutputPixelType >, otb::PathListToHistogramGenerator< TPath, TFunction >, otb::BSQImageIO, otb::RADImageIO, otb::LabeledSampleLocalizationGenerator< TVectorData >, otb::ProSailParameters, itk::BloxBoundaryProfileImageToBloxCoreAtomImageFilter< TInputImage, TOutputImage, TSourceImage >, itk::ShiftScaleInPlaceImageFilter< TInputImage >, itk::DirectFourierReconstructionImageToImageFilter< TInputPixelType, TOutputPixelType >, itk::AdaptiveHistogramEqualizationImageFilter< TImageType >, itk::AttributeOpeningLabelMapFilter< TImage, TAttributeAccessor >, itk::AttributeOpeningLabelMapFilter< TImage, Functor::AttributesMapLabelObjectAccessor< TImage::LabelObjectType > >, otb::LogPolarTransform< TScalarType >, otb::RadiometricMomentsImageFunction< TInputImage, TCoordRep >, otb::KMeansImageClassificationFilter< TInputImage, TOutputImage, VMaxSampleDimension, TMaskImage >, itk::MeanImageFunction< TInputImage, TCoordRep >, itk::Path< TInput, TOutput, VDimension >, itk::Statistics::OneHiddenLayerBackPropagationNeuralNetwork< TMeasurementVector, TTargetVector >, itk::Statistics::TwoHiddenLayerBackPropagationNeuralNetwork< TMeasurementVector, TTargetVector >, itk::BSplineDeformableTransformInitializer< TTransform, TImage >, itk::Path< double, ContinuousIndex< double, VDimension >, VDimension >, itk::Path< unsigned int, Offset< VDimension >, VDimension >, otb::BCOInterpolateImageFunctionBase< TInputImage, TCoordRep >, otb::InverseLogPolarTransform< TScalarType >, otb::SpectralAngleDataNodeFeatureFunction< TImage, TCoordRep, TPrecision >, otb::DrawPathListFilter< TInputImage, TInputPath, TOutputImage >, otb::LUMImageIO, otb::MWImageIO, otb::ONERAImageIO, otb::MultiChannelGAndRIndexImageFilter< TInputImage, TOutputImage, TFunction >, otb::MultiChannelRAndNIRIndexImageFilter< TInputImage, TOutputImage, TFunction >, otb::HistogramAndTransferFunctionWidget< THistogram, TPixel >, itk::VoronoiDiagram2DGenerator< TCoordType >, itk::BloxBoundaryPointToCoreAtomImageFilter< dim >, itk::FlipImageFilter< TImage >, itk::ScaleLogarithmicTransform< TScalarType, NDimensions >, itk::Statistics::MahalanobisDistanceMembershipFunction< TVector >, itk::MaskedRankImageFilter< TInputImage, TMaskImage, TOutputImage, TKernel >, itk::RankImageFilter< TInputImage, TOutputImage, TKernel >, otb::BCOInterpolateImageFunctionBase< otb::VectorImage< TPixel, VImageDimension >, TCoordRep >, otb::ImageFunctionAdaptor< TInternalImageFunctionType, TOutputPrecision >, otb::GenericMapProjection< TDirectionOfMapping, TScalarType, NInputDimensions, NOutputDimensions >, otb::SinclairImageFilter< TInputImageHH, TInputImageHV, TInputImageVH, TInputImageVV, TOutputImage, TFunction >, itk::EuclideanDistancePointMetric< TFixedPointSet, TMovingPointSet, TDistanceMap >, itk::InvertIntensityImageFilter< TInputImage, TOutputImage >, itk::MeanImageFilter< TInputImage, TOutputImage >, itk::MinimumMaximumImageFilter< TInputImage >, itk::PathToImageFilter< TInputPath, TOutputImage >, itk::RandomImageSource< TOutputImage >, itk::Statistics::ImageToHistogramGenerator< TImageType >, otb::GenericMapProjection< TTransform >, otb::EdgeDensityImageFilter< TInputImage, TOutputImage, TEdgeDetector, TDensityCount >, otb::EdgeDetectorImageFilter< TInputImage, TOutputImage, TEdgeDetection >, otb::MatrixImageFilter< TInputImage, TOutputImage, TMatrix >, otb::PolyLineParametricPathWithValue< TValue, VDimension >, otb::SOMImageClassificationFilter< TInputImage, TOutputImage, TSOMMap, TMaskImage >, otb::SinclairReciprocalImageFilter< TInputImageHH, TInputImageHV_VH, TInputImageVV, TOutputImage, TFunction >, otb::ReduceSpectralResponseClassifierRAndNIR< TReduceSpectralResponse, TFunction >, otb::ImageWidgetController, otb::LayerBasedModel< TLayer >, itk::ProjectionImageFilter< TInputImage, TOutputImage, TAccumulator >, itk::ThresholdImageFilter< TImage >, itk::VarianceImageFunction< TInputImage, TCoordRep >, itk::NiftiImageIO, itk::CropLabelMapFilter< TInputImage >, itk::PadLabelMapFilter< TInputImage >, itk::BinaryGrindPeakImageFilter< TInputImage >, otb::PolyLineParametricPathWithValue< TValue, 2 >, otb::LayerBasedModel< ImageLayerBase< TOutputImage > >, itk::ProjectionImageFilter< TInputImage, TOutputImage, Function::BinaryThresholdAccumulator< TInputImage::PixelType, TOutputImage::PixelType > >, itk::ProjectionImageFilter< TInputImage, TOutputImage, Function::MeanAccumulator< TInputImage::PixelType, TAccumulate > >, itk::ProjectionImageFilter< TInputImage, TOutputImage, Function::MinimumAccumulator< TInputImage::PixelType > >, itk::ProjectionImageFilter< TInputImage, TOutputImage, Function::MaximumAccumulator< TInputImage::PixelType > >, itk::ProjectionImageFilter< TInputImage, TOutputImage, Function::BinaryAccumulator< TInputImage::PixelType, TOutputImage::PixelType > >, itk::ProjectionImageFilter< TInputImage, TOutputImage, Function::SumAccumulator< TInputImage::PixelType, TOutputImage::PixelType > >, itk::ProjectionImageFilter< TInputImage, TOutputImage, Function::StandardDeviationAccumulator< TInputImage::PixelType, TAccumulate > >, itk::ProjectionImageFilter< TInputImage, TOutputImage, Function::MedianAccumulator< TInputImage::PixelType > >, otb::NormalizeInnerProductPCAImageFilter< TInputImage, TOutputImage >, otb::ImageRegionNonUniformMultidimensionalSplitter< VImageDimension >, otb::VectorDataToGISTableFilter< TVectorData, TGISTable >, otb::RegionImageToRectangularPathListFilter< TInputImage, TOutputPath >, otb::OGRVectorDataIO, otb::PolygonToPolygonRCC8Calculator< TInputPolygon >, otb::LibSVMMachineLearningModel< TInputValue, TTargetValue >, itk::RecursiveMultiResolutionPyramidImageFilter< TInputImage, TOutputImage >, itk::ExtrapolateImageFunction< TInputImage, TCoordRep >, itk::NeighborhoodBinaryThresholdImageFunction< TInputImage, TCoordRep >, itk::Brains2MaskImageIO, itk::SymmetricEigenSystem< TMatrixElement, VNumberOfRows >, itk::ConformalFlatteningMeshFilter< TInputMesh, TOutputMesh >, itk::EllipseSpatialObject< TDimension >, otb::BinaryImageDensityFunction< TInputImage, TCoordRep >, otb::LabelizeConfidenceConnectedImageFilter< TInputImage, TOutputImage >, otb::GISTableToLabelMapFilter< TGISTable, TLabelMap >, otb::HarrisImageFilter< TInputImage, TOutputImage >, otb::RealMomentsImageFunction< TInputImage, TCoordRep >, otb::RemoveIsolatedByDirectionFilter< TInputModulus, TInputDirection, TOutputImage >, otb::KMLVectorDataIO, otb::LabelMapFeaturesFunctorImageFilter< TImage, TFunctor >, otb::LabelMapToVectorDataFilter< TLabelMap, TVectorData, TFieldsFunctor >, otb::ImageToGrayscaleAnaglyphImageFilter< TInputImage1, TInputImage2, TOutputImage >, itk::ErodeObjectMorphologyImageFilter< TInputImage, TOutputImage, TKernel >, itk::BSplineInterpolationWeightFunction< TCoordRep, VSpaceDimension, VSplineOrder >, itk::ArchetypeSeriesFileNames, itk::GaborImageSource< TOutputImage >, otb::LabelMapFeaturesFunctorImageFilter< TImage, Functor::StatisticsAttributesLabelObjectFunctor< TImage::LabelObjectType, TFeatureImage > >, otb::LabelMapFeaturesFunctorImageFilter< TImage, Functor::ShapeAttributesLabelObjectFunctor< TImage::LabelObjectType, TLabelImage > >, otb::LabelMapFeaturesFunctorImageFilter< TImage, Functor::NormalizeAttributesLabelObjectFunctor< TImage::LabelObjectType > >, otb::LabelMapFeaturesFunctorImageFilter< TImage, Functor::BandStatsAttributesLabelObjectFunctor< TImage::LabelObjectType, otb::Image< double, 2 > > >, otb::FrostImageFilter< TInputImage, TOutputImage >, otb::ExtractROIBase< TInputImage, TOutputImage >, otb::FuzzyVariable< TLabel, TPrecision >, otb::SOMWithMissingValue< TListSample, TMap, TSOMLearningBehaviorFunctor, TSOMNeighborhoodBehaviorFunctor >, itk::CoreAtomImageToUnaryCorrespondenceMatrixProcess< TSourceImage >, itk::IsotropicFourthOrderLevelSetImageFilter< TInputImage, TOutputImage >, itk::ShiftScaleImageFilter< TInputImage, TOutputImage >, itk::TobogganImageFilter< TInputImage >, itk::StimulateImageIO, itk::MorphologicalWatershedImageFilter< TInputImage, TOutputImage >, otb::ExtractROIBase< VectorImage< TInputPixelType, 2 >, VectorImage< TOutputPixelType, 2 > >, otb::ExtractROIBase< Image< TInputPixel, 2 >, Image< TOutputPixel, 2 > >, otb::ExtractROIBase< VectorImage< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >, otb::ParserConditionDataNodeFeatureFunction< TImage, TCoordRep, TPrecision >, otb::PixelSuppressionByDirectionImageFilter< TInputImage, TOutputImage >, itk::IsolatedConnectedImageFilter< TInputImage, TOutputImage >, itk::ModulusImageFilter< TInputImage, TOutputImage >, itk::TwoOutputExampleImageFilter< TImage >, itk::ImageRegionMultidimensionalSplitter< VImageDimension >, itk::CumulativeGaussianCostFunction, itk::LBFGSOptimizer, itk::MRCImageIO, otb::PointSetAndValuesFunction< TPointSet, TValue, TCoordRep >, otb::SVMImageClassificationFilter< TInputImage, TOutputImage, TMaskImage >, otb::GroundSpacingImageFunction< TInputImage, TCoordRep >, itk::MeanReciprocalSquareDifferenceImageToImageMetric< TFixedImage, TMovingImage >, itk::NormalizedCorrelationPointSetToImageMetric< TFixedPointSet, TMovingImage >, itk::LoggerManager, itk::ShapeSignedDistanceFunction< TCoordRep, VSpaceDimension >, itk::RegularStepGradientDescentBaseOptimizer, itk::SingleValuedNonLinearVnlOptimizer, itk::MINC2ImageIO, otb::ClampVectorImageFilter< TInputImage, TOutputImage >, otb::KeyPointDensityImageFilter< TInputImage, TOutputImage, TDetector >, otb::MeanShiftVectorImageFilter< TInputImage, TOutputImage, TLabeledOutput >, otb::VectorDataExtractROI< TVectorData >, otb::TouziEdgeDetectorImageFilter< TInputImage, TOutputImage, TOutputImageDirection >, otb::SimpleRcsPanSharpeningFusionImageFilter< TPanImageType, TXsImageType, TOutputImageType, TInternalPrecision >, otb::SVMImageModelEstimator< TInputImage, TTrainingImage >, otb::SVMPointSetModelEstimator< TInputPointSet, TTrainingPointSet >, otb::GlWidget, otb::RegionGlComponent, itk::MeanReciprocalSquareDifferencePointSetToImageMetric< TFixedPointSet, TMovingImage >, itk::PermuteAxesImageFilter< TImage >, itk::VTKImageExportBase, itk::LinearInterpolateImageFunction< TInputImage, TCoordRep >, itk::QuadEdgeMeshEulerOperatorJoinVertexFunction< TMesh, TQEType >, itk::ScalarToRGBColormapImageFilter< TInputImage, TOutputImage >, itk::AffineGeometryFrame< TScalarType, NDimensions >, itk::BinaryFillholeImageFilter< TInputImage >, itk::BinaryOpeningByReconstructionImageFilter< TInputImage, TKernel >, otb::LabelizeNeighborhoodConnectedImageFilter< TInputImage, TOutputImage >, otb::PerBandVectorImageFilter< TInputImage, TOutputImage, TFilter >, otb::VarianceImageFilter< TInputImage, TOutputImage >, otb::ConfigurationFile, otb::Rectangle< TValue >, otb::RGBAPixelConverter< TInternalInputPixelType, itk::RGBAPixel< TInternalOutputPixelType > >, otb::BSplinesInterpolateTransformDeformationFieldGenerator< TPointSet, TDeformationField >, otb::KeyPointSetsMatchingFilter< TPointSet, TDistance >, otb::RemoveWrongDirectionFilter< TInputModulus, TInputDirection, TOutputImage >, otb::VectorDataFileWriter< TInputVectorData >, otb::SVMClassifier< TSample, TLabel >, otb::ProfileDerivativeToMultiScaleCharacteristicsFilter< TInputImage, TOutputImage, TLabeledImage >, otb::RCC8GraphFileReader< TOutputGraph >, itk::CropImageFilter< TInputImage, TOutputImage >, itk::ImageToParametricSpaceFilter< TInputImage, TOutputMesh >, itk::CenteredVersorTransformInitializer< TFixedImage, TMovingImage >, itk::ThreadLogger, itk::Statistics::TrainingFunctionBase< TSample, TTargetVector, ScalarType >, itk::LabelToRGBImageFilter< TLabelImage, TOutputImage >, itk::BlackTopHatImageFilter< TInputImage, TOutputImage, TKernel >, itk::CylinderSpatialObject, otb::VectorDataFileWriter< otb::VectorData >, otb::ClampImageFilter< TInputImage, TOutputImage >, otb::DrawLineSpatialObjectFilter< TInputImage, TOutputImage >, otb::DecisionTree< AttributeValueType, LabelType >, otb::SpectralResponse< TPrecision, TValuePrecision >, otb::FilterFunctionValues, itk::BinomialBlurImageFilter< TInputImage, TOutputImage >, itk::BSplineCenteredResampleImageFilterBase< TInputImage, TOutputImage >, itk::Statistics::SampleClassifierWithMask< TSample, TMaskSample >, itk::AttributeKeepNObjectsLabelMapFilter< TImage, TAttributeAccessor >, otb::ComplexMomentPathFunction< TInputPath, TOutput, TPrecision >, otb::FlusserPathFunction< TInputPath, TOutput, TPrecision >, otb::MetaImageFunction< TOutputPrecision, TCoordRep >, otb::LocalRxDetectorFilter< TInputImage, TOutputImage >, otb::LocalRxDetectorNonThreadFilter< TInputImage, TOutputImage >, otb::OpticalImageMetadataInterface, otb::ImageClassificationFilter< TInputImage, TOutputImage, TMaskImage >, itk::VotingBinaryHoleFillingImageFilter< TInputImage, TOutputImage >, itk::MedianImageFunction< TInputImage, TCoordRep >, itk::VectorNearestNeighborInterpolateImageFunction< TInputImage, TCoordRep >, itk::DICOMImageIO2, itk::Statistics::MaskedScalarImageToGreyLevelCooccurrenceMatrixGenerator< TImageType, THistogramFrequencyContainer >, itk::AutoCropLabelMapFilter< TInputImage >, itk::MergeLabelMapFilter< TImage >, itk::MeanSquaresImageToImageMetric< TFixedImage, TMovingImage >, itk::PointBasedSpatialObject< TDimension >, itk::PolygonSpatialObject< TDimension >, itk::Statistics::MaskedScalarImageToGreyLevelCooccurrenceMatrixGenerator< TImage, THistogramFrequencyContainer >, itk::PointBasedSpatialObject< VDimension >, otb::PersistentImageToVectorDataFilter< TImage, TOutputVectorData >, otb::ScalarBufferToImageFileWriter< TBufferType, TOutputPixelType >, otb::ImageToProfileFilter< TInputImage, TOutputImage, TFilter, TParameter >, itk::NormalizedCorrelationImageToImageMetric< TFixedImage, TMovingImage >, itk::UnsharpMaskLevelSetImageFilter< TInputImage, TOutputImage >, itk::BlackTopHatImageFilter< TInputImage, TOutputImage, TKernel >, itk::FrustumSpatialFunction< VImageDimension, TInput >, itk::Statistics::GoodnessOfFitFunctionBase< TInputHistogram >, itk::ChangeLabelLabelMapFilter< TImage >, itk::VTKPolyDataReader< TOutputMesh >, itk::PlaneSpatialObject< TDimension >, otb::PersistentImageToVectorDataFilter< TVImage, TOutputVectorData >, otb::PersistentImageToVectorDataFilter< TImageType, otb::LineSegmentDetector< TImageType, double >::VectorDataType >, otb::ImageToProfileFilter< TInputImage, TOutputImage, itk::OpeningByReconstructionImageFilter< TInputImage, TOutputImage, TStructuringElement >, unsigned int >, otb::ImageToProfileFilter< TInputImage, TOutputImage, itk::ClosingByReconstructionImageFilter< TInputImage, TOutputImage, TStructuringElement >, unsigned int >, otb::LeeImageFilter< TInputImage, TOutputImage >, otb::ThresholdVectorImageFilter< TInputImage, TOutputImage >, otb::LabelMapWithClassLabelToLabeledSampleListFilter< TInputLabelMap, TOutputSampleList, TOutputTrainingSampleList, TMeasurementFunctor >, itk::VectorConfidenceConnectedImageFilter< TInputImage, TOutputImage >, itk::Statistics::DenseFrequencyContainer, itk::Statistics::WeightedCovarianceCalculator< TSample >, itk::LinearInterpolateImageFunction< TInputImage, TCoordRep >, itk::WhiteTopHatImageFilter< TInputImage, TOutputImage, TKernel >, itk::RobustAutomaticThresholdCalculator< TInputImage, TGradientImage >, otb::PersistentImageToOGRLayerFilter< TImage >, otb::HuPathFunction< TInputPath, TOutput, TPrecision >, otb::SiftFastImageFilter< TInputImage, TOutputPointSet >, otb::Statistics::GaussianAdditiveNoiseSampleListFilter< TInputSampleList, TOutputSampleList >, otb::KNearestNeighborsMachineLearningModel< TInputValue, TTargetValue >, otb::ImageWidgetActionHandler, itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >, itk::JoinSeriesImageFilter< TInputImage, TOutputImage >, itk::MinimumMaximumImageCalculator< TInputImage >, itk::RecursiveSeparableImageFilter< TInputImage, TOutputImage >, itk::Statistics::MembershipSampleGenerator< TInputSample, TClassMaskSample >, itk::Statistics::SelectiveSubsampleGenerator< TInputSample, TClassMaskSample >, itk::Statistics::WeightedCentroidKdTreeGenerator< TSample >, itk::Statistics::WeightedMeanCalculator< TSample >, itk::FastApproximateRankImageFilter< TInputImage, TOutputImage >, itk::KappaSigmaThresholdImageCalculator< TInputImage, TMaskImage >, itk::QuadEdgeMeshDecimationFilter< TInput, TOutput, TCriterion >, itk::StochasticFractalDimensionImageFilter< TInputImage, TMaskImage, TOutputImage >, itk::BoxSpatialObject< TDimension >, itk::BinaryClosingByReconstructionImageFilter< TInputImage, TKernel >, otb::PersistentImageToOGRLayerFilter< TImageType >, otb::DecimateImageFilter< TInputImage, TOutputImage >, otb::SVMMarginSampler< TSample, TModel >, otb::ReduceSpectralResponse< TSpectralResponse, TRSR >, itk::GradientImageToBloxBoundaryPointImageFilter< TInputImage >, itk::TensorFractionalAnisotropyImageFilter< TInputImage, TOutputImage >, itk::TensorRelativeAnisotropyImageFilter< TInputImage, TOutputImage >, itk::Statistics::ScalarImageToHistogramGenerator< TImageType >, itk::KernelImageFilter< TInputImage, TOutputImage, TKernel >, itk::AttributeRelabelLabelMapFilter< TImage, TAttributeAccessor >, otb::ConcatenateVectorImageFilter< TInputImage1, TInputImage2, TOutputImage >, otb::ImageFittingPolygonListFilter< TPath, TImage >, itk::RegularSphereMeshSource< TOutputMesh >, itk::BSplineCenteredL2ResampleImageFilterBase< TInputImage, TOutputImage >, itk::RegionOfInterestImageFilter< TInputImage, TOutputImage >, itk::SpatialObjectToPointSetFilter< TInputSpatialObject, TOutputPointSet >, itk::VectorLinearInterpolateImageFunction< TInputImage, TCoordRep >, itk::AnchorOpenCloseImageFilter< TImage, TKernel, LessThan, GreaterThan, LessEqual, GreaterEqual >, itk::GaborKernelFunction, otb::CompositeExampleImageFilter< TImageType >, itk::AnchorOpenCloseImageFilter< TImage, TKernel, std::greater< TImage::PixelType >, std::less< TImage::PixelType >, std::greater_equal< TImage::PixelType >, std::less_equal< TImage::PixelType > >, itk::AnchorOpenCloseImageFilter< TImage, TKernel, std::less< TImage::PixelType >, std::greater< TImage::PixelType >, std::less_equal< TImage::PixelType >, std::greater_equal< TImage::PixelType > >, otb::LabelizeImageFilterBase< TInputImage, TOutputImage, TFilter >, otb::VectorDataToRandomLineGenerator< TVectorData >, itk::ConstantPadImageFilter< TInputImage, TOutputImage >, itk::CumulativeGaussianOptimizer, itk::ShiftScaleLabelMapFilter< TImage >, otb::LabelizeImageFilterBase< TInputImage, TOutputImage, itk::ConnectedThresholdImageFilter< TInputImage, TOutputImage > >, otb::LabelizeImageFilterBase< TInputImage, TOutputImage, itk::NeighborhoodConnectedImageFilter< TInputImage, TOutputImage > >, otb::LabelizeImageFilterBase< TInputImage, TOutputImage, itk::ConfidenceConnectedImageFilter< TInputImage, TOutputImage > >, otb::Statistics::GaussianModelComponent< TSample >, otb::SOMMap< TNeuron, TDistance, VMapDimension >, otb::SensorModelBase< TScalarType, NInputDimensions, NOutputDimensions >, itk::DeformableSimplexMesh3DBalloonForceFilter< TInputMesh, TOutputMesh >, itk::BSplineL2ResampleImageFilterBase< TInputImage, TOutputImage >, itk::CoreAtomImageToDistanceMatrixProcess< TSourceImage >, itk::DifferenceImageFilter< TInputImage, TOutputImage >, itk::GaussianDerivativeSpatialFunction< TOutput, VImageDimension, TInput >, itk::LoggerOutput, itk::OutputWindow, itk::Statistics::GaussianMixtureModelComponent< TSample >, itk::BinaryMorphologicalClosingImageFilter< TInputImage, TOutputImage, TKernel >, itk::VoxBoCUBImageIO, itk::ImageMaskSpatialObject< TDimension >, otb::StreamingShrinkImageRegionSplitter, otb::DataNodeVectorDataFunction< TOutput, TCoordRep, TPrecision >, itk::OtsuThresholdImageCalculator< TInputImage >, itk::ElasticBodySplineKernelTransform< TScalarType, NDimensions >, itk::VTKPolyDataWriter< TInputMesh >, otb::DataNodeVectorDataFunction< std::vector< TPrecision >, TCoordRep, TPrecision >, itk::VTKPolyDataWriter< TMesh >, otb::ImageListToImageListApplyFilter< TInputImageList, TOutputImageList, TFilter >, otb::MultiToMonoChannelExtractROI< TInputPixelType, TOutputPixelType >, otb::ImageToCarvingPathFilter< TInputImage, TOutputPath >, otb::ParallelLinePathListFilter< TPath >, otb::SarImageMetadataInterface, otb::LabelMapToSampleListFilter< TInputLabelMap, TOutputSampleList, TMeasurementFunctor >, otb::OrthoRectificationFilter< TInputImage, TOutputImage, TMapProjection, TInterpolatorPrecision >, itk::ConfidenceConnectedImageFilter< TInputImage, TOutputImage >, itk::BinaryThresholdSpatialFunction< TFunction >, itk::Statistics::BackPropagationLayer< TMeasurementVector, TTargetVector >, itk::Statistics::DistanceMetric< TVector >, itk::Statistics::SampleAlgorithmBase< TInputSample >, itk::BinaryMorphologicalOpeningImageFilter< TInputImage, TOutputImage, TKernel >, itk::TransformIOBase, itk::Statistics::DistanceMetric< Array< double > >, itk::Statistics::SampleAlgorithmBase< TSample >, itk::Statistics::SampleAlgorithmBase< TInputHistogram >, otb::EstimateInnerProductPCAImageFilter< TInputImage, TOutputImage >, otb::DrawLineSpatialObjectListFilter< TInputImage, TOutputImage >, otb::AssymmetricFusionOfLineDetectorImageFilter< TInputImage, TOutputImage, TOutputImageDirection, TInterpolator >, itk::ElasticBodyReciprocalSplineKernelTransform< TScalarType, NDimensions >, itk::SphereSignedDistanceFunction< TCoordRep, VSpaceDimension >, itk::MultipleValuedNonLinearVnlOptimizer, itk::Statistics::CovarianceCalculator< TSample >, otb::PersistentVectorizationImageFilter< TInputImage, TOutputPath >, otb::DrawPathFilter< TInputImage, TInputPath, TOutputImage >, otb::JointMassOfBeliefFilter< TMassFunction >, otb::LabelImageToLabelMapWithAdjacencyFilter< TInputImage, TOutputImage >, itk::OrthogonalSwath2DPathFilter< TFourierSeriesPath, TSwathMeritImage >, itk::JPEGImageIO, itk::NumericSeriesFileNames, itk::ChangeRegionLabelMapFilter< TInputImage >, itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >, itk::VTKImageIO2, otb::ImageToModulusAndDirectionImageFilter< TInputImage, TOutputImage, TOutputImageDirection >, otb::Statistics::ShiftScaleSampleListFilter< TInputSampleList, TOutputSampleList >, otb::MachineLearningModel< TInputValue, TTargetValue >, otb::AutoScaleActionHandler< TWidgetType >, itk::PointSetToSpatialObjectDemonsRegistration< TFixedPointSet, TMovingSpatialObject >, itk::DifferenceOfGaussiansGradientImageFilter< TInputImage, TDataType >, itk::DilateObjectMorphologyImageFilter< TInputImage, TOutputImage, TKernel >, itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction >, itk::ImageAndPathToImageFilter< TInputImage, TInputPath, TOutputImage >, itk::NearestNeighborInterpolateImageFunction< TInputImage, TCoordRep >, itk::ProgressAccumulator, itk::FRPROptimizer, itk::Statistics::SparseFrequencyContainer, itk::FFTShiftImageFilter< TInputImage, TOutputImage >, itk::LabelMapToAttributeImageFilter< TInputImage, TOutputImage, TAttributeAccessor >, otb::ImageToModulusAndDirectionImageFilter< TInputImage, TOutputModulus, TOutputDirection >, itk::ImageAndPathToImageFilter< TImage, ParametricPath< 2 >, TImage >, otb::MSTARImageIO, otb::SOMClassifier< TSample, TSOMMap, TLabel >, otb::ProfileToProfileDerivativeFilter< TInputImage, TOutputImage >, otb::Curve2D, otb::HistogramCurve< THistogram >, itk::SphereMeshSource< TOutputMesh >, itk::PathAndImageToPathFilter< TInputPath, TInputImage, TOutputPath >, itk::SimpleDataObjectDecorator< T >, itk::Optimizer, itk::Statistics::SampleSelectiveMeanShiftBlurringFilter< TSample >, itk::PathAndImageToPathFilter< TFourierSeriesPath, TSwathMeritImage, OrthogonallyCorrected2DParametricPath >, otb::DBOverlapDataNodeFeatureFunction< TCoordRep, TPrecision >, otb::VectorImageTo3DScalarImageFilter< TInputImage, TOutputImage >, otb::GISTableToVectorDataFilter< TGISTable, TVectorData >, otb::VectorDataProperties< TVectorData >, otb::StreamingWarpImageFilter< TInputImage, TOutputImage, TDeformationField >, otb::LikelihoodPathListFilter< TPath, TImage >, otb::VectorDataToRightAngleVectorDataFilter< TVectorData >, otb::MorphologicalClosingProfileFilter< TInputImage, TOutputImage, TStructuringElement >, otb::MorphologicalOpeningProfileFilter< TInputImage, TOutputImage, TStructuringElement >, otb::GeographicalDistance< TVector >, itk::PNGImageIO, itk::Statistics::DistanceToCentroidMembershipFunction< TVector >, itk::AnchorErodeDilateImageFilter< TImage, TKernel, TFunction1, TFunction2 >, itk::RelabelLabelMapFilter< TImage >, itk::VanHerkGilWermanErodeDilateImageFilter< TImage, TKernel, TFunction1 >, itk::AnchorErodeDilateImageFilter< TImage, TKernel, std::less< TImage::PixelType >, std::less_equal< TImage::PixelType > >, itk::AnchorErodeDilateImageFilter< TImage, TKernel, std::greater< TImage::PixelType >, std::greater_equal< TImage::PixelType > >, itk::VanHerkGilWermanErodeDilateImageFilter< TImage, TKernel, MinFunctor< TImage::PixelType > >, itk::VanHerkGilWermanErodeDilateImageFilter< TImage, TKernel, MaxFunctor< TImage::PixelType > >, otb::PointSetToDensityImageFilter< TInputPointSet, TOutputImage, TDensityFunction >, otb::LineCorrelationDetectorImageFilter< TInputImage, TOutputImage, TOutputImageDirection, TInterpolator >, otb::LinkPathListFilter< TPath >, otb::ThresholdImageToPointSetFilter< TInputImage, TOutputPointSet >, otb::Statistics::ListSampleToListSampleFilter< TInputSampleList, TOutputSampleList >, otb::ROIdataConversion< TInputImage, TInputROIImage >, otb::AeronetData, otb::ImageMultiSegmentationToRCC8GraphFilter< TInputImage, TOutputGraph >, itk::BloxBoundaryPointImage< TImageDimension >, itk::DataObjectDecorator< T >, itk::StdStreamLogOutput, otb::Statistics::ListSampleToListSampleFilter< TSampleList, TSampleList >, otb::BinaryImageToDensityImageFilter< TInputImage, TOutputImage, TCountFunction >, otb::ClosingOpeningMorphologicalFilter< TInputImage, TOutputImage, TKernel >, otb::OpeningClosingMorphologicalFilter< TInputImage, TOutputImage, TKernel >, otb::VectorImageToAmplitudeImageFilter< TInputImage, TOutputImage >, otb::ImageOfVectorsToMonoChannelExtractROI< TInputImage, TOutputImage >, otb::PostGISConnectionImplementation, otb::SpectralSensitivityReader, otb::MorphologicalPyramid::Resampler< TInputImage, TOutputImage >, otb::NormalBayesMachineLearningModel< TInputValue, TTargetValue >, itk::ImageDuplicator< TInputImage >, itk::BoxImageFilter< TInputImage, TOutputImage >, itk::StreamingImageIOBase, itk::BoxImageFilter< TImageType, TImageType >, otb::SpectralAngleDistanceImageFilter< TInputImage, TOutputImage >, otb::ImageListToVectorImageFilter< TImageList, TVectorImage >, otb::PointSetWithTransformToDeformationFieldGenerator< TPointSet, TDeformationField >, otb::ImageToEdgePathFilter< TInputImage, TOutputPath >, otb::NeighborhoodScalarProductFilter< TInputImage, TOutputModulus, TOutputDirection >, otb::AtmosphericCorrectionParametersTo6SAtmosphericRadiativeTerms, itk::OtsuMultipleThresholdsCalculator< TInputHistogram >, itk::ColorTable< TPixel >, itk::FiniteCylinderSpatialFunction< VDimension, TInput >, itk::GaussianSpatialFunction< TOutput, VImageDimension, TInput >, itk::BioRadImageIO, itk::NrrdImageIO, itk::VTKImageIO, itk::AggregateLabelMapFilter< TImage >, otb::ExtractROI< TInputPixel, TOutputPixel >, otb::HistogramStatisticsFunction< TInputHistogram, TOutput >, otb::ImageToLineSpatialObjectListFilter< TInputImage >, otb::VectorDataSource< TOutputVectorData >, otb::VerticalAsymptoteCurve, itk::CheckerBoardImageFilter< TImage >, itk::BloxBoundaryProfileImage< TImageDimension >, itk::EllipsoidInteriorExteriorSpatialFunction< VDimension, TInput >, itk::XMLFileOutputWindow, itk::GiplImageIO, itk::Statistics::HypersphereKernelMeanShiftModeSeeker< TSample >, itk::Statistics::GreyLevelRunLengthMatrixTextureCoefficientsCalculator< THistogram >, otb::VectorDataSource< otb::VectorData< TPrecision > >, otb::VectorDataSource< otb::VectorData<> >, otb::VectorDataSource< TInputVectorData >, otb::VectorDataSource< TVectorData >, otb::VectorDataSource< otb::VectorData< double > >, otb::ExhaustiveExponentialOptimizer, otb::InverseSensorModel< TScalarType, NInputDimensions, NOutputDimensions >, otb::RCC8VertexBase< TPath >, itk::ReflectImageFilter< TInputImage, TOutputImage >, itk::AutoPointerDataObjectDecorator< T >, itk::BMPImageIO, itk::ConvolutionImageFilter< TInputImage, TOutputImage >, itk::SpatialObjectTreeNode< TDimension >, otb::RCC8VertexBase< TLabel >, otb::LabelizeConnectedThresholdImageFilter< TInputImage, TOutputImage >, otb::TileImageFilter< TImage >, otb::HarrisImageToPointSetFilter< TInputImage, TOutputPointSet >, otb::StatisticsXMLFileWriter< TMeasurementVector >, otb::ImageWidgetTransferFunction< TPixel >, itk::ChainCodeToFourierSeriesPathFilter< TInputChainCodePath, TOutputFourierSeriesPath >, itk::WarpMeshFilter< TInputMesh, TOutputMesh, TDeformationField >, itk::LSMImageIO, otb::ConcatenateVectorDataFilter< TVectorData >, otb::ImageToPointSetFilter< TInputImage, TOutputPointSet >, otb::ImportGeoInformationImageFilter< TImage, TSourceImage >, otb::VectorImageToImageListFilter< TVectorImageType, TImageList >, otb::StatisticsXMLFileReader< TMeasurementVector >, otb::ForwardSensorModel< TScalarType, NInputDimensions, NOutputDimensions >, otb::PolarimetricData, itk::RealTimeClock, itk::SegmentationRegion, itk::TorusInteriorExteriorSpatialFunction< VDimension, TInput >, otb::VectorImageToIntensityImageFilter< TInputImage, TOutputImage >, otb::PathFunction< TInputPath, TOutput >, otb::PersistentFilterStreamingDecorator< TFilter >, otb::Statistics::ListSampleSource< TInputSampleList, TOutputSampleList >, otb::PackedWidgetManager, itk::QuadEdgeMeshEulerOperatorFlipEdgeFunction< TMesh, TQEType >, itk::QuadEdgeMeshTopologyChecker< TMesh >, otb::PersistentFilterStreamingDecorator< PersistentMatrixTransposeMatrixImageFilter< TInputImage1, TInputImage2 > >, otb::PersistentFilterStreamingDecorator< PersistentStreamingStatisticsMapFromLabelImageFilter< TInputVectorImage, TLabelImage > >, otb::PersistentFilterStreamingDecorator< PersistentInnerProductVectorImageFilter< TInputImage > >, otb::PersistentFilterStreamingDecorator< PersistentHistogramVectorImageFilter< TInputImage > >, otb::PersistentFilterStreamingDecorator< PersistentMinMaxVectorImageFilter< TInputImage > >, otb::PersistentFilterStreamingDecorator< PersistentShrinkImageFilter< TInputImage, TOutputImage > >, otb::PersistentFilterStreamingDecorator< PersistentMinMaxImageFilter< TInputImage > >, otb::PersistentFilterStreamingDecorator< PersistentDescriptorsListSampleGenerator< TInputImage, TVectorData, itk::FunctionBase< itk::Point< TCoordRep, 2 >, DefaultDescriptorsType< TOutputPrecision >::Type >, TListSample, TLabelListSample > >, otb::PersistentFilterStreamingDecorator< PersistentImageToOGRLayerSegmentationFilter< TImageType, TSegmentationFilter > >, otb::PersistentFilterStreamingDecorator< PersistentVectorImageToMatrixFilter< TInputImage > >, otb::PersistentFilterStreamingDecorator< PersistentObjectDetectionClassifier< TInputImage, TOutputVectorData, TLabel, itk::FunctionBase< itk::Point< TCoordRep, 2 >, DefaultDescriptorType< TFunctionPrecision >::Type > > >, otb::PersistentFilterStreamingDecorator< PersistentStreamingStatisticsVectorImageFilter< TInputImage, TPrecision > >, otb::PersistentFilterStreamingDecorator< PersistentStatisticsImageFilter< TInputImage > >, otb::PersistentFilterStreamingDecorator< PersistentCompareImageFilter< TInputImage > >, otb::Statistics::ListSampleSource< TSampleList >, otb::Statistics::ListSampleSource< TOutputSampleList >, otb::ImageListToSingleImageFilter< TInputImageType >, otb::LeafParameters, otb::PixelDescriptionModel< TOutputImage >, otb::SplittedWidgetManager, itk::BSplineDerivativeKernelFunction< VSplineOrder >, itk::SingleValuedNonLinearOptimizer, itk::Statistics::SampleMeanShiftBlurringFilter< TSample >, otb::PointSetExtractROI< TInputPointSet, TOutputPointSet >, itk::TransformMeshFilter< TInputMesh, TOutputMesh, TTransform >, itk::FastMutexLock, itk::SymmetricEllipsoidInteriorExteriorSpatialFunction< VDimension, TInput >, otb::BSplineDecompositionImageFilter< TInputImage, TOutputImage >, otb::ObjectListToObjectListFilter< TInputList, TOutputList >, otb::VectorDataToSpecificDescriptionFilterBase< TVectorData >, otb::SOMActivationBuilder< TListSample, TInputMap, TOutputImage >, otb::WidgetManager, itk::VTKImageExport< TInputImage >, itk::FileOutputWindow, itk::InteriorExteriorSpatialFunction< VDimension, TInput >, itk::Statistics::QuickPropLearningRule< LayerType, TTargetVector >, itk::Statistics::MeanCalculator< TSample >, itk::DTITubeSpatialObject< TDimension >, itk::VesselTubeSpatialObject< TDimension >, otb::ObjectListToObjectListFilter< ObjectList< TPath >, ObjectList< TPath > >, itk::InteriorExteriorSpatialFunction< VImageDimension, TInput >, otb::ImageToPathListFilter< TInputImage, TOutputPath >, otb::VariableLengthVectorConverter< TInputType, TPrecisionType >, otb::CloudEstimatorFilter< TInputImage, TOutputImage, TFunction >, otb::ModulusAndDirectionImageToImageFilter< TInputImage, TInputImageDirection, TOutputImage >, otb::PointSetFileReader< TOutputPointSet >, otb::ProspectModel, itk::HistogramAlgorithmBase< TInputHistogram >, otb::ModulusAndDirectionImageToImageFilter< TInputModulus, TInputDirection, TOutputImage >, otb::TransformPointSetFilter< TInputPointSet, TOutputPointSet, TTransform >, otb::ImageListToImageFilter< TInputImage, TOutputImage >, otb::PersistentImageFilter< TInputImage, TOutputImage >, otb::NNearestTransformsLinearInterpolateDeformationFieldGenerator< TPointSet, TDeformationField >, otb::CompacityPathFunction< TInputPath, TOutput >, otb::RAndBAndNIRIndexImageFilter< TInputImageR, TInputImageB, TInputImageNIR, TOutputImage, TFunction >, otb::RAndGAndNIRIndexImageFilter< TInputImageR, TInputImageG, TInputImageNIR, TOutputImage, TFunction >, otb::RCC8VertexWithRegionCenter< TLabel, TPrecision >, itk::IsolatedWatershedImageFilter< TInputImage, TOutputImage >, itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh >, itk::SpatialFunction< TOutput, VImageDimension, TInput >, itk::MultipleValuedNonLinearOptimizer, itk::Statistics::SampleMeanShiftClusteringFilter< TSample >, otb::ImageListToImageFilter< TImageList::ImageType, TVectorImage >, otb::ImageListToImageFilter< TInputImageType, TInputImageType >, otb::PersistentImageFilter< TVImage, TVImage >, otb::PersistentImageFilter< TInputImage, TInputImage >, otb::PersistentImageFilter< TImageType, TImageType >, otb::PersistentImageFilter< TImage, TImage >, otb::PersistentImageFilter< TInputVectorImage, TInputVectorImage >, itk::SpatialFunction< double, VSpaceDimension, Point< TCoordRep, VSpaceDimension > >, itk::SpatialFunction< TOutput, 2, TPointSet::PointType >, itk::SpatialFunction< bool,::itk::GetImageDimension< TFunction >::ImageDimension, TFunction::InputType >, itk::SpatialFunction< bool, VDimension, TInput >, otb::DifferenceImageFilter< TInputImage, TOutputImage >, otb::ImageList< TImage >, otb::CloudDetectionFilter< TInputImage, TOutputImage, TFunction >, otb::Landmark< TPoint, TPointData, TLandmarkData >, otb::RCC8VertexWithCompacity< TPath, TPrecision >, otb::GlComponent, otb::BinaryImageMinimalBoundingRegionCalculator< TInputImage >, otb::PointSetFunction< TPointSet, TOutput >, otb::PointSetToPointSetFilter< TInputPointSet, TOutputPointSet >, otb::ImageListToImageListFilter< TInputImage, TOutputImage >, otb::LineSpatialObjectListToPointSetFilter< TLinesList, TPointSet >, otb::GAndRIndexImageFilter< TInputImageG, TInputImageR, TOutputImage, TFunction >, itk::SegmentationBorder, itk::ImageToPathFilter< TInputImage, TOutputPath >, otb::ImageListToImageListFilter< TInputImageList::ImageType, TOutputImageList::ImageType >, itk::ImageToPathFilter< TInputImage, PolyLineParametricPath< 2 > >, otb::Statistics::ConcatenateSampleListFilter< TSampleList >, otb::RAndNIRIndexImageFilter< TInputImageR, TInputImageNIR, TOutputImage, TFunction >, otb::ImageListToRCC8GraphFilter< TInputImage, TOutputGraph >, itk::PathToChainCodePathFilter< TInputPath, TOutputChainCodePath >, otb::GISTableToGISTableFilter< TInputGISTable, TOutputGISTable >, otb::ImageToImageListFilter< TInputImage, TOutputImage >, otb::FillGapsFilter, otb::OrientationPathFunction< TInputPath, TOutput >, otb::QtLogOutput, itk::DecisionRuleBase, itk::SphereSpatialFunction< VImageDimension, TInput >, itk::GroupSpatialObject< TDimension >, otb::ImageToImageListFilter< TImage, TImage >, otb::ImageToImageListFilter< TVectorImageType, TImageList::ImageType >, otb::PointSetDensityEpanechnikovFunction< TPointSet, TOutput >, otb::PointSetDensityFunction< TPointSet, TOutput >, otb::PointSetDensityGaussianFunction< TPointSet, TOutput >, otb::BreakAngularPathListFilter< TPath >, itk::GetAverageSliceImageFilter< TInputImage, TOutputImage >, itk::BSplineKernelFunction< VSplineOrder >, itk::Statistics::RadialBasisFunctionBase< ScalarType >, itk::VanHerkGilWermanDilateImageFilter< TImage, TKernel >, itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >, itk::Directory, itk::Statistics::SigmoidTransferFunction< ScalarType >, itk::SpatialObjectDuplicator< TInputSpatialObject >, otb::SpatialObjectSource< TSpatialObject >, otb::NearestTransformDeformationFieldGenerator< TPointSet, TDeformationField >, otb::NNearestPointsLinearInterpolateDeformationFieldGenerator< TPointSet, TDeformationField >, otb::RealMomentPathFunction< TInputPath, TOutput, TPrecision >, itk::PathToPathFilter< TInputPath, TOutputPath >, itk::Statistics::MembershipFunctionBase< TVector >, itk::VanHerkGilWermanErodeImageFilter< TImage, TKernel >, itk::PathToPathFilter< TInputPath, TOutputChainCodePath >, itk::PathToPathFilter< TInputChainCodePath, TOutputFourierSeriesPath >, itk::PathToPathFilter< TFourierSeriesPath, OrthogonallyCorrected2DParametricPath >, itk::Statistics::MembershipFunctionBase< TMeasurementVector >, itk::Statistics::MembershipFunctionBase< Array< double > >, otb::RGBAPixelConverter< TInternalInputPixelType, TOutputPixelType >, otb::BSplinesInterpolateDeformationFieldGenerator< TPointSet, TDeformationField >, otb::WavelengthSpectralBands, itk::ConnectedThresholdImageFilter< TInputImage, TOutputImage >, itk::Statistics::ErrorBackPropagationLearningWithMomentum< LayerType, TTargetVector >, otb::GISTableSource< TOutputGISTable >, otb::ImageListSource< TOutputImage >, itk::WatershedMiniPipelineProgressCommand, itk::MaximumDecisionRule, itk::Statistics::RBFBackPropagationLearningFunction< LayerType, TTargetVector >, otb::GISTableSource< TGISTable >, otb::ImageListSource< TImage >, otb::ImageListSource< TImageList::ImageType >, otb::ImageListSource< Image< TPixel, 2 > >, otb::ImageListSource< TOutputImageList::ImageType >, otb::ImageListSource< VectorImage< TPixel, 2 > >, otb::NearestPointDeformationFieldGenerator< TPointSet, TDeformationField >, otb::LabelMapSource< TOutputLabelMap >, itk::bio::CellularAggregateBase, itk::NeighborhoodConnectedImageFilter< TInputImage, TOutputImage >, itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >, otb::LabelMapSource< TLabelMap >, otb::GeometricMomentPathFunction< TInputPath, TOutput, TPrecision >, itk::CostFunction, itk::MatlabTransformIOFactory, itk::Statistics::TransferFunctionBase< ScalarType >, otb::PlaceNameToLonLat, itk::GaussianKernelFunction, itk::AnalyzeImageIOFactory, itk::GE4ImageIOFactory, itk::GE5ImageIOFactory, itk::GEAdwImageIOFactory, itk::NiftiImageIOFactory, itk::SiemensVisionImageIOFactory, itk::Statistics::MultiquadricRadialBasisFunction< ScalarType >, itk::Statistics::DensityFunction< TMeasurementVector >, itk::TxtTransformIOFactory, itk::Statistics::BatchSupervisedTrainingFunction< TSample, TTargetVector, ScalarType >, itk::Statistics::InputFunctionBase< TMeasurementVector, TTargetVector >, itk::Statistics::IterativeSupervisedTrainingFunction< TSample, TTargetVector, ScalarType >, itk::Statistics::NeuralNetworkObject< TMeasurementVector, TTargetVector >, itk::Statistics::SquaredDifferenceErrorFunction< TMeasurementVector, ScalarType >, itk::Statistics::InputFunctionBase< TMeasurementVector, ScalarType >, otb::ImageToPathFilter< TInputImage, TOutputPath >, itk::Statistics::MeanSquaredErrorFunction< TMeasurementVector, ScalarType >, itk::Statistics::SumInputFunction< TMeasurementVector, ScalarType >, itk::Statistics::SymmetricSigmoidTransferFunction< ScalarType >, itk::KernelFunction, itk::Statistics::GaussianRadialBasisFunction< ScalarType >, itk::Statistics::IdentityTransferFunction< ScalarType >, otb::RCC8GraphSource< TOutputGraph >, itk::Statistics::LearningFunctionBase< LayerType, TTargetVector >, itk::Statistics::LogSigmoidTransferFunction< ScalarType >, itk::Statistics::NNetDistanceMetricBase< TMeasurementVector >, itk::Statistics::SignedHardLimitTransferFunction< ScalarType >, itk::Statistics::TanHTransferFunction< ScalarType >, itk::Statistics::TanSigmoidTransferFunction< ScalarType >, itk::Statistics::LearningFunctionBase< LayerType::LayerInterfaceType, TTargetVector >, otb::RCC8Edge, itk::Statistics::GaussianTransferFunction< ScalarType >, itk::AnchorDilateImageFilter< TImage, TKernel >, itk::Statistics::HardLimitTransferFunction< ScalarType >, itk::Statistics::ProductInputFunction< TMeasurementVector, ScalarType >, itk::AnchorErodeImageFilter< TImage, TKernel >, itk::AnchorCloseImageFilter< TImage, TKernel >, itk::AnchorOpenImageFilter< TImage, TKernel >, and itk::Statistics::CompletelyConnectedWeightSet< TMeasurementVector, TTargetVector >.

Definition at line 517 of file itkObject.cxx.

References itk::Indent::GetNextIndent().

Referenced by itk::Statistics::NNetDistanceMetricBase< TMeasurementVector >::PrintSelf(), itk::Statistics::InputFunctionBase< TMeasurementVector, ScalarType >::PrintSelf(), itk::Statistics::TransferFunctionBase< ScalarType >::PrintSelf(), itk::Directory::PrintSelf(), itk::Statistics::RadialBasisFunctionBase< ScalarType >::PrintSelf(), otb::QtLogOutput::PrintSelf(), otb::GlComponent::PrintSelf(), otb::WidgetManager::PrintSelf(), itk::FastMutexLock::PrintSelf(), itk::RealTimeClock::PrintSelf(), itk::StdStreamLogOutput::PrintSelf(), otb::ImageWidgetActionHandler::PrintSelf(), otb::GlWidget::PrintSelf(), itk::LoggerManager::PrintSelf(), otb::ImageWidgetController::PrintSelf(), itk::Statistics::NormalVariateGenerator::PrintSelf(), itk::ValarrayImageContainer< TElementIdentifier, TElement >::PrintSelf(), itk::MutexLock::PrintSelf(), otb::ImageLayerBase< TOutputImage >::PrintSelf(), itk::LoggerBase::PrintSelf(), itk::GDCMSeriesFileNames::PrintSelf(), itk::MultiThreader::PrintSelf(), and itk::DataObject::PrintSelf().

void itk::LightObject::PrintTrailer ( std::ostream &  os,
Indent  indent 
) const
protectedvirtualinherited

Define a default print trailer for all objects.

Definition at line 331 of file itkLightObject.cxx.

void itk::Object::Register ( ) const
virtualinherited

Increase the reference count (mark as used by another object).

Reimplemented from itk::LightObject.

Definition at line 309 of file itkObject.cxx.

Referenced by itk::ObjectFactoryBase::RegisterFactory().

void itk::Object::RemoveAllObservers ( )
inherited

Remove all observers .

Definition at line 435 of file itkObject.cxx.

void itk::Object::RemoveObserver ( unsigned long  tag)
inherited

Remove the observer with this tag value.

Definition at line 425 of file itkObject.cxx.

Referenced by otb::StreamingImageVirtualWriter< TInputImage >::GenerateData(), and otb::ImageFileWriter< TInputImage >::Update().

void itk::Object::SetDebug ( bool  debugFlag) const
inherited

Set the value of the debug flag. A non-zero value turns debugging on.

Definition at line 275 of file itkObject.cxx.

virtual void itk::TransformBase::SetFixedParameters ( const ParametersType )
pure virtualinherited
template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
virtual void itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::SetFixedParameters ( const ParametersType )
inlinevirtual
void itk::Object::SetGlobalWarningDisplay ( bool  val)
staticinherited

This is a global flag that controls whether any debug, warning or error messages are displayed.

Set the value of the global debug output control flag.

Definition at line 370 of file itkObject.cxx.

Referenced by itk::Object::GlobalWarningDisplayOff(), and itk::Object::GlobalWarningDisplayOn().

void itk::Object::SetMetaDataDictionary ( const MetaDataDictionary rhs)
inherited
virtual void itk::TransformBase::SetParameters ( const ParametersType )
pure virtualinherited
template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
virtual void itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::SetParameters ( const ParametersType )
inlinevirtual

Set the transformation parameters and update internal transformation. SetParameters gives the transform the option to set it's parameters by keeping a reference to the parameters, or by copying. To force the transform to copy it's parameters call SetParametersByValue.

See Also
SetParametersByValue

Reimplemented in itk::MatrixOffsetTransformBase< TScalarType, NDimensions, NDimensions >, itk::MatrixOffsetTransformBase< TScalarType, 2, 2 >, itk::MatrixOffsetTransformBase< TScalarType, 3, 3 >, otb::Transform< TScalarType, NInputDimensions, NOutputDimensions >, otb::Transform< double, 2, 2 >, otb::Transform< TScalarType, Dimension, Dimension >, and itk::TranslationTransform< TScalarType, NDimensions >.

Definition at line 155 of file itkTransform.h.

Referenced by itk::ImageToImageMetric< TFixedImage, TMovingImage >::MultiThreadingInitialize().

virtual void itk::TransformBase::SetParametersByValue ( const ParametersType p)
pure virtualinherited

Set the transformation by copying parameters and update internal transformation. This method forces the transform to copy the parameters. The default implementation is to call SetParameters. This call must be overridden if the transform normally implements SetParameters by keeping a reference to the parameters.

See Also
SetParameters

Implemented in itk::Transform< TScalarType, NDimensions, NDimensions >, itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >, itk::Transform< TScalarType, 2, 2 >, itk::Transform< TScalarType, 3, 2 >, itk::Transform< double, NInputDimensions, NOutputDimensions >, and otb::Transform< TScalarType, NInputDimensions, NOutputDimensions >.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
virtual void itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::SetParametersByValue ( const ParametersType p)
inlinevirtual

Set the transformation parameters and update internal transformation. This method forces the transform to copy the parameters. The default implementation is to call SetParameters. This call must be overridden if the transform normally implements SetParameters by keeping a reference to the parameters.

See Also
SetParameters

Reimplemented in otb::Transform< TScalarType, NInputDimensions, NOutputDimensions >, otb::Transform< double, 2, 2 >, and otb::Transform< TScalarType, Dimension, Dimension >.

Definition at line 165 of file itkTransform.h.

void itk::Object::SetReferenceCount ( int  ref)
virtualinherited

Sets the reference count (use with care)

If there is a delete method, invoke it.

Reimplemented from itk::LightObject.

Definition at line 347 of file itkObject.cxx.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
virtual OutputCovariantVectorType itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::TransformCovariantVector ( const InputCovariantVectorType ) const
inlinevirtual
template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
virtual OutputPointType itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::TransformPoint ( const InputPointType ) const
inlinevirtual
template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
virtual OutputVectorType itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::TransformVector ( const InputVectorType ) const
inlinevirtual
template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
virtual OutputVnlVectorType itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::TransformVector ( const InputVnlVectorType ) const
inlinevirtual
void itk::Object::UnRegister ( ) const
virtualinherited

Decrease the reference count (release by another object).

If there is a delete method, invoke it.

Reimplemented from itk::LightObject.

Definition at line 324 of file itkObject.cxx.

Referenced by itk::Object::New(), and itk::ObjectFactoryBase::UnRegisterFactory().

Member Data Documentation

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
const unsigned int itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::InputSpaceDimension = NInputDimensions
static

Dimension of the domain space.

Definition at line 82 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
ParametersType itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::m_FixedParameters
mutableprotected

Definition at line 272 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
JacobianType itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::m_Jacobian
mutableprotected

Definition at line 273 of file itkTransform.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
ParametersType itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::m_Parameters
mutableprotected

Definition at line 271 of file itkTransform.h.

InternalReferenceCountType itk::LightObject::m_ReferenceCount
mutableprotectedinherited

Number of uses of this object by other objects.

Definition at line 141 of file itkLightObject.h.

SimpleFastMutexLock itk::LightObject::m_ReferenceCountLock
mutableprotectedinherited

Mutex lock to protect modification to the reference count

Definition at line 144 of file itkLightObject.h.

template<class TScalarType, unsigned int NInputDimensions = 3, unsigned int NOutputDimensions = 3>
const unsigned int itk::Transform< TScalarType, NInputDimensions, NOutputDimensions >::OutputSpaceDimension = NOutputDimensions
static

Definition at line 83 of file itkTransform.h.


The documentation for this class was generated from the following files:

Generated at Sun May 12 2013 02:48:20 for Orfeo Toolbox with doxygen 1.8.3.1