<font color="#000000"><font><font face="arial,helvetica,sans-serif">Hi,</font></font></font><div><font color="#000000"><font><font face="arial,helvetica,sans-serif">I also had the same problem like you. In this case you should explicit specify the IO flag for the reader, i.e: </font></font></font></div>

<div><font color="#000000"><font><font face="arial,helvetica,sans-serif"><br></font></font></font></div><div><font color="#000000"><font><font face="arial,helvetica,sans-serif">#include &quot;itkPNGImageIO.h&quot;</font></font></font></div>

<div><font color="#000000"><font><font face="arial,helvetica,sans-serif">...</font></font></font></div><div><font><font face="arial,helvetica,sans-serif"><div style="color:rgb(0,0,0)">const unsigned int ImageDimension = 2;</div>

<div style="color:rgb(0,0,0)">typedef short PixelType;</div><div style="color:rgb(0,0,0)">typedef itk::Image&lt;PixelType, ImageDimension&gt; ImageType;</div><div style="color:rgb(0,0,0)">typedef itk::ImageFileReader&lt;ImageType &gt; ImageReaderType;</div>

<div style="color:rgb(0,0,0)"><br></div><div style="color:rgb(0,0,0)">ImageReaderType::Pointer  pReader  = ImageReaderType::New();</div><div style="color:rgb(0,0,0)">pReader-&gt;SetFileName(&quot;C:\\test.png&quot;);  </div>

<div>pReader-&gt;SetImageIO(<font class="Apple-style-span" color="#ff0000">itk::PNGImageIO::New()</font>);</div><div style="color:rgb(0,0,0)">pReader-&gt;Update();</div><div style="color:rgb(0,0,0)"><br></div><div style="color:rgb(0,0,0)">

/QuangT</div></font></font><br><div class="gmail_quote">2011/12/13 Malsoaz James <span dir="ltr">&lt;<a href="mailto:jmalsoaz@yahoo.fr">jmalsoaz@yahoo.fr</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div><div style="color:#000;background-color:#fff;font-family:Courier New,courier,monaco,monospace,sans-serif;font-size:10pt"><div><div><div style="color:#000;background-color:#fff;font-family:Courier New,courier,monaco,monospace,sans-serif;font-size:10pt">

<div>Hi,<span><br></span></div><div><br></div><div>I&#39;m trying to use ITK v4. I have been able to install it successfully (note that the option ITK_USE_SYSTEM_GDCM doesn&#39;t work, it produce a link error to gdcmMSFF).</div>

<div>Anyway, I built it with the internal version of GDCM.<br></div><div><br></div><div>Unfortunately, when I try a reader class
 such as itkImageFileReader, I got an error regarding the IO factory classes :</div><div>&quot; Could not create IO object for file &quot;C:/test.png&quot;</div><div>  Tried to create one of the
 following:<br>  You probably failed to set a file suffix, or set the suffix to an unsupported type.&quot;</div><div><br></div><div>As you can see, the list of IO object is empty. It seems ITK can&#39;t find them. I checked in the include dir and several IO files are available such as itkGDCMImageIO<br>

</div><div><br></div><div>Can someone tell me what&#39;s wrong ?</div><div><br></div><div>Regarding the CMakeLists, I created and used two variables <br></div><div>- a ITK_INCLUDE_DIR (path to the include dir) to find the include files<br>

</div><div>- a ITK_LIBRARIES list (list of path to the
 libs). Since the libs are not the same compared to ITKv3, I&#39;m not sure which libraries to include in this list and in which order (if it matters), thus I listed all of them in alphabetical order.<br><br>I have no warning/error at compilation time.<br>

</div><div><br></div><div>I hope someone will be able to help me.</div><div>Best</div><div>James.</div></div></div></div></div></div><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>
<br></blockquote></div><br></div>