1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
/*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#ifndef sitkTransform_h
#define sitkTransform_h
#include "sitkCommon.h"
#include "sitkExceptionObject.h"
#include "sitkImage.h"
#include <vector>
namespace itk
{
// Forward declaration for pointer
// After ITK_VERSION 4.5 (Acutally after June 20th, 2013) the ITK Transform
// classes are now templated. This requires forward declarations to be defined
// differently.
#if ( ( SITK_ITK_VERSION_MAJOR == 4 ) && ( SITK_ITK_VERSION_MINOR < 5 ) )
class TransformBase;
#else
template< typename TScalar > class TransformBaseTemplate;
typedef TransformBaseTemplate<double> TransformBase;
#endif
template< typename TScalar, unsigned int NDimension> class CompositeTransform;
namespace simple
{
class PimpleTransformBase;
enum TransformEnum { sitkIdentity,
sitkTranslation,
sitkScale,
sitkScaleLogarithmic,
sitkEuler,
sitkSimilarity,
sitkQuaternionRigid,
sitkVersor,
sitkVersorRigid,
sitkScaleSkewVersor,
sitkAffine,
sitkComposite,
sitkDisplacementField,
sitkBSplineTransform
};
/** \brief A simplified wrapper around a variety of ITK transforms.
*
* The interface to ITK transform objects to be used with the
* ImageRegistrationMethod, ResampleImageFilter and other SimpleITK
* process objects. The transforms are designed to have a serialized
* array of parameters to facilitate optimization for registration.
*
* Provides a base class interface to any type of ITK
* transform. Objects of this type may have their interface converted
* to a derived interface while keeping the same reference to the ITK
* object.
*
* Additionally, this class provides a basic interface to a composite
* transforms.
*
* \sa itk::CompositeTransform
*/
class SITKCommon_EXPORT Transform
{
public:
typedef Transform Self;
/** \brief By default a 3-d identity transform is constructed
*/
Transform( void );
/** \brief Construct a SimpleITK Transform from a pointer to an ITK
* composite transform.
*
*/
template<unsigned int NDimension>
explicit Transform( itk::CompositeTransform< double, NDimension >* compositeTransform )
: m_PimpleTransform( NULL )
{
sitkStaticAssert( NDimension == 2 || NDimension == 3, "Only 2D and 3D transforms are supported" );
if ( compositeTransform == NULL )
{
sitkExceptionMacro( "Unable to construct a null transform!" );
}
this->InternalInitialization<NDimension>( sitkComposite, compositeTransform );
}
explicit Transform( itk::TransformBase *transform );
/** \brief Construct a specific transformation
*
* \deprecated This constructor will be removed in future releases.
*/
Transform( unsigned int dimensions, TransformEnum type);
/** \brief Use an image to construct a transform.
*
* The input displacement image is transferred to the constructed
* transform object. The input image is modified to be a default
* constructed Image object.
*
* Only the sitkDisplacementField transformation type can currently
* be constructed this way. Image must be of sitkVectorFloat64 pixel
* type with the number of components equal to the image dimension.
*
* \deprecated This constructor will be removed in future releases.
*/
Transform( Image &displacement, TransformEnum type = sitkDisplacementField );
virtual ~Transform( void );
/** \brief Copy constructor and assignment operator
*
* Performs a shallow copy of the internal ITK transform. A deep
* copy will be done if the transform in modified.
* @{
*/
Transform &operator=( const Transform & );
Transform( const Transform & );
/**@}*/
/** Get access to internal ITK data object.
*
* The return value should imediately be assigned to as
* itk::SmartPointer.
*
* In many cases the value may need to be dynamically casted to
* the the actual transform type.
*
* @{
*/
itk::TransformBase* GetITKBase( void );
const itk::TransformBase* GetITKBase( void ) const;
/**@}*/
/** Return the dimension of the Transform ( 2D or 3D )
*/
unsigned int GetDimension( void ) const;
// todo get transform type
/** Set/Get Transform Parameter
* @{
*/
void SetParameters ( const std::vector<double>& parameters );
std::vector<double> GetParameters( void ) const ;
/**@}*/
/** Set/Get Fixed Transform Parameter
* @{
*/
void SetFixedParameters ( const std::vector<double>& parameters );
std::vector<double> GetFixedParameters( void ) const ;
/**@}*/
// Make composition
SITK_RETURN_SELF_TYPE_HEADER AddTransform( Transform t );
std::vector< double > TransformPoint( const std::vector< double > &point ) const;
// write
void WriteTransform( const std::string &filename ) const;
virtual bool IsLinear() const;
virtual void SetIdentity();
/** \brief Try to change the current transform to it's inverse.
*
* If the transform has an inverse, i.e. non-singular linear
* transforms, then a new ITK transform is created of the same type
* and this object is set to it.
*
* However not all transform have a direct inverse, if the inverse
* does not exist or fails false will be returned and this transform
* will not be modified.
*/
virtual bool SetInverse();
/** \brief Return a new inverse transform of the same type as this.
*
* Creates a new transform object and tries to set the value to the
* inverse. As not all transform types have inverse and some
* transforms are not invertable, an exception will be throw is
* there is no inverse.
*/
Transform GetInverse() const;
std::string ToString( void ) const;
/** return user readable name for the SimpleITK transform */
virtual std::string GetName() const;
/** \brief Performs actually coping if needed to make object unique.
*
* The Transform class by default performs lazy coping and
* assignment. This method make sure that coping actually happens
* to the itk::Transform pointed to is only pointed to by this
* object.
*/
void MakeUnique( void );
protected:
explicit Transform( PimpleTransformBase *pimpleTransform );
// this method is called to set the private pimpleTransfrom outside
// of the constructor, derived classes can override it of update the
// state.
virtual void SetPimpleTransform( PimpleTransformBase *pimpleTransform );
private:
template< unsigned int VDimension>
void InternalInitialization( TransformEnum type, itk::TransformBase *base = NULL );
struct TransformTryCastVisitor
{
itk::TransformBase *transform;
Transform *that;
template< typename TransformType >
void operator() ( void ) const
{
TransformType *t = dynamic_cast<TransformType*>(transform);
if (t)
{
that->InternalInitialization<TransformType>(t);
}
}
};
template< class TransformType>
void InternalInitialization( TransformType *t );
void InternalInitialization( itk::TransformBase *base );
template< unsigned int >
void InternalBSplineInitialization( Image & img );
template< typename TDisplacementType >
void InternalDisplacementInitialization( Image & img );
template < class TMemberFunctionPointer >
struct DisplacementInitializationMemberFunctionAddressor
{
typedef typename ::detail::FunctionTraits<TMemberFunctionPointer>::ClassType ObjectType;
template< typename TImageType >
TMemberFunctionPointer operator() ( void ) const
{
return &ObjectType::template InternalDisplacementInitialization< TImageType >;
}
};
// As is the architecture of all SimpleITK pimples,
// this pointer should never be null and should always point to a
// valid object
PimpleTransformBase *m_PimpleTransform;
};
// read
SITKCommon_EXPORT Transform ReadTransform( const std::string &filename );
// write
SITKCommon_EXPORT void WriteTransform( const Transform &transform, const std::string &filename);
}
}
#endif // sitkTransform_h
|