SimpleITK  
Public Types | Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes | List of all members
itk::simple::Similarity2DTransform Class Reference

A similarity 2D transform with rotation in radians and isotropic scaling around a fixed center with translation. More...

#include <sitkSimilarity2DTransform.h>

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

Public Types

using Self = Similarity2DTransform
 
using Superclass = Transform
 
- Public Types inherited from itk::simple::Transform
using Self = Transform
 

Public Member Functions

double GetAngle () const
 
std::vector< double > GetCenter () const
 
std::vector< double > GetMatrix () const
 
std::string GetName () const override
 
double GetScale () const
 
std::vector< double > GetTranslation () const
 
Similarity2DTransformoperator= (const Similarity2DTransform &)
 
SelfSetAngle (double angle)
 
SelfSetCenter (const std::vector< double > &params)
 
SelfSetMatrix (const std::vector< double > &matrix, double tolerance=1e-10)
 
SelfSetScale (double scale)
 
SelfSetTranslation (const std::vector< double > &translation)
 
 Similarity2DTransform ()
 
 Similarity2DTransform (const Similarity2DTransform &)
 
 Similarity2DTransform (const Transform &)
 
 Similarity2DTransform (double scaleFactor, double angle=0.0, const std::vector< double > &translation=std::vector< double >(2, 0.0), const std::vector< double > &fixedCenter=std::vector< double >(2, 0.0))
 
 ~Similarity2DTransform () override
 
- Public Member Functions inherited from itk::simple::Transform
unsigned int GetDimension () const
 
Transform GetInverse () const
 Return a new inverse transform of the same type as this. More...
 
unsigned int GetNumberOfFixedParameters () const
 
unsigned int GetNumberOfParameters () const
 
TransformEnum GetTransformEnum () const
 Get the TransformEnum of the underlying Transform. More...
 
virtual bool IsLinear () const
 
void MakeUnique ()
 Performs actually coping if needed to make object unique. More...
 
virtual void SetIdentity ()
 
virtual bool SetInverse ()
 Try to change the current transform to it's inverse. More...
 
std::string ToString () const
 
 Transform ()
 By default a 3-d identity transform is constructed. More...
 
 Transform (Image &displacement, TransformEnum type=sitkDisplacementField)
 Use an image to construct a transform. More...
 
template<unsigned int NDimension>
 Transform (itk::CompositeTransform< double, NDimension > *compositeTransform)
 Construct a SimpleITK Transform from a pointer to an ITK composite transform. More...
 
 Transform (itk::TransformBase *transform)
 
 Transform (unsigned int dimensions, TransformEnum type)
 Construct a specific transformation. More...
 
std::vector< double > TransformPoint (const std::vector< double > &point) const
 
std::vector< double > TransformVector (const std::vector< double > &vector, const std::vector< double > &point) const
 
void WriteTransform (const std::string &filename) const
 
virtual ~Transform ()
 
Transformoperator= (const Transform &)
 Copy constructor and assignment operator. More...
 
 Transform (const Transform &)
 Copy constructor and assignment operator. More...
 
itk::TransformBaseGetITKBase ()
 
const itk::TransformBaseGetITKBase () const
 
void SetParameters (const std::vector< double > &parameters)
 
std::vector< double > GetParameters () const
 
void SetFixedParameters (const std::vector< double > &parameters)
 
std::vector< double > GetFixedParameters () const
 

Protected Member Functions

void SetPimpleTransform (std::unique_ptr< PimpleTransformBase > &&pimpleTransform) override
 
- Protected Member Functions inherited from itk::simple::Transform
 Transform (PimpleTransformBase *pimpleTransform)
 

Private Member Functions

void InternalInitialization (itk::TransformBase *transform)
 
template<typename TransformType >
void InternalInitialization (TransformType *transform)
 

Private Attributes

std::function< double()> m_pfGetAngle
 
std::function< std::vector< double >)> m_pfGetCenter
 
std::function< std::vector< double >)> m_pfGetMatrix
 
std::function< double()> m_pfGetScale
 
std::function< std::vector< double >)> m_pfGetTranslation
 
std::function< void(double)> m_pfSetAngle
 
std::function< void(const std::vector< double > &)> m_pfSetCenter
 
std::function< void(const std::vector< double > &, double)> m_pfSetMatrix
 
std::function< void(double)> m_pfSetScale
 
std::function< void(const std::vector< double > &)> m_pfSetTranslation
 

Detailed Description

A similarity 2D transform with rotation in radians and isotropic scaling around a fixed center with translation.

See also
itk::Similarity2DTransform

Definition at line 33 of file sitkSimilarity2DTransform.h.

Member Typedef Documentation

◆ Self

Definition at line 37 of file sitkSimilarity2DTransform.h.

◆ Superclass

Definition at line 38 of file sitkSimilarity2DTransform.h.

Constructor & Destructor Documentation

◆ ~Similarity2DTransform()

itk::simple::Similarity2DTransform::~Similarity2DTransform ( )
override

◆ Similarity2DTransform() [1/4]

itk::simple::Similarity2DTransform::Similarity2DTransform ( )

◆ Similarity2DTransform() [2/4]

itk::simple::Similarity2DTransform::Similarity2DTransform ( double  scaleFactor,
double  angle = 0.0,
const std::vector< double > &  translation = std::vector< double >(2, 0.0),
const std::vector< double > &  fixedCenter = std::vector< double >(2, 0.0) 
)
explicit

◆ Similarity2DTransform() [3/4]

itk::simple::Similarity2DTransform::Similarity2DTransform ( const Similarity2DTransform )

◆ Similarity2DTransform() [4/4]

itk::simple::Similarity2DTransform::Similarity2DTransform ( const Transform )
explicit

Member Function Documentation

◆ GetAngle()

double itk::simple::Similarity2DTransform::GetAngle ( ) const

◆ GetCenter()

std::vector<double> itk::simple::Similarity2DTransform::GetCenter ( ) const

◆ GetMatrix()

std::vector<double> itk::simple::Similarity2DTransform::GetMatrix ( ) const

additional methods

◆ GetName()

std::string itk::simple::Similarity2DTransform::GetName ( ) const
inlineoverridevirtual

Name of this class

Reimplemented from itk::simple::Transform.

Definition at line 57 of file sitkSimilarity2DTransform.h.

◆ GetScale()

double itk::simple::Similarity2DTransform::GetScale ( ) const

◆ GetTranslation()

std::vector<double> itk::simple::Similarity2DTransform::GetTranslation ( ) const

◆ InternalInitialization() [1/2]

void itk::simple::Similarity2DTransform::InternalInitialization ( itk::TransformBase transform)
private

◆ InternalInitialization() [2/2]

template<typename TransformType >
void itk::simple::Similarity2DTransform::InternalInitialization ( TransformType *  transform)
private

◆ operator=()

Similarity2DTransform& itk::simple::Similarity2DTransform::operator= ( const Similarity2DTransform )

◆ SetAngle()

Self& itk::simple::Similarity2DTransform::SetAngle ( double  angle)

parameter

◆ SetCenter()

Self& itk::simple::Similarity2DTransform::SetCenter ( const std::vector< double > &  params)

fixed parameter

◆ SetMatrix()

Self& itk::simple::Similarity2DTransform::SetMatrix ( const std::vector< double > &  matrix,
double  tolerance = 1e-10 
)

◆ SetPimpleTransform()

void itk::simple::Similarity2DTransform::SetPimpleTransform ( std::unique_ptr< PimpleTransformBase > &&  pimpleTransform)
overrideprotectedvirtual

Reimplemented from itk::simple::Transform.

◆ SetScale()

Self& itk::simple::Similarity2DTransform::SetScale ( double  scale)

◆ SetTranslation()

Self& itk::simple::Similarity2DTransform::SetTranslation ( const std::vector< double > &  translation)

Member Data Documentation

◆ m_pfGetAngle

std::function<double()> itk::simple::Similarity2DTransform::m_pfGetAngle
private

Definition at line 91 of file sitkSimilarity2DTransform.h.

◆ m_pfGetCenter

std::function<std::vector<double>)> itk::simple::Similarity2DTransform::m_pfGetCenter
private

Definition at line 89 of file sitkSimilarity2DTransform.h.

◆ m_pfGetMatrix

std::function<std::vector<double>)> itk::simple::Similarity2DTransform::m_pfGetMatrix
private

Definition at line 96 of file sitkSimilarity2DTransform.h.

◆ m_pfGetScale

std::function<double()> itk::simple::Similarity2DTransform::m_pfGetScale
private

Definition at line 95 of file sitkSimilarity2DTransform.h.

◆ m_pfGetTranslation

std::function<std::vector<double>)> itk::simple::Similarity2DTransform::m_pfGetTranslation
private

Definition at line 93 of file sitkSimilarity2DTransform.h.

◆ m_pfSetAngle

std::function<void(double)> itk::simple::Similarity2DTransform::m_pfSetAngle
private

Definition at line 90 of file sitkSimilarity2DTransform.h.

◆ m_pfSetCenter

std::function<void(const std::vector<double>&)> itk::simple::Similarity2DTransform::m_pfSetCenter
private

Definition at line 88 of file sitkSimilarity2DTransform.h.

◆ m_pfSetMatrix

std::function<void(const std::vector<double>&, double)> itk::simple::Similarity2DTransform::m_pfSetMatrix
private

Definition at line 97 of file sitkSimilarity2DTransform.h.

◆ m_pfSetScale

std::function<void(double)> itk::simple::Similarity2DTransform::m_pfSetScale
private

Definition at line 94 of file sitkSimilarity2DTransform.h.

◆ m_pfSetTranslation

std::function<void(const std::vector<double>&)> itk::simple::Similarity2DTransform::m_pfSetTranslation
private

Definition at line 92 of file sitkSimilarity2DTransform.h.


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