Hi Greg:<br><br>itk::WarpVectorImageFilter is meant for use with input images of the type <br><br>   Image&lt; Vector&lt; T, D &gt;, N &gt; <br><br>rather than<br>   VectorImage&lt; T, N &gt;<br><br>Its looking for the trait Dimension in the pixel type of the image, which exists only for pixels of the type Vector&lt; T, D &gt; etc. <br>
<br>We could make it work with itk::VectorImage also quite easily, but haven&#39;t done that yet.<br><br>Thanks<br>--<br>karthik<br><br><div class="gmail_quote">On Sat, Mar 19, 2011 at 10:09 PM, Greg Sharp <span dir="ltr">&lt;<a href="mailto:gregsharp.geo@yahoo.com">gregsharp.geo@yahoo.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,<br>
<br>
Is it possible to warp a VectorImage with WarpVectorImageFilter<br>
using a deformation field?<br>
<br>
I try this:<br>
<br>
typedef itk::WarpVectorImageFilter &lt;<br>
        itk::VectorImage &lt; unsigned char, 3 &gt;,      // Input image<br>
        itk::VectorImage &lt; unsigned char, 3 &gt;,      // Output image<br>
        itk::Image &lt; itk::Vector &lt; float, 3 &gt;, 3 &gt;  // Vector field<br>
        &gt; WarpFilterType;<br>
WarpFilterType::Pointer filter = WarpFilterType::New();<br>
<br>
But it doesn&#39;t compile.  This is ITK 3.20.0, linux, gcc 4.5.2.<br>
Here is the compile error:<br>
<br>
home/gsharp/build/src/InsightToolkit-3.20.0/Code/BasicFilters<br>
/itkWarpVectorImageFilter.h:126:3:<br>
error: ‘Dimension’ is not a member of<br>
‘itk::WarpVectorImageFilter&lt;itk::VectorImage&lt;unsigned char, 3u&gt;,<br>
itk::VectorImage&lt;unsigned char, 3u&gt;, itk::Image&lt;itk::Vector&lt;float, 3u&gt;,<br>
3u&gt; &gt;::PixelType’<br>
<br>
Is this a bug?<br>
<br>
-Greg<br>
<br>
<br>
_____________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at<br>
<a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Kitware offers ITK Training Courses, for more information visit:<br>
<a href="http://www.kitware.com/products/protraining.html" target="_blank">http://www.kitware.com/products/protraining.html</a><br>
<br>
Please keep messages on-topic and check the ITK FAQ at:<br>
<a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
</blockquote></div><br>