Transformations.h
1 /*
2  * Medical Image Registration ToolKit (MIRTK)
3  *
4  * Copyright 2013-2015 Imperial College London
5  * Copyright 2013-2015 Andreas Schuh
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 
20 #ifndef MIRTK_Transformations_H
21 #define MIRTK_Transformations_H
22 
23 
24 // Transformation model enumerations and auxiliary functions
25 #include "mirtk/TransformationModel.h"
26 
27 // Homogeneous transformations
28 #include "mirtk/HomogeneousTransformation.h"
29 #include "mirtk/RigidTransformation.h"
30 #include "mirtk/SimilarityTransformation.h"
31 #include "mirtk/AffineTransformation.h"
32 
33 // Free-form transformations
34 #include "mirtk/FreeFormTransformation.h"
35 #include "mirtk/FreeFormTransformation3D.h"
36 #include "mirtk/FreeFormTransformation4D.h"
37 
38 #include "mirtk/BSplineFreeFormTransformation3D.h"
39 #include "mirtk/BSplineFreeFormTransformation4D.h"
40 #include "mirtk/BSplineFreeFormTransformationSV.h"
41 #include "mirtk/BSplineFreeFormTransformationTD.h"
42 #include "mirtk/BSplineFreeFormTransformationStatistical.h"
43 #include "mirtk/LinearFreeFormTransformation3D.h"
44 #include "mirtk/LinearFreeFormTransformation4D.h"
45 #include "mirtk/LinearFreeFormTransformationTD.h"
46 
47 // Composite transformations
48 #include "mirtk/MultiLevelTransformation.h"
49 #include "mirtk/MultiLevelFreeFormTransformation.h"
50 #include "mirtk/MultiLevelStationaryVelocityTransformation.h"
51 #include "mirtk/FluidFreeFormTransformation.h"
52 
53 // Decorators (i.e., wrappers)
54 #include "mirtk/InverseAffineTransformation.h"
55 #include "mirtk/PartialAffineTransformation.h"
56 #include "mirtk/PartialBSplineFreeFormTransformationSV.h"
57 #include "mirtk/PartialMultiLevelStationaryVelocityTransformation.h"
58 
59 // Image transformation filters
60 #include "mirtk/ImageTransformation.h"
61 
62 
63 #endif // MIRTK_Transformations_H