Hi Bill,<div>this is my cmakelists.txt:</div><div><br></div><div><div># This is the root ITK CMakeLists file.</div><div>cmake_minimum_required(VERSION 2.4)</div><div>if(COMMAND CMAKE_POLICY)</div><div>  cmake_policy(SET CMP0003 NEW)</div>
<div>endif(COMMAND CMAKE_POLICY)</div><div> </div><div> </div><div># This project is designed to be built outside the Insight source tree.</div><div>project(itktest)</div><div><br></div><div># Find ITK.</div><div>find_package(ITK REQUIRED)</div>
<div>include(${ITK_USE_FILE})</div><div> </div><div>add_executable(itktest main.cpp )</div><div><br></div><div>target_link_libraries(itktest ${ITK_LIBRARIES})</div><div><br></div><div>It is just the adjusted Hello World example file.</div>
<div><br></div><div><br></div><br><div class="gmail_quote">2012/5/22 Bill Lorensen <span dir="ltr">&lt;<a href="mailto:bill.lorensen@gmail.com" target="_blank">bill.lorensen@gmail.com</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
ooop[s. I see you posted your code. Please post your CMakeLists.txt file.<br>
<div class="HOEnZb"><div class="h5"><br>
On Tue, May 22, 2012 at 3:01 PM, Bill Lorensen &lt;<a href="mailto:bill.lorensen@gmail.com">bill.lorensen@gmail.com</a>&gt; wrote:<br>
&gt; No need to change the reader output type. The reader will internnaly<br>
&gt; convert to whatever type the user specifies.<br>
&gt;<br>
&gt; Sebastien,<br>
&gt;<br>
&gt; Please post your complete compilable example and your CMakeLists.txt file.<br>
&gt;<br>
&gt; On Tue, May 22, 2012 at 12:11 PM, Cagatay Bilgin &lt;<a href="mailto:bilgincc@gmail.com">bilgincc@gmail.com</a>&gt; wrote:<br>
&gt;&gt; It is your input file that you are having problems<br>
&gt;&gt; with.  PNG supports unsigned char or unsigned<br>
&gt;&gt; short but you are trying to read your input as<br>
&gt;&gt; double. You need to change this<br>
&gt;&gt;<br>
&gt;&gt; typedef itk::ImageFileReader&lt;DoubleImageType&gt; ReaderType;<br>
&gt;&gt; to<br>
&gt;&gt; typedef itk::ImageFileReader&lt;IntImageType&gt; ReaderType;<br>
&gt;&gt; and modify the rest of your code keeping the imagetypes<br>
&gt;&gt; consistent.<br>
&gt;&gt;<br>
&gt;&gt; Cheers,<br>
&gt;&gt; Cagatay<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Tue, May 22, 2012 at 7:42 AM, Sebastian Losch &lt;<a href="mailto:seb.losch@googlemail.com">seb.losch@googlemail.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; hi Bill!<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; it is the same as in my first posting. Sorry, i thought i made that clear.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Description:  Could not create IO object for file input.png<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; 2012/5/22 Bill Lorensen &lt;<a href="mailto:bill.lorensen@gmail.com">bill.lorensen@gmail.com</a>&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Pleases post the complete line for<br>
&gt;&gt;&gt;&gt; Description:  Could not create IO object for fi<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; On Tue, May 22, 2012 at 9:30 AM, Sebastian Losch<br>
&gt;&gt;&gt;&gt; &lt;<a href="mailto:seb.losch@googlemail.com">seb.losch@googlemail.com</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt; &gt; Hm okay, i just created a solution for visual studio using this<br>
&gt;&gt;&gt;&gt; &gt; helloworld<br>
&gt;&gt;&gt;&gt; &gt; cmake project as basis. The only difference is that there are more<br>
&gt;&gt;&gt;&gt; &gt; Image<br>
&gt;&gt;&gt;&gt; &gt; types he tried, but it is not working. I did try it with JPEG instead<br>
&gt;&gt;&gt;&gt; &gt; of<br>
&gt;&gt;&gt;&gt; &gt; PNG, i had to use a castimagefilter in order to use it with the canny<br>
&gt;&gt;&gt;&gt; &gt; filter<br>
&gt;&gt;&gt;&gt; &gt; which only support real values. No errors, but the output image is just<br>
&gt;&gt;&gt;&gt; &gt; black.<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; Some other ideas?<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; This is the error:<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; Description:  Could not create IO object for fi<br>
&gt;&gt;&gt;&gt; &gt;   Tried to create one of the following:<br>
&gt;&gt;&gt;&gt; &gt;     JPEGImageIO<br>
&gt;&gt;&gt;&gt; &gt;     GDCMImageIO<br>
&gt;&gt;&gt;&gt; &gt;     BMPImageIO<br>
&gt;&gt;&gt;&gt; &gt;     LSMImageIO<br>
&gt;&gt;&gt;&gt; &gt;     PNGImageIO<br>
&gt;&gt;&gt;&gt; &gt;     TIFFImageIO<br>
&gt;&gt;&gt;&gt; &gt;     VTKImageIO<br>
&gt;&gt;&gt;&gt; &gt;     StimulateImageIO<br>
&gt;&gt;&gt;&gt; &gt;     BioRadImageIO<br>
&gt;&gt;&gt;&gt; &gt;     MetaImageIO<br>
&gt;&gt;&gt;&gt; &gt;     NiftiImageIO<br>
&gt;&gt;&gt;&gt; &gt;     NrrdImageIO<br>
&gt;&gt;&gt;&gt; &gt;     GiplImageIO<br>
&gt;&gt;&gt;&gt; &gt;     HDF5ImageIO<br>
&gt;&gt;&gt;&gt; &gt;     PNGImageIO<br>
&gt;&gt;&gt;&gt; &gt;     JPEGImageIO<br>
&gt;&gt;&gt;&gt; &gt;   You probably failed to set a file suffix, or<br>
&gt;&gt;&gt;&gt; &gt;     set the suffix to an unsupported type.<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; 2012/5/22 Sebastian Losch &lt;<a href="mailto:seb.losch@googlemail.com">seb.losch@googlemail.com</a>&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt; Hi Brad,<br>
&gt;&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt; thanks for your response. I should have mentioned in my first post<br>
&gt;&gt;&gt;&gt; &gt;&gt; that i<br>
&gt;&gt;&gt;&gt; &gt;&gt; am using Visual Studio 2010 on a Win7 32bit machine. I&#39;ve read that<br>
&gt;&gt;&gt;&gt; &gt;&gt; this<br>
&gt;&gt;&gt;&gt; &gt;&gt; problem can be solved by adding  include(${ITK_USE_FILE})  to the<br>
&gt;&gt;&gt;&gt; &gt;&gt; makefile.<br>
&gt;&gt;&gt;&gt; &gt;&gt; But what is the corresponding way to do it in visual studio?<br>
&gt;&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt; Thanks, Sebastian<br>
&gt;&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt; 2012/5/22 Bradley Lowekamp &lt;<a href="mailto:blowekamp@mail.nih.gov">blowekamp@mail.nih.gov</a>&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; Most likely this is a problem with how you are using CMake for ITK<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; and is<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; not related to the code you have included here.<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; There is an example of what a basic CMake project which uses ITK<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; should<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; like like  int ITK/Examples/Installation/CMakeLists.txt<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; <a href="http://itk.org/gitweb?p=ITK.git;a=blob;f=Examples/Installation/CMakeLists.txt;h=5e1b9e7ae0a95430f5162e8ff435b98570c5ad6e;hb=HEAD" target="_blank">http://itk.org/gitweb?p=ITK.git;a=blob;f=Examples/Installation/CMakeLists.txt;h=5e1b9e7ae0a95430f5162e8ff435b98570c5ad6e;hb=HEAD</a><br>

&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; Hopefully, this will get you started in the right direction to solve<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; you<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; problem.<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; Brad<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; On May 22, 2012, at 4:35 AM, Sebastian Losch wrote:<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; Hi!<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; I am having problems getting the ImageFileReader and ImageFileWriter<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; to<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; work. I just want to read a PNG File, apply a filter and write it<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; back to<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; the harddrive. I found out that there is a problem in 4.1 with the<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; ImageIOFactory registration, so i register the PNGFactory manually.<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; The .png<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; file is in the same folder as the executable. Here is my Code:<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; #include &quot;itkImage.h&quot;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; #include &quot;itkImageFileReader.h&quot;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; #include &quot;itkImageFileWriter.h&quot;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; #include &quot;itkCannyEdgeDetectionImageFilter.h&quot;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; #include &quot;itkObjectFactoryBase.h&quot;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; #include &quot;itkPNGImageIOFactory.h&quot;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; int main(int argc, char *argv[])<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; {<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; itk::ObjectFactoryBase::RegisterFactory(itk::PNGImageIOFactory::New());<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; double variance = 2.0;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; double upperThreshold = 0.0;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; double lowerThreshold = 0.0;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; typedef itk::Image&lt;double, 2&gt;  DoubleImageType;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; typedef itk::ImageFileReader&lt;DoubleImageType&gt; ReaderType;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; ReaderType::Pointer reader = ReaderType::New();<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; reader-&gt;SetFileName(&quot;input.png&quot;);<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; typedef itk::CannyEdgeDetectionImageFilter &lt;DoubleImageType,<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; DoubleImageType&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; CannyEdgeDetectionImageFilterType;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; CannyEdgeDetectionImageFilterType::Pointer cannyFilter =<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; CannyEdgeDetectionImageFilterType::New();<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; cannyFilter-&gt;SetInput(reader-&gt;GetOutput());<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; cannyFilter-&gt;SetVariance( variance );<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; cannyFilter-&gt;SetUpperThreshold( upperThreshold );<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; cannyFilter-&gt;SetLowerThreshold( lowerThreshold );<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; typedef itk::ImageFileWriter&lt;DoubleImageType&gt; WriterType;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; WriterType::Pointer writer = WriterType::New();<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; writer-&gt;SetFileName(&quot;test.png&quot;);<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; writer-&gt;SetInput(cannyFilter-&gt;GetOutput());<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; try {<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; writer-&gt;Update();<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; } catch (itk::ExceptionObject &amp;e) {<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; std::cerr &lt;&lt; e &lt;&lt; std::endl;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; }<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; std::cout &lt;&lt; &quot;ENDE&quot; &lt;&lt; std::endl;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; }<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; and this is the error:<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; itk::ImageFileReaderException (0059E4A8)<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; Location: &quot;void __thiscall itk::ImageFileReader&lt;class<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; itk::Image&lt;double,2&gt;,class itk::DefaultConvertPixelTraits&lt;double&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; &gt;::GenerateOutputInformation(void)&quot;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; File: c:\libs\itk\include\itk-4.1\itkimagefilereader.hxx<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; Line: 143<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; Description:  Could not create IO object for file input.png<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;   Tried to create one of the following:<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;     PNGImageIO<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;   You probably failed to set a file suffix, or<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;     set the suffix to an unsupported type.<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; What am i doing wrong?<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; Thanks in advance, Sebastian<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; _____________________________________<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; Visit other Kitware open-source projects at<br>
&gt;&gt;&gt;&gt; &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;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; Kitware offers ITK Training Courses, for more information visit:<br>
&gt;&gt;&gt;&gt; &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;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt;&gt;&gt;&gt; &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;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt;&gt;&gt; &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;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; ========================================================<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; Bradley Lowekamp<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; Medical Science and Computing for<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; Office of High Performance Computing and Communications<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; National Library of Medicine<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt; <a href="mailto:blowekamp@mail.nih.gov">blowekamp@mail.nih.gov</a><br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; _____________________________________<br>
&gt;&gt;&gt;&gt; &gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; Visit other Kitware open-source projects at<br>
&gt;&gt;&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;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; Kitware offers ITK Training Courses, for more information visit:<br>
&gt;&gt;&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;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt;&gt;&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;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt;&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;&gt; &gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; --<br>
&gt;&gt;&gt;&gt; Unpaid intern in BillsBasement at noware dot com<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<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;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Unpaid intern in BillsBasement at noware dot com<br>
<br>
<br>
<br>
--<br>
Unpaid intern in BillsBasement at noware dot com<br>
</div></div></blockquote></div><br></div>