Hi Nicholas,<br><br>thanks a lot for answering my question. I&#39;m still not sure how to set the parametric location of my points inside my domain correctly.<br>Do you mean like voxel indices inside the volume?<br><br><br>
Thanks a lot!<br><br>Kerstin<br><br><div class="gmail_quote">2011/12/23 Nicholas Tustison <span dir="ltr">&lt;<a href="mailto:ntustison@gmail.com">ntustison@gmail.com</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div style="word-wrap:break-word">Hi Kerstin,<div><br></div><div>You&#39;re not setting your point locations in the parametric domain.</div><div>Inside your loop where you&#39;re setting the point data, you also need</div>
<div>to store the parametric location of your points inside your domain,i.e.</div><div><br></div><div style="text-align:left"><i>pointSet-&gt;SetPointData(num, v)</i></div><div style="text-align:left"><i><br></i></div><div style="text-align:left">
<i>PointSetType::PointType point;</i></div><div style="text-align:left"><i><br></i></div><div><div style="text-align:left"><i>point[0] = x;</i></div></div><div><div style="text-align:left"><i>point[1] = y;</i></div></div>
<div><div style="text-align:left"><i>point[2] = z; </i></div></div><div><div style="text-align:left"><i>point[3] = t;</i></div></div><div style="text-align:left"><i><br></i></div><div style="text-align:left"><i>pointSet-&gt;SetPoint( num, point );</i></div>
<div style="text-align:left"><i>num++</i></div><div style="text-align:left"><br></div><div>where x, y, z, and t describes the parametric location of your data</div><div>point.</div><div><br></div><div>A couple other things you might want to consider.  </div>
<div><br></div><div>1. The BSpline filter has been in ITK proper for some time</div><div>now and I know I&#39;ve made several changes (including a</div><div>thorough parallelization for significant speed-up) since then.</div>
<div>You might want to consider using the class that&#39;s in ITK </div><div>already.</div><div><br></div><div>2. 67 control points is quite a bit.  That, coupled with 5 levels,</div><div>would mean you would end up with a control point lattice of</div>
<div>(6-3) * 2^(5-1) x (6-3) * 2^(5-1) x (6-3) * 2^(5-1) x (67-3) * 2^(5-1) =</div><div>48x48x48x1024.  A large lattice size in the temporal dimension </div><div>might not be necessary.</div><div><br></div><div>Nick </div>
<div><br></div><div><br></div><div><div><div><div class="h5"><div>On Dec 23, 2011, at 4:19 AM, Kerstin Müller wrote:</div><br></div></div><blockquote type="cite"><div><div class="h5">Hi,<br><br>I&#39;m using the <b>BSplineScatteredDataPointSetToImageFilter </b>from the Insight Journal. However,<br>
I cannot find the correct parameter in order to make the filter work and does not crash during the evaluation.<br>
I&#39;ll have scattered 3-D points over time and I want to fit a 4-D Bspline field to that points. Afterwards I want to evaluate the Bspline on a dense volume grid to one time step.<br><br>Here you can find the code, unfortunately it crashes (either due to memory problems or without any error output)<br>

<br><br>const unsigned int ParametricDimension = 4;<br>    const unsigned int DataDimension = 3;<br><br>    typedef double RealType;<br>    typedef itk ::Vector &lt;RealType , DataDimension &gt; VectorType;<br>    typedef itk ::Image &lt;VectorType , ParametricDimension &gt; ImageType;<br>

<br>    typedef itk :: PointSet &lt;VectorType , ParametricDimension &gt; PointSetType ;<br>    PointSetType :: Pointer pointSet = PointSetType :: New ();<br>    <br>    // Set the sample points<br>    for ( int img_num = 0; img_num &lt; m_configuration.num_projections ; img_num++ ) <br>

    {<br>        int num = 0;<br>        for( int idx = 0; idx &lt;= <a href="http://points.at/" target="_blank">points.at</a>(img_num).size()-3; idx+=3 )<br>        {<br>            <br>            VectorType v;<br>            v[0] = <a href="http://points.at/" target="_blank">points.at</a>(img_num)[idx];<br>

            v[1] = <a href="http://points.at/" target="_blank">points.at</a>(img_num)[idx+1];<br>            v[2] = <a href="http://points.at/" target="_blank">points.at</a>(img_num)[idx+2];<br>            pointSet-&gt;SetPointData(num, v);<br>
<br>            num++;<br>
<br>        }<br>    }<br>    // Instantiate the filter and set the parameters<br>    typedef itk::myBSplineScatteredDataPointSetToImageFilter&lt;PointSetType , ImageType &gt; FilterType;<br>    FilterType :: Pointer filter = FilterType :: New ();<br>

<br>    // Define the parametric domain<br>    ImageType :: SpacingType spacing; <br>    spacing[0] = 42.0f;<br>    spacing[1] = 42.0f;<br>    spacing[2] = 42.0f;<br>    spacing[3] = 2.0f;<br>    ImageType :: SizeType size; <br>

    size[0] = 6;<br>    size[1] = 6;<br>    size[2] = 6;<br>    size[3] = 67;<br>    ImageType :: PointType origin; <br>    origin.Fill( 0.0 );<br><br>    filter -&gt;SetSize( size );<br>    filter -&gt;SetOrigin( origin );<br>

    filter -&gt;SetSpacing( spacing );<br>    filter -&gt;SetInput( pointSet );<br><br>    filter -&gt; SetSplineOrder ( 3 );<br>    FilterType :: ArrayType ncps;<br>    ncps.SetElement(0,6);<br>    ncps.SetElement(1,6);<br>

    ncps.SetElement(2,6);<br>    ncps.SetElement(3,67);<br><br>    filter -&gt; SetNumberOfControlPoints ( ncps );<br>    filter -&gt; SetNumberOfLevels ( 5 );<br>    filter -&gt; SetGenerateOutputImage ( false );<br><br>

    try<br>    {<br>        filter -&gt;Update ();<br>    }<br>    catch ( itk::ExceptionObject &amp; excp )<br>    {<br>        std :: cerr &lt;&lt; &quot;Test 2: itkBSplineScatteredDataImageFilter exception thrown&quot; &lt;&lt; std:: endl;<br>

        std::cerr&lt;&lt; excp &lt;&lt;std::endl;<br>    }<br><br>Thank you for your help!<br><br>Best,<br><br>Kerstin<br></div></div>
_____________________________________<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></div></div></blockquote></div><br>