Orfeo Toolbox  3.16
Classes | Public Types | Public Member Functions | Static Public Member Functions | Public Attributes | Protected Types | Protected Member Functions | Protected Attributes | Private Types | Private Member Functions | Friends | List of all members
itk::MapContainer< TElementIdentifier, TElement > Class Template Reference

#include <itkMapContainer.h>

+ Inheritance diagram for itk::MapContainer< TElementIdentifier, TElement >:
+ Collaboration diagram for itk::MapContainer< TElementIdentifier, TElement >:

Classes

class  ConstIterator
 The const iterator type for the map. More...
 
class  Iterator
 The non-const iterator type for the map. More...
 

Public Types

typedef SmartPointer< const SelfConstPointer
 
typedef TElement Element
 
typedef TElementIdentifier ElementIdentifier
 
typedef SmartPointer< SelfPointer
 
typedef MapContainer Self
 
typedef MapType STLContainerType
 
typedef Object Superclass
 

Public Member Functions

 MapContainer ()
 
 MapContainer (const MapKeyCompareType &comp)
 
template<typename TInputIterator >
 MapContainer (TInputIterator first, TInputIterator last)
 
template<typename TInputIterator >
 MapContainer (TInputIterator first, TInputIterator last, const MapKeyCompareType &comp)
 
unsigned long AddObserver (const EventObject &event, Command *)
 
unsigned long AddObserver (const EventObject &event, Command *) const
 
ConstIterator Begin (void) const
 
Iterator Begin (void)
 
const STLContainerTypeCastToSTLConstContainer () const
 
STLContainerTypeCastToSTLContainer ()
 
virtual ::itk::LightObject::Pointer CreateAnother (void) const
 
ElementCreateElementAt (ElementIdentifier)
 
void CreateIndex (ElementIdentifier)
 
virtual void DebugOff () const
 
virtual void DebugOn () const
 
virtual void Delete ()
 
void DeleteIndex (ElementIdentifier)
 
ElementElementAt (ElementIdentifier)
 
const ElementElementAt (ElementIdentifier) const
 
ConstIterator End (void) const
 
Iterator End (void)
 
CommandGetCommand (unsigned long tag)
 
bool GetDebug () const
 
Element GetElement (ElementIdentifier) const
 
bool GetElementIfIndexExists (ElementIdentifier, Element *) const
 
MetaDataDictionaryGetMetaDataDictionary (void)
 
const MetaDataDictionaryGetMetaDataDictionary (void) const
 
virtual unsigned long GetMTime () const
 
virtual const char * GetNameOfClass () const
 
virtual int GetReferenceCount () const
 
bool HasObserver (const EventObject &event) const
 
bool IndexExists (ElementIdentifier) const
 
void Initialize (void)
 
void InsertElement (ElementIdentifier, Element)
 
void InvokeEvent (const EventObject &)
 
void InvokeEvent (const EventObject &) 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 Reserve (ElementIdentifier)
 
void SetDebug (bool debugFlag) const
 
void SetElement (ElementIdentifier, Element)
 
void SetMetaDataDictionary (const MetaDataDictionary &rhs)
 
virtual void SetReferenceCount (int)
 
unsigned long Size (void) const
 
void Squeeze (void)
 
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)
 

Public Attributes

elements
 STL member. More...
 
keys
 STL member. More...
 

Protected Types

typedef int InternalReferenceCountType
 

Protected Member Functions

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

InternalReferenceCountType m_ReferenceCount
 
SimpleFastMutexLock m_ReferenceCountLock
 

Private Types

typedef MapType::const_iterator MapConstIterator
 
typedef MapType::iterator MapIterator
 
typedef MapType::key_compare MapKeyCompareType
 
typedef std::map
< ElementIdentifier, Element
MapType
 

Private Member Functions

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

Friends

class ConstIterator
 
class Iterator
 

Detailed Description

template<typename TElementIdentifier, typename TElement>
class itk::MapContainer< TElementIdentifier, TElement >

Define a front-end to the STL "map" container that conforms to the IndexedContainerInterface. This is a full-fleged Object, so there are events, modification time, debug, and reference count information.

Template parameters for MapContainer:

TElementIdentifier = A type that shall be used to index the container. It must have a < operator defined for ordering.

TElement = The element type stored in the container.

Definition at line 46 of file itkMapContainer.h.

Member Typedef Documentation

template<typename TElementIdentifier, typename TElement>
typedef SmartPointer<const Self> itk::MapContainer< TElementIdentifier, TElement >::ConstPointer

Definition at line 55 of file itkMapContainer.h.

template<typename TElementIdentifier, typename TElement>
typedef TElement itk::MapContainer< TElementIdentifier, TElement >::Element

Definition at line 62 of file itkMapContainer.h.

template<typename TElementIdentifier, typename TElement>
typedef TElementIdentifier itk::MapContainer< TElementIdentifier, TElement >::ElementIdentifier

Save the template parameters.

Definition at line 58 of file itkMapContainer.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<typename TElementIdentifier, typename TElement>
typedef MapType::const_iterator itk::MapContainer< TElementIdentifier, TElement >::MapConstIterator
private

Definition at line 71 of file itkMapContainer.h.

template<typename TElementIdentifier, typename TElement>
typedef MapType::iterator itk::MapContainer< TElementIdentifier, TElement >::MapIterator
private

Definition at line 70 of file itkMapContainer.h.

template<typename TElementIdentifier, typename TElement>
typedef MapType::key_compare itk::MapContainer< TElementIdentifier, TElement >::MapKeyCompareType
private

Definition at line 72 of file itkMapContainer.h.

template<typename TElementIdentifier, typename TElement>
typedef std::map<ElementIdentifier, Element> itk::MapContainer< TElementIdentifier, TElement >::MapType
private

Quick access to the STL map type that was inherited.

Definition at line 69 of file itkMapContainer.h.

template<typename TElementIdentifier, typename TElement>
typedef SmartPointer<Self> itk::MapContainer< TElementIdentifier, TElement >::Pointer

Definition at line 54 of file itkMapContainer.h.

template<typename TElementIdentifier, typename TElement>
typedef MapContainer itk::MapContainer< TElementIdentifier, TElement >::Self

Standard class typedefs.

Definition at line 52 of file itkMapContainer.h.

template<typename TElementIdentifier, typename TElement>
typedef MapType itk::MapContainer< TElementIdentifier, TElement >::STLContainerType

This type is provided to Adapt this container as an STL container

Definition at line 88 of file itkMapContainer.h.

template<typename TElementIdentifier, typename TElement>
typedef Object itk::MapContainer< TElementIdentifier, TElement >::Superclass

Definition at line 53 of file itkMapContainer.h.

Constructor & Destructor Documentation

template<typename TElementIdentifier, typename TElement>
itk::MapContainer< TElementIdentifier, TElement >::MapContainer ( const Self )
private
template<typename TElementIdentifier, typename TElement>
itk::MapContainer< TElementIdentifier, TElement >::MapContainer ( )
inline

Provide pass-through constructors corresponding to all the STL map constructors. These are for internal use only since this is also an Object which must be constructed through the "New()" routine.

Definition at line 78 of file itkMapContainer.h.

template<typename TElementIdentifier, typename TElement>
itk::MapContainer< TElementIdentifier, TElement >::MapContainer ( const MapKeyCompareType comp)
inline

Definition at line 79 of file itkMapContainer.h.

template<typename TElementIdentifier, typename TElement>
template<typename TInputIterator >
itk::MapContainer< TElementIdentifier, TElement >::MapContainer ( TInputIterator  first,
TInputIterator  last 
)
inline

Definition at line 82 of file itkMapContainer.h.

template<typename TElementIdentifier, typename TElement>
template<typename TInputIterator >
itk::MapContainer< TElementIdentifier, TElement >::MapContainer ( TInputIterator  first,
TInputIterator  last,
const MapKeyCompareType comp 
)
inline

Definition at line 84 of file itkMapContainer.h.

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().

template<typename TElementIdentifier , typename TElement >
MapContainer< TElementIdentifier, TElement >::ConstIterator itk::MapContainer< TElementIdentifier, TElement >::Begin ( void  ) const

Get a begin const iterator for the map.

Definition at line 180 of file itkMapContainer.txx.

template<typename TElementIdentifier , typename TElement >
MapContainer< TElementIdentifier, TElement >::Iterator itk::MapContainer< TElementIdentifier, TElement >::Begin ( void  )

Get a begin const iterator for the map.

Definition at line 204 of file itkMapContainer.txx.

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<typename TElementIdentifier, typename TElement>
const STLContainerType& itk::MapContainer< TElementIdentifier, TElement >::CastToSTLConstContainer ( ) const
inline

Cast the container to a const STL container type

Definition at line 98 of file itkMapContainer.h.

template<typename TElementIdentifier, typename TElement>
STLContainerType& itk::MapContainer< TElementIdentifier, TElement >::CastToSTLContainer ( )
inline

Cast the container to a STL container type

Definition at line 94 of file itkMapContainer.h.

template<typename TElementIdentifier, typename TElement>
virtual::itk::LightObject::Pointer itk::MapContainer< TElementIdentifier, TElement >::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.

template<typename TElementIdentifier , typename TElement >
MapContainer< TElementIdentifier, TElement >::Element & itk::MapContainer< TElementIdentifier, TElement >::CreateElementAt ( ElementIdentifier  id)

Get a reference to the element at the given index. If the index does not exist, it is created automatically.

It is assumed that the value of the element is modified through the reference.

Definition at line 62 of file itkMapContainer.txx.

template<typename TElementIdentifier , typename TElement >
void itk::MapContainer< TElementIdentifier, TElement >::CreateIndex ( ElementIdentifier  id)

The map will create an entry for a given index through the indexing operator. Whether or not it is created, it will be assigned to the default element.

The STL map will create an entry for a given index through the indexing operator. Whether or not it is created, it will be assigned to the default element.

Definition at line 153 of file itkMapContainer.txx.

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.

template<typename TElementIdentifier , typename TElement >
void itk::MapContainer< TElementIdentifier, TElement >::DeleteIndex ( ElementIdentifier  id)

Delete the entry in the STL map corresponding to the given identifier. If the entry does not exist, nothing happens.

Definition at line 167 of file itkMapContainer.txx.

template<typename TElementIdentifier , typename TElement >
MapContainer< TElementIdentifier, TElement >::Element & itk::MapContainer< TElementIdentifier, TElement >::ElementAt ( ElementIdentifier  id)

Get a reference to the element at the given index. If the index does not exist, it is created automatically.

It is assumed that the value of the element is modified through the reference.

Definition at line 34 of file itkMapContainer.txx.

template<typename TElementIdentifier , typename TElement >
const MapContainer< TElementIdentifier, TElement >::Element & itk::MapContainer< TElementIdentifier, TElement >::ElementAt ( ElementIdentifier  id) const

Get a reference to the element at the given index.

Definition at line 47 of file itkMapContainer.txx.

template<typename TElementIdentifier , typename TElement >
MapContainer< TElementIdentifier, TElement >::ConstIterator itk::MapContainer< TElementIdentifier, TElement >::End ( void  ) const

Get an end const iterator for the map.

Definition at line 192 of file itkMapContainer.txx.

template<typename TElementIdentifier , typename TElement >
MapContainer< TElementIdentifier, TElement >::Iterator itk::MapContainer< TElementIdentifier, TElement >::End ( void  )

Get an end const iterator for the map.

Definition at line 216 of file itkMapContainer.txx.

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<typename TElementIdentifier , typename TElement >
MapContainer< TElementIdentifier, TElement >::Element itk::MapContainer< TElementIdentifier, TElement >::GetElement ( ElementIdentifier  id) const

Get the element at the specified index. There is no check for existence performed.

Definition at line 76 of file itkMapContainer.txx.

Referenced by itk::TriangleMeshToSimplexMeshFilter< TInputMesh, TOutputMesh >::CreateCells().

template<typename TElementIdentifier , typename TElement >
bool itk::MapContainer< TElementIdentifier, TElement >::GetElementIfIndexExists ( ElementIdentifier  id,
Element element 
) const

If the given index doesn't exist in the map, return false. Otherwise, set the element through the pointer (if it isn't null), and return true.

Definition at line 131 of file itkMapContainer.txx.

bool itk::Object::GetGlobalWarningDisplay ( )
staticinherited

Get the value of the global debug output control flag.

Definition at line 381 of file itkObject.cxx.

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(), itk::InverseDeformationFieldImageFilter< TInputImage, TOutputImage >::GetMTime(), otb::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<typename TElementIdentifier, typename TElement>
virtual const char* itk::MapContainer< TElementIdentifier, TElement >::GetNameOfClass ( ) const
virtual

Standard part of every itk Object.

Reimplemented from itk::Object.

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

Gets the reference count on this object.

Definition at line 105 of file itkLightObject.h.

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.

template<typename TElementIdentifier , typename TElement >
bool itk::MapContainer< TElementIdentifier, TElement >::IndexExists ( ElementIdentifier  id) const

Check if the STL map has an entry corresponding to the given index. The count will be either 1 or 0.

Definition at line 117 of file itkMapContainer.txx.

template<typename TElementIdentifier , typename TElement >
void itk::MapContainer< TElementIdentifier, TElement >::Initialize ( void  )

Tell the container to release any memory it may have allocated and return itself to its initial state.

Definition at line 275 of file itkMapContainer.txx.

template<typename TElementIdentifier , typename TElement >
void itk::MapContainer< TElementIdentifier, TElement >::InsertElement ( ElementIdentifier  id,
Element  element 
)

Set the given index value to the given element. If the index doesn't exist, it is automatically created.

Definition at line 103 of file itkMapContainer.txx.

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.

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<typename TElementIdentifier, typename TElement>
static Pointer itk::MapContainer< TElementIdentifier, TElement >::New ( )
static

Method for creation through the object factory.

Referenced by itk::QuadEdgeMeshFrontBaseIterator< TMesh, TQE >::QuadEdgeMeshFrontBaseIterator().

template<typename TElementIdentifier, typename TElement>
void itk::MapContainer< TElementIdentifier, TElement >::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 >, otb::PersistentStreamingStatisticsVectorImageFilter< TInputImage, TPrecision >, 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, 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::PersistentStatisticsImageFilter< TInputImage >, 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::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< T3DImage, TOutputDEMImage >, 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::MutexLock::PrintSelf(), itk::ValarrayImageContainer< TElementIdentifier, TElement >::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().

template<typename TElementIdentifier , typename TElement >
void itk::MapContainer< TElementIdentifier, TElement >::Reserve ( ElementIdentifier  sz)

Tell the container to allocate enough memory to allow at least as many elements as the size given to be stored. This is NOT guaranteed to actually allocate any memory, but is useful if the implementation of the container allocates contiguous storage.

Tell the container to allocate enough memory to allow at least as many elements as the size given to be stored. This is NOT guaranteed to actually allocate any memory, but is useful if the implementation of the container allocates contiguous storage.

Warning
In the particular case of the MapContainer, this method only allocates memory for one element, not for the ones with index between zero and "size".

Definition at line 246 of file itkMapContainer.txx.

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.

template<typename TElementIdentifier , typename TElement >
void itk::MapContainer< TElementIdentifier, TElement >::SetElement ( ElementIdentifier  id,
Element  element 
)

Set the given index value to the given element. If the index doesn't exist, it is automatically created.

Definition at line 89 of file itkMapContainer.txx.

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
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<typename TElementIdentifier , typename TElement >
unsigned long itk::MapContainer< TElementIdentifier, TElement >::Size ( void  ) const

Get the number of elements currently stored in the map.

Definition at line 228 of file itkMapContainer.txx.

template<typename TElementIdentifier , typename TElement >
void itk::MapContainer< TElementIdentifier, TElement >::Squeeze ( void  )

Tell the container to try to minimize its memory usage for storage of the current number of elements. This is NOT guaranteed to decrease memory usage.

Definition at line 264 of file itkMapContainer.txx.

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().

Friends And Related Function Documentation

template<typename TElementIdentifier, typename TElement>
friend class ConstIterator
friend

Definition at line 107 of file itkMapContainer.h.

template<typename TElementIdentifier, typename TElement>
friend class Iterator
friend

Definition at line 105 of file itkMapContainer.h.

Member Data Documentation

T std::map< K, T >::elements
inherited

STL member.

K std::map< K, T >::keys
inherited

STL member.

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.


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

Generated at Sun May 19 2013 02:07:33 for Orfeo Toolbox with doxygen 1.8.3.1