<div dir="ltr">As it turns out, I needed to add <div><br></div><div>#define ITK_IO_FACTORY_REGISTER_MANAGER</div><div>and place the file itkImageIOFactoryRegisterManager.h somewhere in the include path.  </div></div><div class="gmail_extra">
<br><br><div class="gmail_quote">On Fri, Oct 25, 2013 at 1:08 PM, Matt McCormick <span dir="ltr">&lt;<a href="mailto:matt.mccormick@kitware.com" target="_blank">matt.mccormick@kitware.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi Scott,<br>
<br>
There should be file called<br>
<br>
  itkImageIOFactoryRegisterManager.h<br>
<br>
found in the build tree of your project.  When linked into your<br>
executable, this does the factory registration.<br>
<br>
Thanks,<br>
Matt<br>
<div class="HOEnZb"><div class="h5"><br>
On Fri, Oct 25, 2013 at 1:09 PM, Scott Pfeifer &lt;<a href="mailto:scottfivefour@gmail.com">scottfivefour@gmail.com</a>&gt; wrote:<br>
&gt; Hi Matt,<br>
&gt; I compiled using CMake, changing the tests and examples to be turned off and<br>
&gt; I have the same issue using both windows and mac.  When are the different IO<br>
&gt; types registered with the factory?  Does that happen when the libraries are<br>
&gt; compiles or is that done at run time?<br>
&gt;<br>
&gt; Thanks,<br>
&gt; Scott<br>
&gt;<br>
&gt;<br>
&gt; On Thu, Oct 24, 2013 at 8:59 PM, Matt McCormick &lt;<a href="mailto:matt.mccormick@kitware.com">matt.mccormick@kitware.com</a>&gt;<br>
&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Hi Scott,<br>
&gt;&gt;<br>
&gt;&gt; Is CMake used to configure your project?  If not, please try that.<br>
&gt;&gt;<br>
&gt;&gt; Thanks,<br>
&gt;&gt; Matt<br>
&gt;&gt;<br>
&gt;&gt; On Thu, Oct 24, 2013 at 5:42 PM, Scott Pfeifer &lt;<a href="mailto:scottfivefour@gmail.com">scottfivefour@gmail.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt; &gt; I believe that I am probably not registering the IO type but when I run<br>
&gt;&gt; &gt; a<br>
&gt;&gt; &gt; program that looks like this:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; #include &lt;itkImageFileReader.h&gt;<br>
&gt;&gt; &gt; #include &lt;metaImage.h&gt;<br>
&gt;&gt; &gt; #include &lt;iostream&gt;<br>
&gt;&gt; &gt; #include &lt;itkMetaImageIO.h&gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; using namespace std;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; int main()<br>
&gt;&gt; &gt; {<br>
&gt;&gt; &gt;     typedef short VoxelT;<br>
&gt;&gt; &gt;     typedef itk::Image&lt;VoxelT,4&gt; VolumeT;<br>
&gt;&gt; &gt;     typedef itk::ImageFileReader&lt;VolumeT&gt; ReaderT;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;     try<br>
&gt;&gt; &gt;     {<br>
&gt;&gt; &gt;         ReaderT::Pointer reader;<br>
&gt;&gt; &gt;         reader=ReaderT::New();<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; reader-&gt;SetFileName(&quot;/ControlledInstalls/SFT-5002-1.3.0/Imaging/RIH-20080905-1053/RIH-20080905-1053.mhd&quot;);<br>
&gt;&gt; &gt;         reader-&gt;Update();<br>
&gt;&gt; &gt;     }<br>
&gt;&gt; &gt;     catch( itk::ExceptionObject &amp; err )<br>
&gt;&gt; &gt;         {<br>
&gt;&gt; &gt;         std::cerr &lt;&lt; &quot;ExceptionObject caught !&quot; &lt;&lt; std::endl;<br>
&gt;&gt; &gt;         std::cerr &lt;&lt; err &lt;&lt; std::endl;<br>
&gt;&gt; &gt;     }<br>
&gt;&gt; &gt;     catch( ... )<br>
&gt;&gt; &gt;     {<br>
&gt;&gt; &gt;         cout&lt;&lt;&quot;caught the god dam thing&quot;&lt;&lt;endl;<br>
&gt;&gt; &gt;     }<br>
&gt;&gt; &gt; }<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; &amp;lt;b&gt;I Get This*<br>
&gt;&gt; &gt; File:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; c:\controlledinstalls\itk-4.2.2.0\x86-64_windows-7_vc10\itk\itkImageFileReader.hxx<br>
&gt;&gt; &gt; Line: 143<br>
&gt;&gt; &gt; Description:  Could not create IO object for file<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; /ControlledInstalls/SFT-5002-1.3.0/Imaging/RIH-20080905-1053/RIH-20080905-1053.mhd<br>
&gt;&gt; &gt;   Tried to create one of the following:<br>
&gt;&gt; &gt;   You probably failed to set a file suffix, or<br>
&gt;&gt; &gt;     set the suffix to an unsupported type.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; *However* if I add reader-&gt;SetImageIO( itk::MetaImageIO::New() ); before<br>
&gt;&gt; &gt; updating everything works fine.<br>
&gt;&gt; &gt; If anyone has seen this problem before or has an Idea of how I might get<br>
&gt;&gt; &gt; everything working I would greatly appreciate it.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; If it helps at all what I am trying to read was created by itk 3.20.0 by<br>
&gt;&gt; &gt; reading dicom slices.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; --<br>
&gt;&gt; &gt; View this message in context:<br>
&gt;&gt; &gt; <a href="http://itk-users.7.n7.nabble.com/object-factory-mechanism-for-ImageFileReader-not-working-with-mhd-tp32630.html" target="_blank">http://itk-users.7.n7.nabble.com/object-factory-mechanism-for-ImageFileReader-not-working-with-mhd-tp32630.html</a><br>

&gt;&gt; &gt; Sent from the ITK - Users mailing list archive at Nabble.com.<br>
&gt;&gt; &gt; _____________________________________<br>
&gt;&gt; &gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Visit other Kitware open-source projects at<br>
&gt;&gt; &gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Kitware offers ITK Training Courses, for more information visit:<br>
&gt;&gt; &gt; <a href="http://www.kitware.com/products/protraining.php" target="_blank">http://www.kitware.com/products/protraining.php</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt;&gt; &gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; &gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; Community mailing list<br>
&gt;&gt; &gt; <a href="mailto:Community@itk.org">Community@itk.org</a><br>
&gt;&gt; &gt; <a href="http://public.kitware.com/cgi-bin/mailman/listinfo/community" target="_blank">http://public.kitware.com/cgi-bin/mailman/listinfo/community</a><br>
&gt;<br>
&gt;<br>
</div></div></blockquote></div><br></div>