Hi David,<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<br>
It should work. Do you get other warning?<br>
Maybe the Concept Check is a bit too strict in that class.<br>
<br>
Gaëtan<br><font color="#888888">
<br>
-- <br>
Gaëtan Lehmann<br>
Biologie du Développement et de la Reproduction<br>
INRA de Jouy-en-Josas (France)<br>
tel: <a href="tel:%2B33%201%2034%2065%2029%2066" value="+33134652966" target="_blank">+33 1 34 65 29 66</a>    fax: 01 34 65 29 09<br>
<a href="http://voxel.jouy.inra.fr" target="_blank">http://voxel.jouy.inra.fr</a>  <a href="http://www.itk.org" target="_blank">http://www.itk.org</a><br>
<a href="http://www.mandriva.org" target="_blank">http://www.mandriva.org</a>  <a href="http://www.bepo.fr" target="_blank">http://www.bepo.fr</a><br>
<br>
</font></blockquote></div><br>These warnings are fixed by changing line 125 of BinaryImageThinningFilter from<br><br>itkConceptMacro( InputIntComparableCheck,<br>( Concept::Comparable&lt; PixelType, int &gt; ) );<br><br>
to<br><br>( Concept::Comparable&lt; PixelType, unsigned int &gt; ) );<br clear="all"><br>However, then (of course!) the warnings come back if you try to instantiate a <br><br>typedef itk::Image&lt;int, 2&gt;  ImageType;<br>
typedef itk::BinaryThinningImageFilter &lt;ImageType, ImageType&gt;<br>          BinaryThinningImageFilterType;<br><br>(the reverse problem of comparing an int to an unsigned int vs comparing an unsigned int to an int).<br>
<br>Is there a way to change this to allow both types to be instantiated without warnings? Of course removing that concept check all together does the trick, but I assume it&#39;s there for a reason?<br><br>Thanks,<br><br>
David<br>