As I understand the itk::AffineTransform is composed of translation, rotation, scaling and shear. So if I have a moving image that is translated a few mm to the left and then rotated a few degrees clockwise I could use itk::AffineTransform once to resolve the misalignment. Alternatively I had to first do a translation transform followed by a rotation transform which yields 2 transforms.<br>
<br>Is it correct that itk::AffineTransform is basically just used to combine a sequence of transforms (translation, rotation, scaling and shear) into one?<br>