<html><body bgcolor="#FFFFFF"><div>Hi Juan Carlos,</div><div>&nbsp;try replacing GetRequestedRegion with GetBufferedRegion in the iterator.</div><div>Cheers</div><div><br></div><div>Luca<br><br>On 02/giu/2010, at 17.23, Juan Carlos Prieto &lt;<a href="mailto:juanprietob@gmail.com">juanprietob@gmail.com</a>&gt; wrote:<br><br></div><div></div><blockquote type="cite"><div>Hi Luca,<br><br>Thank you for the response, I ran some other tests on the filter like printing values directly on the template (itkMultiScaleHessianBasedMeasureImageFilter.txx) and I think is working fine because the filter managed to show them. But my problem is that I can't get an iterator to go through the values after the update of the filter, like the example I sent you.<br>
<br>_hessianmultiscale-&gt;Update();<br>_hessianmultiscale-&gt;GetOutput(); //this is working fine <br><br>TypeConstRegionIterator constit( _hessianmultiscale-&gt;GetScalesOutput(),<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _hessianmultiscale-&gt;GetScalesOutput()-&gt;GetRequestedRegion() );</blockquote><br>&nbsp;for ( constit.GoToBegin(); !constit.IsAtEnd(); ++constit);<br>
 &nbsp; &nbsp; &nbsp; &nbsp;{<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;cout&lt;&lt;constit.Get()&lt;&lt; " "; //this output produces "0" only<br>
 &nbsp; &nbsp; &nbsp; &nbsp;}<br><br>I'm going to try saving the image and then reading it to see what happens.<br>I'll let you know.<br><br>Juan Carlos Prieto<br><br><div class="gmail_quote">2010/6/2 Luca Antiga <span dir="ltr">&lt;<a href="mailto:luca.antiga@gmail.com"><a href="mailto:luca.antiga@gmail.com">luca.antiga@gmail.com</a></a>&gt;</span><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi Juan Carlos,<br>
&nbsp;I ran the test for the filter in Testing/Code/Review on one of my images and it worked correctly, the scales image was filled with scale values. Find the code I ran attached.<br>
Can you try it out on your image?<br><font color="#888888">
<br>
Luca<br>
<br>
<br>
</font><br><br>
<br>
<br>
On May 31, 2010, at 8:18 PM, Juan Carlos Prieto wrote:<br>
<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hello Luis,<br>
<br>
I'm trying to use the MultiScaleHessianBasedMeasureImageFilter.<br>
My problem is that I don't know how to get the "GetScalesOutput()" to work, I have both methods to On "GenerateHessianOutputOn()" and<br>
 &nbsp; &nbsp; &nbsp; &nbsp;"GenerateScalesOutputOn()", but the ScalesOutput produces nothing.<br>
<br>
This is my code<br>
<br>
_hessianvessel-&gt;SetAlpha1 (0.5);<br>
 &nbsp; &nbsp; &nbsp; &nbsp;_hessianvessel-&gt;SetAlpha2 (2);<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;_hessianmultiscale-&gt;SetInput(image);<br>
 &nbsp; &nbsp; &nbsp; &nbsp;_hessianmultiscale-&gt;SetHessianToMeasureFilter(_hessianvessel);<br>
 &nbsp; &nbsp; &nbsp; &nbsp;_hessianmultiscale-&gt;SetSigmaMinimum(0.5);<br>
 &nbsp; &nbsp; &nbsp; &nbsp;_hessianmultiscale-&gt;SetSigmaMaximum(4.0);<br>
 &nbsp; &nbsp; &nbsp; &nbsp;_hessianmultiscale-&gt;SetNumberOfSigmaSteps(5);<br>
 &nbsp; &nbsp; &nbsp; &nbsp;_hessianmultiscale-&gt;GenerateHessianOutputOn();<br>
 &nbsp; &nbsp; &nbsp; &nbsp;_hessianmultiscale-&gt;GenerateScalesOutputOn();<br>
 &nbsp; &nbsp; &nbsp; &nbsp;_hessianmultiscale-&gt;Update();<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;_outputimagefloat = ImageTypeFloat::New();<br>
 &nbsp; &nbsp; &nbsp; &nbsp;_outputimagefloat-&gt;SetRegions(_hessianmultiscale-&gt;GetOutput()-&gt;GetRequestedRegion());<br>
 &nbsp; &nbsp; &nbsp; &nbsp;_outputimagefloat-&gt;Allocate();<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;TypeConstRegionIterator constit( _hessianmultiscale-&gt;GetScalesOutput(),<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _hessianmultiscale-&gt;GetScalesOutput()-&gt;GetRequestedRegion() );<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;TypeRegionIterator outputit( _outputimagefloat, _outputimagefloat-&gt;GetRequestedRegion() );<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;for ( constit.GoToBegin(); !constit.IsAtEnd(); ++constit);<br>
 &nbsp; &nbsp; &nbsp; &nbsp;{<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;cout&lt;&lt;constit.Get()&lt;&lt; " "; //this output produces "0" only<br>
 &nbsp; &nbsp; &nbsp; &nbsp;}<br>
 &nbsp; &nbsp; &nbsp; &nbsp;/*for ( constit.GoToBegin(), outputit.GoToBegin(); !constit.IsAtEnd(); ++constit, ++outputit)<br>
 &nbsp; &nbsp; &nbsp; &nbsp;{<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;outputit.Set(constit.Get()); //does not work<br>
 &nbsp; &nbsp; &nbsp; &nbsp;}*/<br>
<br>
<br>
I hope this is enough information<br>
<br>
Thank you for your time<br>
<br>
Juan Carlos Prieto<br>
<br>
_____________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank"><a href="http://www.kitware.com">www.kitware.com</a></a><br>
<br>
Visit other Kitware open-source projects at<br>
<a href="http://www.kitware.com/opensource/opensource.html" target="_blank"><a href="http://www.kitware.com/opensource/opensource.html">http://www.kitware.com/opensource/opensource.html</a></a><br>
<br>
Kitware offers ITK Training Courses, for more information visit:<br>
<a href="http://www.kitware.com/products/protraining.html" target="_blank"><a href="http://www.kitware.com/products/protraining.html">http://www.kitware.com/products/protraining.html</a></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"><a href="http://www.itk.org/Wiki/ITK_FAQ">http://www.itk.org/Wiki/ITK_FAQ</a></a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank"><a href="http://www.itk.org/mailman/listinfo/insight-users">http://www.itk.org/mailman/listinfo/insight-users</a></a><br>
</blockquote>
<br>
<br></blockquote></div><br>
</div></blockquote></body></html>