SimpleITK  1.2.4
Public Types | Public Member Functions | Private Types | Private Member Functions | Private Attributes | Friends | List of all members
itk::simple::DemonsRegistrationFilter Class Reference

Deformably register two images using the demons algorithm. More...

#include <sitkDemonsRegistrationFilter.h>

+ Inheritance diagram for itk::simple::DemonsRegistrationFilter:
+ Collaboration diagram for itk::simple::DemonsRegistrationFilter:

Public Types

typedef BasicPixelIDTypeList PixelIDTypeList
 
typedef DemonsRegistrationFilter Self
 
- Public Types inherited from itk::simple::ImageFilter< 0 >
typedef ImageFilter Self
 
- Public Types inherited from itk::simple::ProcessObject
typedef ProcessObject Self
 

Public Member Functions

 DemonsRegistrationFilter ()
 
Image Execute (const Image &fixedImage, const Image &movingImage, const Image &initialDisplacementField)
 
Image Execute (const Image &fixedImage, const Image &movingImage)
 
Image Execute (const Image &fixedImage, const Image &movingImage, const Image &initialDisplacementField, const std::vector< double > &standardDeviations, uint32_t numberOfIterations, double maximumRMSError, bool useMovingImageGradient, bool smoothDisplacementField, bool smoothUpdateField, const std::vector< double > &updateFieldStandardDeviations, unsigned int maximumKernelWidth, double maximumError, double intensityDifferenceThreshold, bool useImageSpacing)
 
Image Execute (const Image &fixedImage, const Image &movingImage, const std::vector< double > &standardDeviations, uint32_t numberOfIterations, double maximumRMSError, bool useMovingImageGradient, bool smoothDisplacementField, bool smoothUpdateField, const std::vector< double > &updateFieldStandardDeviations, unsigned int maximumKernelWidth, double maximumError, double intensityDifferenceThreshold, bool useImageSpacing)
 
uint32_t GetElapsedIterations () const
 Number of iterations run. More...
 
double GetIntensityDifferenceThreshold () const
 
double GetMaximumError () const
 
unsigned int GetMaximumKernelWidth () const
 
double GetMaximumRMSError () const
 
double GetMetric () const
 
std::string GetName () const
 
uint32_t GetNumberOfIterations () const
 
double GetRMSChange () const
 The Root Mean Square of the levelset upon termination. More...
 
bool GetSmoothDisplacementField () const
 
bool GetSmoothUpdateField () const
 
std::vector< double > GetStandardDeviations () const
 
std::vector< double > GetUpdateFieldStandardDeviations () const
 
bool GetUseImageSpacing () const
 
bool GetUseMovingImageGradient () const
 
SelfSetIntensityDifferenceThreshold (double IntensityDifferenceThreshold)
 
SelfSetMaximumError (double MaximumError)
 
SelfSetMaximumKernelWidth (unsigned int MaximumKernelWidth)
 
SelfSetMaximumRMSError (double MaximumRMSError)
 
SelfSetNumberOfIterations (uint32_t NumberOfIterations)
 
SelfSetSmoothDisplacementField (bool SmoothDisplacementField)
 
SelfSetSmoothUpdateField (bool SmoothUpdateField)
 
SelfSetStandardDeviations (const std::vector< double > &StandardDeviations)
 
SelfSetStandardDeviations (double value)
 
SelfSetUpdateFieldStandardDeviations (const std::vector< double > &UpdateFieldStandardDeviations)
 
SelfSetUpdateFieldStandardDeviations (double value)
 
SelfSetUseImageSpacing (bool UseImageSpacing)
 
SelfSetUseMovingImageGradient (bool UseMovingImageGradient)
 
SelfSmoothDisplacementFieldOff ()
 
SelfSmoothDisplacementFieldOn ()
 
SelfSmoothUpdateFieldOff ()
 
SelfSmoothUpdateFieldOn ()
 
std::string ToString () const
 
SelfUseImageSpacingOff ()
 
SelfUseImageSpacingOn ()
 
SelfUseMovingImageGradientOff ()
 
SelfUseMovingImageGradientOn ()
 
virtual ~DemonsRegistrationFilter ()
 
- Public Member Functions inherited from itk::simple::ImageFilter< 0 >
 ImageFilter ()
 
virtual ~ImageFilter ()=0
 
- Public Member Functions inherited from itk::simple::ProcessObject
virtual void Abort ()
 
virtual int AddCommand (itk::simple::EventEnum event, itk::simple::Command &cmd)
 Add a Command Object to observer the event. More...
 
virtual float GetProgress () const
 An Active Measurement of the progress of execution. More...
 
virtual bool HasCommand (itk::simple::EventEnum event) const
 Query of this object has any registered commands for event. More...
 
 ProcessObject ()
 
virtual void RemoveAllCommands ()
 Remove all registered commands. More...
 
virtual ~ProcessObject ()
 
virtual void DebugOn ()
 
virtual void DebugOff ()
 
virtual bool GetDebug () const
 
virtual void SetDebug (bool debugFlag)
 
virtual void SetNumberOfThreads (unsigned int n)
 
virtual unsigned int GetNumberOfThreads () const
 

Private Types

typedef Image(Self::* MemberFunctionType) (const Image *fixedImage, const Image *movingImage, const Image *initialDisplacementField)
 

Private Member Functions

template<class TImageType >
Image ExecuteInternal (const Image *fixedImage, const Image *movingImage, const Image *initialDisplacementField)
 

Private Attributes

itk::ProcessObjectm_Filter
 
double m_IntensityDifferenceThreshold
 
double m_MaximumError
 
unsigned int m_MaximumKernelWidth
 
double m_MaximumRMSError
 
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
 
uint32_t m_NumberOfIterations
 
nsstd::function< uint32_t()> m_pfGetElapsedIterations
 
nsstd::function< double()> m_pfGetMetric
 
double m_RMSChange
 
bool m_SmoothDisplacementField
 
bool m_SmoothUpdateField
 
std::vector< double > m_StandardDeviations
 
std::vector< double > m_UpdateFieldStandardDeviations
 
bool m_UseImageSpacing
 
bool m_UseMovingImageGradient
 

Friends

struct detail::MemberFunctionAddressor< MemberFunctionType >
 

Additional Inherited Members

- Static Public Member Functions inherited from itk::simple::ProcessObject
static bool GetGlobalDefaultDebug ()
 
static void GlobalDefaultDebugOff ()
 
static void GlobalDefaultDebugOn ()
 
static void SetGlobalDefaultDebug (bool debugFlag)
 
static void GlobalWarningDisplayOn ()
 
static void GlobalWarningDisplayOff ()
 
static void SetGlobalWarningDisplay (bool flag)
 
static bool GetGlobalWarningDisplay ()
 
static void SetGlobalDefaultNumberOfThreads (unsigned int n)
 
static unsigned int GetGlobalDefaultNumberOfThreads ()
 
static double GetGlobalDefaultCoordinateTolerance ()
 Access the global tolerance to determine congruent spaces. More...
 
static void SetGlobalDefaultCoordinateTolerance (double)
 Access the global tolerance to determine congruent spaces. More...
 
static double GetGlobalDefaultDirectionTolerance ()
 Access the global tolerance to determine congruent spaces. More...
 
static void SetGlobalDefaultDirectionTolerance (double)
 Access the global tolerance to determine congruent spaces. More...
 
- Protected Member Functions inherited from itk::simple::ProcessObject
virtual unsigned long AddITKObserver (const itk::EventObject &, itk::Command *)
 
virtual itk::ProcessObjectGetActiveProcess ()
 
virtual void OnActiveProcessDelete ()
 
virtual void onCommandDelete (const itk::simple::Command *cmd) SITK_NOEXCEPT
 
virtual void PreUpdate (itk::ProcessObject *p)
 
virtual void RemoveITKObserver (EventCommand &e)
 
- Protected Member Functions inherited from itk::simple::NonCopyable
 NonCopyable ()
 
- Static Protected Member Functions inherited from itk::simple::ImageFilter< 0 >
static void FixNonZeroIndex (TImageType *img)
 
- Static Protected Member Functions inherited from itk::simple::ProcessObject
template<class TImageType >
static TImageType::ConstPointer CastImageToITK (const Image &img)
 
template<class TImageType >
static Image CastITKToImage (TImageType *img)
 
template<class TPixelType , unsigned int VImageDimension, unsigned int VLength, template< typename, unsigned int > class TVector>
static Image CastITKToImage (itk::Image< TVector< TPixelType, VLength >, VImageDimension > *img)
 
static const itk::EventObjectGetITKEventObject (EventEnum e)
 
template<typename T >
static std::ostream & ToStringHelper (std::ostream &os, const T &v)
 
static std::ostream & ToStringHelper (std::ostream &os, const char &v)
 
static std::ostream & ToStringHelper (std::ostream &os, const signed char &v)
 
static std::ostream & ToStringHelper (std::ostream &os, const unsigned char &v)
 

Detailed Description

Deformably register two images using the demons algorithm.

DemonsRegistrationFilter implements the demons deformable algorithm that register two images by computing the displacement field which will map a moving image onto a fixed image.

A displacement field is represented as a image whose pixel type is some vector type with at least N elements, where N is the dimension of the fixed image. The vector type must support element access via operator []. It is assumed that the vector elements behave like floating point scalars.

This class is templated over the fixed image type, moving image type and the displacement field type.

The input fixed and moving images are set via methods SetFixedImage and SetMovingImage respectively. An initial displacement field maybe set via SetInitialDisplacementField or SetInput. If no initial field is set, a zero field is used as the initial condition.

The algorithm has one parameters: the number of iteration to be performed.

The output displacement field can be obtained via methods GetOutput or GetDisplacementField.

This class make use of the finite difference solver hierarchy. Update for each iteration is computed in DemonsRegistrationFunction .

Warning
This filter assumes that the fixed image type, moving image type and displacement field type all have the same number of dimensions.
See also
DemonsRegistrationFunction
itk::DemonsRegistrationFilter for the Doxygen on the original ITK class.
Examples:
DemonsRegistration1/DemonsRegistration1.cxx.

Definition at line 58 of file sitkDemonsRegistrationFilter.h.

Member Typedef Documentation

typedef Image(Self::* itk::simple::DemonsRegistrationFilter::MemberFunctionType) (const Image *fixedImage, const Image *movingImage, const Image *initialDisplacementField)
private

Setup for member function dispatching

Definition at line 246 of file sitkDemonsRegistrationFilter.h.

Define the pixels types supported by this filter

Definition at line 70 of file sitkDemonsRegistrationFilter.h.

Definition at line 60 of file sitkDemonsRegistrationFilter.h.

Constructor & Destructor Documentation

virtual itk::simple::DemonsRegistrationFilter::~DemonsRegistrationFilter ( )
virtual

Destructor

itk::simple::DemonsRegistrationFilter::DemonsRegistrationFilter ( )

Default Constructor that takes no arguments and initializes default parameters

Member Function Documentation

Image itk::simple::DemonsRegistrationFilter::Execute ( const Image fixedImage,
const Image movingImage,
const Image initialDisplacementField 
)

Execute the filter on the input image

Examples:
DemonsRegistration1/DemonsRegistration1.cxx.
Image itk::simple::DemonsRegistrationFilter::Execute ( const Image fixedImage,
const Image movingImage 
)
Image itk::simple::DemonsRegistrationFilter::Execute ( const Image fixedImage,
const Image movingImage,
const Image initialDisplacementField,
const std::vector< double > &  standardDeviations,
uint32_t  numberOfIterations,
double  maximumRMSError,
bool  useMovingImageGradient,
bool  smoothDisplacementField,
bool  smoothUpdateField,
const std::vector< double > &  updateFieldStandardDeviations,
unsigned int  maximumKernelWidth,
double  maximumError,
double  intensityDifferenceThreshold,
bool  useImageSpacing 
)

Execute the filter on the input image with the given parameters

Image itk::simple::DemonsRegistrationFilter::Execute ( const Image fixedImage,
const Image movingImage,
const std::vector< double > &  standardDeviations,
uint32_t  numberOfIterations,
double  maximumRMSError,
bool  useMovingImageGradient,
bool  smoothDisplacementField,
bool  smoothUpdateField,
const std::vector< double > &  updateFieldStandardDeviations,
unsigned int  maximumKernelWidth,
double  maximumError,
double  intensityDifferenceThreshold,
bool  useImageSpacing 
)
template<class TImageType >
Image itk::simple::DemonsRegistrationFilter::ExecuteInternal ( const Image fixedImage,
const Image movingImage,
const Image initialDisplacementField 
)
private
uint32_t itk::simple::DemonsRegistrationFilter::GetElapsedIterations ( ) const
inline

Number of iterations run.

This is an active measurement. It may be accessed while the filter is being executing in command call-backs and can be accessed after execution.

Examples:
DemonsRegistration1/DemonsRegistration1.cxx.

Definition at line 207 of file sitkDemonsRegistrationFilter.h.

double itk::simple::DemonsRegistrationFilter::GetIntensityDifferenceThreshold ( ) const
inline

Definition at line 187 of file sitkDemonsRegistrationFilter.h.

double itk::simple::DemonsRegistrationFilter::GetMaximumError ( ) const
inline

Set/Get the desired maximum error of the Guassian kernel approximate.

Definition at line 178 of file sitkDemonsRegistrationFilter.h.

unsigned int itk::simple::DemonsRegistrationFilter::GetMaximumKernelWidth ( ) const
inline

Set/Get the desired limits of the Gaussian kernel width.

Definition at line 168 of file sitkDemonsRegistrationFilter.h.

double itk::simple::DemonsRegistrationFilter::GetMaximumRMSError ( ) const
inline

Definition at line 102 of file sitkDemonsRegistrationFilter.h.

double itk::simple::DemonsRegistrationFilter::GetMetric ( ) const
inline

Get the metric value. The metric value is the mean square difference in intensity between the fixed image and transforming moving image computed over the the overlapping region between the two images. This is value is only available for the previous iteration and NOT the current iteration.

This is an active measurement. It may be accessed while the filter is being executing in command call-backs and can be accessed after execution.

Definition at line 224 of file sitkDemonsRegistrationFilter.h.

std::string itk::simple::DemonsRegistrationFilter::GetName ( ) const
inlinevirtual

Name of this class

Implements itk::simple::ProcessObject.

Definition at line 227 of file sitkDemonsRegistrationFilter.h.

uint32_t itk::simple::DemonsRegistrationFilter::GetNumberOfIterations ( ) const
inline

Definition at line 94 of file sitkDemonsRegistrationFilter.h.

double itk::simple::DemonsRegistrationFilter::GetRMSChange ( ) const
inline

The Root Mean Square of the levelset upon termination.

This is a measurement. Its value is updated in the Execute methods, so the value will only be valid after an execution.

Examples:
DemonsRegistration1/DemonsRegistration1.cxx.

Definition at line 215 of file sitkDemonsRegistrationFilter.h.

bool itk::simple::DemonsRegistrationFilter::GetSmoothDisplacementField ( ) const
inline

Set/Get whether the displacement field is smoothed (regularized). Smoothing the displacement yields a solution elastic in nature. If SmoothDisplacementField is on, then the displacement field is smoothed with a Gaussian whose standard deviations are specified with SetStandardDeviations()

Definition at line 130 of file sitkDemonsRegistrationFilter.h.

bool itk::simple::DemonsRegistrationFilter::GetSmoothUpdateField ( ) const
inline

Set/Get whether the update field is smoothed (regularized). Smoothing the update field yields a solution viscous in nature. If SmoothUpdateField is on, then the update field is smoothed with a Gaussian whose standard deviations are specified with SetUpdateFieldStandardDeviations()

Definition at line 144 of file sitkDemonsRegistrationFilter.h.

std::vector<double> itk::simple::DemonsRegistrationFilter::GetStandardDeviations ( ) const
inline

Set/Get the Gaussian smoothing standard deviations for the displacement field. The values are set with respect to pixel coordinates.

Definition at line 86 of file sitkDemonsRegistrationFilter.h.

std::vector<double> itk::simple::DemonsRegistrationFilter::GetUpdateFieldStandardDeviations ( ) const
inline

Set the Gaussian smoothing standard deviations for the update field. The values are set with respect to pixel coordinates.

Definition at line 158 of file sitkDemonsRegistrationFilter.h.

bool itk::simple::DemonsRegistrationFilter::GetUseImageSpacing ( ) const
inline

Definition at line 199 of file sitkDemonsRegistrationFilter.h.

bool itk::simple::DemonsRegistrationFilter::GetUseMovingImageGradient ( ) const
inline

Switch between using the fixed image and moving image gradient for computing the displacement field updates.

Definition at line 116 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::SetIntensityDifferenceThreshold ( double  IntensityDifferenceThreshold)
inline

Set/Get the threshold below which the absolute difference of intensity yields a match. When the intensities match between a moving and fixed image pixel, the update vector (for that iteration) will be the zero vector. Default is 0.001.

Definition at line 183 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::SetMaximumError ( double  MaximumError)
inline

Set/Get the desired maximum error of the Guassian kernel approximate.

Definition at line 173 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::SetMaximumKernelWidth ( unsigned int  MaximumKernelWidth)
inline

Set/Get the desired limits of the Gaussian kernel width.

Definition at line 163 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::SetMaximumRMSError ( double  MaximumRMSError)
inline

Definition at line 98 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::SetNumberOfIterations ( uint32_t  NumberOfIterations)
inline
Self& itk::simple::DemonsRegistrationFilter::SetSmoothDisplacementField ( bool  SmoothDisplacementField)
inline

Set/Get whether the displacement field is smoothed (regularized). Smoothing the displacement yields a solution elastic in nature. If SmoothDisplacementField is on, then the displacement field is smoothed with a Gaussian whose standard deviations are specified with SetStandardDeviations()

Definition at line 121 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::SetSmoothUpdateField ( bool  SmoothUpdateField)
inline

Set/Get whether the update field is smoothed (regularized). Smoothing the update field yields a solution viscous in nature. If SmoothUpdateField is on, then the update field is smoothed with a Gaussian whose standard deviations are specified with SetUpdateFieldStandardDeviations()

Definition at line 135 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::SetStandardDeviations ( const std::vector< double > &  StandardDeviations)
inline

Set/Get the Gaussian smoothing standard deviations for the displacement field. The values are set with respect to pixel coordinates.

Examples:
DemonsRegistration1/DemonsRegistration1.cxx.

Definition at line 77 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::SetStandardDeviations ( double  value)
inline

Set the values of the StandardDeviations vector all to value

Definition at line 80 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::SetUpdateFieldStandardDeviations ( const std::vector< double > &  UpdateFieldStandardDeviations)
inline

Set the Gaussian smoothing standard deviations for the update field. The values are set with respect to pixel coordinates.

Definition at line 149 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::SetUpdateFieldStandardDeviations ( double  value)
inline

Set the values of the UpdateFieldStandardDeviations vector all to value

Definition at line 152 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::SetUseImageSpacing ( bool  UseImageSpacing)
inline

Definition at line 191 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::SetUseMovingImageGradient ( bool  UseMovingImageGradient)
inline

Switch between using the fixed image and moving image gradient for computing the displacement field updates.

Definition at line 107 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::SmoothDisplacementFieldOff ( )
inline

Definition at line 125 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::SmoothDisplacementFieldOn ( )
inline

Set the value of SmoothDisplacementField to true or false respectfully.

Definition at line 124 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::SmoothUpdateFieldOff ( )
inline

Definition at line 139 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::SmoothUpdateFieldOn ( )
inline

Set the value of SmoothUpdateField to true or false respectfully.

Definition at line 138 of file sitkDemonsRegistrationFilter.h.

std::string itk::simple::DemonsRegistrationFilter::ToString ( ) const
virtual

Print ourselves out

Reimplemented from itk::simple::ProcessObject.

Self& itk::simple::DemonsRegistrationFilter::UseImageSpacingOff ( )
inline

Definition at line 195 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::UseImageSpacingOn ( )
inline

Set the value of UseImageSpacing to true or false respectfully.

Definition at line 194 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::UseMovingImageGradientOff ( )
inline

Definition at line 111 of file sitkDemonsRegistrationFilter.h.

Self& itk::simple::DemonsRegistrationFilter::UseMovingImageGradientOn ( )
inline

Set the value of UseMovingImageGradient to true or false respectfully.

Definition at line 110 of file sitkDemonsRegistrationFilter.h.

Friends And Related Function Documentation

Definition at line 250 of file sitkDemonsRegistrationFilter.h.

Member Data Documentation

itk::ProcessObject* itk::simple::DemonsRegistrationFilter::m_Filter
private

Definition at line 276 of file sitkDemonsRegistrationFilter.h.

double itk::simple::DemonsRegistrationFilter::m_IntensityDifferenceThreshold
private

Definition at line 266 of file sitkDemonsRegistrationFilter.h.

double itk::simple::DemonsRegistrationFilter::m_MaximumError
private

Definition at line 265 of file sitkDemonsRegistrationFilter.h.

unsigned int itk::simple::DemonsRegistrationFilter::m_MaximumKernelWidth
private

Definition at line 264 of file sitkDemonsRegistrationFilter.h.

double itk::simple::DemonsRegistrationFilter::m_MaximumRMSError
private

Definition at line 259 of file sitkDemonsRegistrationFilter.h.

nsstd::auto_ptr<detail::MemberFunctionFactory<MemberFunctionType> > itk::simple::DemonsRegistrationFilter::m_MemberFactory
private

Definition at line 252 of file sitkDemonsRegistrationFilter.h.

uint32_t itk::simple::DemonsRegistrationFilter::m_NumberOfIterations
private

Definition at line 257 of file sitkDemonsRegistrationFilter.h.

nsstd::function<uint32_t()> itk::simple::DemonsRegistrationFilter::m_pfGetElapsedIterations
private

Definition at line 269 of file sitkDemonsRegistrationFilter.h.

nsstd::function<double()> itk::simple::DemonsRegistrationFilter::m_pfGetMetric
private

Definition at line 273 of file sitkDemonsRegistrationFilter.h.

double itk::simple::DemonsRegistrationFilter::m_RMSChange
private

Definition at line 271 of file sitkDemonsRegistrationFilter.h.

bool itk::simple::DemonsRegistrationFilter::m_SmoothDisplacementField
private

Definition at line 261 of file sitkDemonsRegistrationFilter.h.

bool itk::simple::DemonsRegistrationFilter::m_SmoothUpdateField
private

Definition at line 262 of file sitkDemonsRegistrationFilter.h.

std::vector<double> itk::simple::DemonsRegistrationFilter::m_StandardDeviations
private

Definition at line 255 of file sitkDemonsRegistrationFilter.h.

std::vector<double> itk::simple::DemonsRegistrationFilter::m_UpdateFieldStandardDeviations
private

Definition at line 263 of file sitkDemonsRegistrationFilter.h.

bool itk::simple::DemonsRegistrationFilter::m_UseImageSpacing
private

Definition at line 267 of file sitkDemonsRegistrationFilter.h.

bool itk::simple::DemonsRegistrationFilter::m_UseMovingImageGradient
private

Definition at line 260 of file sitkDemonsRegistrationFilter.h.


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