<br>Hi Luis et al.,<br><br>In my understanding of itkAffineTransform, there is no (easy or direct) way to
separate out the rotation, scaling, and shearing components of
the transform, because we only have itkAffineTransform::GetMatrix().  In a prior email of this thread, I had commented that rotation might be extracted from the Rotate* methods, but that is not so (those methods are for pre/post compositions).  If it were possible to get the rotation component (say 2D transform, call this R), the following should provide a scaling component (call this S; the following uses Matlab syntax):<br>
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">A = S * R;</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">S = [ a 0; 0 b ];</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">R = [ cos(theta)  -sin(theta);  sin(theta)  cos(theta)];</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">S = A * inv(R);</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">% where inv(R) = [ cos(theta)  sin(theta);  -sin(theta)  cos(theta)];</span><br><br>
Anyhow, has anyone tried to re-write itkAffineTransform.txx so that the rotation, scaling, and shearing matrix are stored in separate private data members?  (This is beyond my current abilities to create quickly with confidence.)  If this is possible, it would provide the potential for methods like GetRotation(), GetShearing(), GetScaling() and the equivalent Set methods (which might become easier or clearer than the current methods for Scale(), Rotate(), etc.).  If this were done, the ComputeMatrixParameters() method may compose the private members for the rotation, scaling, and shearing matrices (to provide the composition for registration methods and thereby &quot;decrease&quot; the parameter dimension for efficiency).  Does that make sense?  Is this a complex issue due to the inheritance of itkAffineTransform from MatrixOffsetTransformBase?<br>
<br>Also, what additional functionality does itkScalableAffineTransform provide beyond itkAffineTransform::Scale()?<br><br>Take care,<br>Darren<br><br><br><br>BTW, at about line 196 of itkAffineTransform.txx (ITK 3.16.0; similarly for Rotate3D method at 226), there is a TODO item:<br>
<br><span style="font-family: courier new,monospace;">/** Compose with 2D rotation</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> * \todo Find a way to generate a compile-time error</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;"> * is this is used with NDimensions != 2. */</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">template&lt;class TScalarType, unsigned int NDimensions&gt;</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">void</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">AffineTransform&lt;TScalarType, NDimensions&gt;</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">::Rotate2D(TScalarType angle, bool pre)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"></span><br style="font-family: courier new,monospace;">
<br>Would a change to the following provide the compile time error required?<br><br><span style="font-family: courier new,monospace;">/** Compose with 2D rotation</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;"></span><span style="font-family: courier new,monospace;">template&lt;class TScalarType, 2&gt;</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">void</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">AffineTransform&lt;TScalarType, 2&gt;</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">::Rotate2D(TScalarType angle, bool pre)</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;"></span><br><br><br><br><br><br><br><br><br><br><div class="gmail_quote">On Sun, Nov 1, 2009 at 3:35 PM, Luis Ibanez <span dir="ltr">&lt;<a href="mailto:luis.ibanez@kitware.com">luis.ibanez@kitware.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi Darren,<br>
<br>
For an Affine transform in 2D, the GetParameters() will return an<br>
array with six elements, where the first four are the coefficients<br>
of the rotation (and scaling and shearing) matrix, and the last<br>
two elements are the components of the translation.<br>
<br>
This is described in the Doxygen documentation of this class:<br>
<a href="http://public.kitware.com/Insight/Doxygen/html/classitk_1_1AffineTransform.html" target="_blank">http://public.kitware.com/Insight/Doxygen/html/classitk_1_1AffineTransform.html</a><br>
<br>
&lt;quote&gt;<br>
<br>
&quot;This class provides several methods for setting the matrix and vector<br>
defining the transform. To support the registration framework, the<br>
transform parameters can also be set as an Array&lt;double&gt; of size<br>
(NDimension + 1) * NDimension using method SetParameters(). The first<br>
(NDimension x NDimension) parameters defines the matrix in row-major<br>
order (where the column index varies the fastest). The last NDimension<br>
parameters defines the translation in each dimensions.&quot;<br>
<br>
&lt;/quote&gt;<br>
<br>
<br>
      Regards<br>
<br>
<br>
             Luis<br>
<br>
<br>
------------------------------------------------------------------------------<br>
On Fri, Oct 30, 2009 at 7:09 PM, Darren Weber<br>
<div><div></div><div class="h5">&lt;<a href="mailto:darren.weber.lists@gmail.com">darren.weber.lists@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; For a 2D affine transform, what are the parameters returned by<br>
&gt; GetParameters?<br>
&gt;<br>
&gt; Thanks,<br>
&gt; Darren<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Mon, Oct 26, 2009 at 12:17 PM, Darren Weber<br>
&gt; &lt;<a href="mailto:darren.weber.lists@gmail.com">darren.weber.lists@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Sun, Oct 25, 2009 at 2:50 PM, Richard Beare &lt;<a href="mailto:richard.beare@gmail.com">richard.beare@gmail.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Hi,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; My solution to a similar problem was to use the similarity transform<br>
&gt;&gt;&gt; and throw away the scale component. In my data (marmoset brain<br>
&gt;&gt;&gt; sections) there was enough change in size between adjacent slices to<br>
&gt;&gt;&gt; make the more complex transform necessary. Without it the registration<br>
&gt;&gt;&gt; had a range of equivalent and wrong solutions - consider registering<br>
&gt;&gt;&gt; two discs of different sizes. Most metrics will consider all solutions<br>
&gt;&gt;&gt; with the small one inside the big one as equivalent, but you&#39;re<br>
&gt;&gt;&gt; probably going to want the one with the discs centres aligned.<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; I see, so the registration metrics worked better using the similarity<br>
&gt;&gt; transform than a rigid transform, but you get a rigid transform once you<br>
&gt;&gt; throw out the scale from the similarity transform.  The similarity transform<br>
&gt;&gt; is required for a more effective registration.  My problem is very similar,<br>
&gt;&gt; but using an affine transform (I do want to keep the shear transform<br>
&gt;&gt; component, which is not available in the similarity transform).<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; So I can see a couple of options - try using the simularity transform<br>
&gt;&gt;&gt; as your bulk transform and then turn of the scale later. (did you find<br>
&gt;&gt;&gt; a nice way of composing bsplines?)<br>
&gt;&gt;<br>
&gt;&gt; There are some options to look at later for the bspline composition (see<br>
&gt;&gt; Luis&#39; comments in the previous email thread;  I&#39;m not clear that it&#39;s easily<br>
&gt;&gt; applied to my problem and I don&#39;t have time to look into the details right<br>
&gt;&gt; now).  The bspline is conditioned using an affine as the bulk transform, so<br>
&gt;&gt; the scale issue needs to be addressed in the affine (or other bulk transform<br>
&gt;&gt; and possibly again in the bspline too).  The affine itself is initialized<br>
&gt;&gt; using a centered transform (of some kind; probably a center of mass metric<br>
&gt;&gt; and a translation transform).<br>
&gt;&gt;<br>
&gt;&gt; typedef itk::CenteredTransformInitializer&lt; TransformType,<br>
&gt;&gt; bwInputImageType, bwInputImageType &gt; TransformInitializerType;<br>
&gt;&gt; TransformInitializerType::Pointer initializer =<br>
&gt;&gt; TransformInitializerType::New();<br>
&gt;&gt; initializer-&gt;SetTransform( affineTransform );<br>
&gt;&gt; initializer-&gt;SetFixedImage(  bwFixInfoFilter-&gt;GetOutput() );<br>
&gt;&gt; initializer-&gt;SetMovingImage( bwMovInfoFilter-&gt;GetOutput() );<br>
&gt;&gt; initializer-&gt;MomentsOn();<br>
&gt;&gt; initializer-&gt;InitializeTransform();<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Or<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; There are ways of decomposing the affine transform matrix into shift,<br>
&gt;&gt;&gt; rotation, shear and scale components - from memory the publications<br>
&gt;&gt;&gt; relating to flirt (the fsl registration tool) discussed this, and it<br>
&gt;&gt;&gt; is probably available elsewhere.<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; I&#39;ve FLIRT many times in human brain imaging work, but I assume it will<br>
&gt;&gt; not work with the RGB images of the microscopy data (and I prefer to work<br>
&gt;&gt; with ITK on this project).  The approach that I&#39;ve taken is partly based on<br>
&gt;&gt; prior experience with FLIRT and similar registration tools for brain imaging<br>
&gt;&gt; (fMRI), where a series of pair-wise transforms can be calculated in parallel<br>
&gt;&gt; and applied later using a composition.  I didn&#39;t anticipate the scale<br>
&gt;&gt; problem in the composition for the data in this project.  (Perhaps the FLIRT<br>
&gt;&gt; command line has tools for decomposition of the transform matrix, but I want<br>
&gt;&gt; to do this with ITK.)<br>
&gt;&gt;<br>
&gt;&gt; In previous work that required understanding a transform matrix, it<br>
&gt;&gt; appeared that there are no obligatory standards on how to shape the matrix<br>
&gt;&gt; (probably depends on whether the matrix is pre-multiplied or post-multiplied<br>
&gt;&gt; in specific applications).  The elements of the matrix should have a known<br>
&gt;&gt; role in the affine transform, some for rotation, translation, etc.  The<br>
&gt;&gt; specifics of the implementation in ITK are important (the registration<br>
&gt;&gt; provides a transform from fixed-to-moving image).<br>
&gt;&gt;<br>
&gt;&gt; There are some general online resources on affine transform matrices:<br>
&gt;&gt; <a href="http://en.wikipedia.org/wiki/Affine_transformation" target="_blank">http://en.wikipedia.org/wiki/Affine_transformation</a><br>
&gt;&gt; <a href="http://mathworld.wolfram.com/AffineTransformation.html" target="_blank">http://mathworld.wolfram.com/AffineTransformation.html</a><br>
&gt;&gt;<br>
&gt;&gt; Some libraries use specific methods for each component: translation,<br>
&gt;&gt; rotation, shear, scale.<br>
&gt;&gt;<br>
&gt;&gt; For example, in java 1.2:<br>
&gt;&gt; <a href="http://www.glyphic.com/transform/imageonly/1intro.html" target="_blank">http://www.glyphic.com/transform/imageonly/1intro.html</a><br>
&gt;&gt;<br>
&gt;&gt; Also here in the Apple core graphics lib, there are methods for each<br>
&gt;&gt; component of the transform:<br>
&gt;&gt;<br>
&gt;&gt; <a href="http://opensource.apple.com/source/WebCore/WebCore-4A102/platform/AffineTransform.h" target="_blank">http://opensource.apple.com/source/WebCore/WebCore-4A102/platform/AffineTransform.h</a><br>
&gt;&gt; That is,<br>
&gt;&gt;<br>
&gt;&gt;     AffineTransform &amp;scale(double sx, double sy);<br>
&gt;&gt;     AffineTransform &amp;rotate(double d);<br>
&gt;&gt;     AffineTransform &amp;translate(double tx, double ty);<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;     AffineTransform &amp;shear(double sx, double sy);<br>
&gt;&gt;<br>
&gt;&gt; In this page you can see a decomposition of a 2D affine matrix into the<br>
&gt;&gt; rotation, shear, scaling, and translation:<br>
&gt;&gt;<br>
&gt;&gt; <a href="http://www.gnome.org/%7Emathieu/libart/libart-affine-transformation-matrices.html" target="_blank">http://www.gnome.org/~mathieu/libart/libart-affine-transformation-matrices.html</a><br>
&gt;&gt; Note the method to extract a scale factor, called art_affine_expansion().<br>
&gt;&gt; When the matrix is represented in it&#39;s component parts, it is trivial to<br>
&gt;&gt; &quot;knock out&quot; the scaling component by setting the diagonal elements of the<br>
&gt;&gt; scale matrix to 1.0.<br>
&gt;&gt;<br>
&gt;&gt; However, ITK doesn&#39;t appear to represent the matrix in component parts.<br>
&gt;&gt; My current project work is using 2D images and ITK 3.16,<br>
&gt;&gt; <a href="http://www.itk.org/Doxygen316/html/classitk_1_1AffineTransform.html" target="_blank">http://www.itk.org/Doxygen316/html/classitk_1_1AffineTransform.html</a><br>
&gt;&gt;<br>
&gt;&gt; There seem to be some specific methods to get/set the affine components<br>
&gt;&gt; (translation or offset, rotate2D, rotate3D, etc. - maybe no shear method?),<br>
&gt;&gt; but there are general get/set matrix methods, so perhaps it is possible to<br>
&gt;&gt; use something like:<br>
&gt;&gt;<br>
&gt;&gt; MatrixType thisMatrix = affineTFM-&gt;GetMatrix();<br>
&gt;&gt; // modify thisMatrix to remove scale component<br>
&gt;&gt; affineTFM-&gt;SetMatrix(thisMatrix);<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; The trick is knowing which elements of the matrix contain the scale<br>
&gt;&gt; factor(s).  Perhaps it is the diagonal elements, as in:<br>
&gt;&gt;<br>
&gt;&gt; <a href="http://www.gnome.org/%7Emathieu/libart/libart-affine-transformation-matrices.html" target="_blank">http://www.gnome.org/~mathieu/libart/libart-affine-transformation-matrices.html</a><br>
&gt;&gt;<br>
&gt;&gt; If so, the diagonal elements of the &#39;composed&#39; matrix contain both<br>
&gt;&gt; rotation and scaling components.  Perhaps it is possible to isolate the<br>
&gt;&gt; scale component from the rotation component with some help from the ITK<br>
&gt;&gt; get/set rotation2D methods?  If that can be done, then it should be easy to<br>
&gt;&gt; replace the diagonal of the full affine matrix with just the diagonal<br>
&gt;&gt; elements from the rotation matrix, to effectively remove the scaling<br>
&gt;&gt; component from the diagonal of the &#39;composed&#39; matrix (and leave everything<br>
&gt;&gt; else alone).<br>
&gt;&gt;<br>
&gt;&gt; Does that make sense?  Has anyone done this before?<br>
&gt;&gt;<br>
&gt;&gt; Best regards,<br>
&gt;&gt; Darren<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On Sun, Oct 25, 2009 at 2:16 PM, Darren Weber<br>
&gt;&gt;&gt; &lt;<a href="mailto:darren.weber.lists@gmail.com">darren.weber.lists@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; On Sat, Oct 24, 2009 at 7:58 PM, Darren Weber<br>
&gt;&gt;&gt; &gt; &lt;<a href="mailto:darren.weber.lists@gmail.com">darren.weber.lists@gmail.com</a>&gt;<br>
&gt;&gt;&gt; &gt; wrote:<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; Is there an easy way to turn off the scaling component of an affine<br>
&gt;&gt;&gt; &gt;&gt; transform?<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; Is there a method in itkAffineTransform to set the scale component to<br>
&gt;&gt;&gt; &gt;&gt; a<br>
&gt;&gt;&gt; &gt;&gt; constant?<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; Would you manually pull out the matrix, etc., modify it and then reset<br>
&gt;&gt;&gt; &gt;&gt; it<br>
&gt;&gt;&gt; &gt;&gt; in the itkAffineTransform?<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; TIA,<br>
&gt;&gt;&gt; &gt;&gt; Darren<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; PS,  Maybe a geometric problem can help (or obscure) the problem.<br>
&gt;&gt;&gt; &gt; Imagine a<br>
&gt;&gt;&gt; &gt; series of conic sections, starting at the tip of a cone and working<br>
&gt;&gt;&gt; &gt; down<br>
&gt;&gt;&gt; &gt; toward the base.  Each of these 2D conic sections needs to be<br>
&gt;&gt;&gt; &gt; registered<br>
&gt;&gt;&gt; &gt; into a 3D volume to recreate the cone.  If each section were a &quot;pure&quot;<br>
&gt;&gt;&gt; &gt; section taken along the axis from the tip to the center of the base,<br>
&gt;&gt;&gt; &gt; this<br>
&gt;&gt;&gt; &gt; would be fairly trivial as a rigid-body registration (probably no<br>
&gt;&gt;&gt; &gt; registration at all is required, just a known sequence of slices).<br>
&gt;&gt;&gt; &gt; However,<br>
&gt;&gt;&gt; &gt; assume each section has an unknown deformation (but the series of<br>
&gt;&gt;&gt; &gt; sections<br>
&gt;&gt;&gt; &gt; is given in a known order).  If the affine registration starts at the<br>
&gt;&gt;&gt; &gt; tip<br>
&gt;&gt;&gt; &gt; (img001) and propagates all the way to the base (img100), the final<br>
&gt;&gt;&gt; &gt; diameter<br>
&gt;&gt;&gt; &gt; of the base section will be decreased to about the same diameter as the<br>
&gt;&gt;&gt; &gt; tip.<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; The real problem is a series of microscopy images for a worm, which has<br>
&gt;&gt;&gt; &gt; a<br>
&gt;&gt;&gt; &gt; smaller diameter at the head and tail than in the body.<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; _____________________________________<br>
&gt;&gt;&gt; &gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; Visit other Kitware open-source projects at<br>
&gt;&gt;&gt; &gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt;&gt;&gt; &gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt;&gt; &gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt; _____________________________________<br>
&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt; Visit other Kitware open-source projects at<br>
&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;<br>
</div></div><div class="im">&gt; Kitware offers ITK Training Courses, for more information visit:<br>
</div>&gt; <a href="http://www.kitware.com/products/protraining.html" target="_blank">http://www.kitware.com/products/protraining.html</a><br>
<div><div></div><div class="h5">&gt;<br>
&gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
&gt;<br>
&gt;<br>
</div></div></blockquote></div><br>