Hi Sarah,<br><br>If you read the error message closely, you will see that the ImageFileWriter accepts TInputImage type which has unsigned int as its pixel type. But you are supplying an image with pixel type float.<br><br>
You will need to use a CastImageFilter to convert it across different pixel types.<br><br>Kishore<br><br><div class="gmail_quote">On Mon, Oct 5, 2009 at 1:41 PM, Sarah Waldron <span dir="ltr">&lt;<a href="mailto:sarah.waldron11@yahoo.com">sarah.waldron11@yahoo.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td style="font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;" valign="top">
Thank you so much for replying. You were right, I didn&#39;t include ITKStatistics in the Cmakelist.txt. <br><br>I tried to write another program that applies a histogram filter on an input and reference image and it seems to be giving me trouble as well. I get this error:<br>
<br>Scanning dependencies of target histogram<br>[100%] Building CXX object CMakeFiles/histogram.dir/histogram.o<br>/home/sarah/Desktop/histogramONLY/histogram.cxx: In function ‘int main(int, char**)’:<br>/home/sarah/Desktop/histogramONLY/histogram.cxx:75: error: no matching function for call to ‘itk::ImageFileWriter&lt;itk::Image&lt;unsigned int, 2u&gt; &gt;::SetInput(itk::Image&lt;float, 2u&gt;*)’<br>
/home/sarah/InsightToolkit-3.10.2/Code/IO/itkImageFileWriter.txx:56: note: candidates are: void itk::ImageFileWriter&lt;TInputImage&gt;::SetInput(const TInputImage*) [with TInputImage =
 itk::Image&lt;unsigned int, 2u&gt;]<br>make[2]: *** [CMakeFiles/histogram.dir/histogram.o] Error 1<br>make[1]: *** [CMakeFiles/histogram.dir/all] Error 2<br>make: *** [all] Error 2<br><br>I attached the code and cmakelists.txt.<br>
I would appreciate any help.<div class="im"><br>Thanks,<br>Sarah<br><br>--- On <b>Mon, 10/5/09, Gabriele Arnulfo <i>&lt;<a href="mailto:tartuz@gmail.com" target="_blank">tartuz@gmail.com</a>&gt;</i></b> wrote:<br></div><blockquote style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;">
<div class="im"><br>From: Gabriele Arnulfo &lt;<a href="mailto:tartuz@gmail.com" target="_blank">tartuz@gmail.com</a>&gt;<br>Subject: Re: [Insight-users] Fw:  problem<br>To: &quot;Sarah Waldron&quot; &lt;<a href="mailto:sarah.waldron11@yahoo.com" target="_blank">sarah.waldron11@yahoo.com</a>&gt;<br>
Cc: <a href="mailto:insight-users@itk.org" target="_blank">insight-users@itk.org</a><br></div>Date: Monday, October 5, 2009, 3:52 PM<br><br><div><div class="im">Looking deeper in the log you posted I ve figured out that you miss to<br>
include itkStatistics in your cmakelists i think.<br><br><br></div><div><div></div><div class="h5">On Mon, Oct 05, 2009 at 07:21:13AM -0700, Sarah Waldron wrote:<br>&gt; Did everyone get this email? I&#39;m
 not getting any response from anyone<br>&gt; Thanks<br>&gt; <br>&gt; <a href="http://mc/compose?to=insight-users@itk.org" target="_blank">insight-users@itk.org</a><br>&gt; <br>&gt; --- On Fri, 10/2/09, Sarah Waldron &lt;<a href="http://mc/compose?to=sarah.waldron11@yahoo.com" target="_blank">sarah.waldron11@yahoo.com</a>&gt; wrote:<br>
&gt; <br>&gt; From: Sarah Waldron &lt;<a href="http://mc/compose?to=sarah.waldron11@yahoo.com" target="_blank">sarah.waldron11@yahoo.com</a>&gt;<br>&gt; Subject: [Insight-users] problem<br>&gt; To: <a href="http://mc/compose?to=insight-users@itk.org" target="_blank">insight-users@itk.org</a><br>
&gt; Date: Friday, October 2, 2009, 6:01 PM<br>&gt; <br>&gt; Hi ,<br>&gt; Im new to ITK and I&#39;m having some trouble with this program I&#39;m writing. I want the program to perform rigid registration (translation only) but perform histogram matching first. The
 code performs a linking error. I&#39;ve attached the *.cxx and cmakelists file.. <br>&gt; Thanks,<br>&gt; Sarah<br>&gt; <br>&gt; <br>&gt; <br>&gt; <br>&gt; <br>&gt;       <br>&gt; -----Inline Attachment Follows-----<br>
&gt; <br>&gt; _____________________________________<br>&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>&gt; <br>&gt; Visit other Kitware open-source projects at<br>&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt; <br>&gt; Please keep messages on-topic and check the ITK FAQ at: <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www..itk.org/Wiki/ITK_FAQ</a><br>&gt; <br>&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>&gt; <br>&gt; <br>&gt; <br>&gt;       <br>&gt;
 #include &quot;itkImageRegistrationMethod.h&quot;<br>&gt; #include &quot;itkTranslationTransform.h&quot;<br>&gt; #include &quot;itkMeanSquaresImageToImageMetric.h&quot;<br>&gt; #include &quot;itkLinearInterpolateImageFunction.h&quot;<br>
&gt; #include &quot;itkRegularStepGradientDescentOptimizer.h&quot;<br>&gt; #include &quot;itkImage.h&quot;<br>&gt; #include &quot;itkImageFileReader.h&quot;<br>&gt; #include &quot;itkImageFileWriter.h&quot;<br>&gt; #include &quot;itkResampleImageFilter.h&quot;<br>
&gt; #include &quot;itkCastImageFilter.h&quot;<br>&gt; #include &quot;itkRescaleIntensityImageFilter.h&quot;<br>&gt; #include &quot;itkSubtractImageFilter.h&quot;<br>&gt; #include &quot;itkHistogramMatchingImageFilter.h&quot;<br>
&gt; <br>&gt; <br>&gt; <br>&gt; class CommandIterationUpdate : public itk::Command <br>&gt; {<br>&gt; public:<br>&gt;   typedef  CommandIterationUpdate   Self;<br>&gt;   typedef  itk::Command             Superclass;<br>&gt;   typedef
 itk::SmartPointer&lt;Self&gt;  Pointer;<br>&gt;   itkNewMacro( Self );<br>&gt; <br>&gt; protected:<br>&gt;   CommandIterationUpdate() {};<br>&gt; <br>&gt; public:<br>&gt; <br>&gt;   typedef itk::RegularStepGradientDescentOptimizer     OptimizerType;<br>
&gt;   typedef const OptimizerType                         *OptimizerPointer;<br>&gt; <br>&gt;   void Execute(itk::Object *caller, const itk::EventObject &amp; event)<br>&gt;   {<br>&gt;     Execute( (const itk::Object *)caller, event);<br>
&gt;   }<br>&gt; <br>&gt;   void Execute(const itk::Object * object, const itk::EventObject &amp; event)<br>&gt;   {<br>&gt;     OptimizerPointer optimizer = <br>&gt;         
                 dynamic_cast&lt; OptimizerPointer &gt;( object );<br>&gt; <br>&gt;     if( ! itk::IterationEvent().CheckEvent( &amp;event ) )<br>&gt;       {<br>&gt;       return;<br>&gt;       }<br>&gt; <br>&gt;     std::cout &lt;&lt; optimizer-&gt;GetCurrentIteration() &lt;&lt; &quot; = &quot;;<br>
&gt;     std::cout &lt;&lt; optimizer-&gt;GetValue() &lt;&lt; &quot; : &quot;;<br>&gt;     std::cout &lt;&lt; optimizer-&gt;GetCurrentPosition() &lt;&lt; std::endl;<br>&gt;   }<br>&gt;    <br>&gt; };<br>&gt; <br>&gt; <br>
&gt; int main( int argc, char *argv[] )<br>&gt; {<br>&gt;   if( argc &lt; 4 )<br>&gt;     {<br>&gt;     std::cerr &lt;&lt; &quot;Missing Parameters &quot; &lt;&lt; std::endl;<br>&gt; 
    std::cerr &lt;&lt; &quot;Usage: &quot; &lt;&lt; argv[0];<br>&gt;     std::cerr &lt;&lt; &quot; fixedImageFile  movingImageFile &quot;;<br>&gt;     std::cerr &lt;&lt; &quot;outputImagefile [differenceImageAfter]&quot;;<br>
&gt;     std::cerr &lt;&lt; &quot;[differenceImageBefore]&quot; &lt;&lt; std::endl;<br>&gt;     return EXIT_FAILURE;<br>&gt;     }<br>&gt;   <br>&gt;   const    unsigned int    Dimension = 2;<br>&gt;   typedef  unsigned int           PixelType;<br>
&gt;   typedef itk::Image&lt; PixelType, Dimension &gt;  FixedImageType;<br>&gt;   typedef itk::Image&lt; PixelType, Dimension &gt;  MovingImageType;<br>&gt; <br>&gt;   typedef itk::ImageFileReader&lt; FixedImageType  &gt;
 FixedImageReaderType;<br>&gt;   typedef itk::ImageFileReader&lt; MovingImageType &gt; MovingImageReaderType;<br>&gt;   FixedImageReaderType::Pointer  fixedImageReader  = FixedImageReaderType::New();<br>&gt;   MovingImageReaderType::Pointer movingImageReader = MovingImageReaderType::New();<br>
&gt;   fixedImageReader-&gt;SetFileName(  argv[1] );<br>&gt;   movingImageReader-&gt;SetFileName( argv[2] );<br>&gt;   fixedImageReader-&gt;Update();<br>&gt;   movingImageReader-&gt;Update();<br>&gt; <br>&gt;   typedef float InternalPixelType;<br>
&gt;   typedef itk::Image&lt; InternalPixelType, Dimension &gt; InternalImageType;<br>&gt;   typedef itk::CastImageFilter&lt; FixedImageType, InternalImageType &gt; FixedImageCasterType;<br>&gt;   typedef itk::CastImageFilter&lt; MovingImageType,
 InternalImageType &gt; MovingImageCasterType;<br>&gt;   FixedImageCasterType::Pointer fixedImageCaster   = FixedImageCasterType::New();<br>&gt;   MovingImageCasterType::Pointer movingImageCaster = MovingImageCasterType::New();<br>
&gt; <br>&gt;   fixedImageCaster-&gt;SetInput( fixedImageReader-&gt;GetOutput() );<br>&gt;   movingImageCaster-&gt;SetInput( movingImageReader-&gt;GetOutput() );<br>&gt; <br>&gt;   fixedImageCaster-&gt;Update();<br>&gt;   movingImageCaster-&gt;Update();<br>
&gt; <br>&gt; typedef itk::HistogramMatchingImageFilter&lt; InternalImageType, InternalImageType &gt;   MatchingFilterType;<br>&gt; MatchingFilterType::Pointer matcher = MatchingFilterType::New();<br>&gt; matcher-&gt;SetInput( movingImageCaster-&gt;GetOutput() );<br>
&gt; matcher-&gt;SetReferenceImage( fixedImageCaster-&gt;GetOutput() );<br>&gt;
 matcher-&gt;SetNumberOfHistogramLevels( 1024 );<br>&gt; matcher-&gt;SetNumberOfMatchPoints( 7 );<br>&gt; matcher-&gt;ThresholdAtMeanIntensityOn();<br>&gt; <br>&gt;  <br>&gt;   typedef itk::TranslationTransform&lt; double, Dimension &gt; TransformType;<br>
&gt;   typedef itk::RegularStepGradientDescentOptimizer       OptimizerType;<br>&gt;   typedef itk::MeanSquaresImageToImageMetric&lt; InternalImageType, InternalImageType &gt;    MetricType;<br>&gt;   typedef itk:: LinearInterpolateImageFunction&lt; InternalImageType, double          &gt;    InterpolatorType;<br>
&gt;   typedef itk::ImageRegistrationMethod&lt; InternalImageType, InternalImageType &gt;    RegistrationType;<br>&gt; <br>&gt;   MetricType::Pointer         metric        =
 MetricType::New();<br>&gt;   TransformType::Pointer      transform     = TransformType::New();<br>&gt;   OptimizerType::Pointer      optimizer     = OptimizerType::New();<br>&gt;   InterpolatorType::Pointer   interpolator  = InterpolatorType::New();<br>
&gt;   RegistrationType::Pointer   registration  = RegistrationType::New();<br>&gt; <br>&gt;   registration-&gt;SetMetric(        metric        );<br>&gt;   registration-&gt;SetOptimizer(     optimizer     );<br>&gt;   registration-&gt;SetTransform(     transform     );<br>
&gt;   registration-&gt;SetInterpolator(  interpolator  );<br>&gt; <br>&gt;
 <br>&gt;   registration-&gt;SetFixedImage(    fixedImageCaster-&gt;GetOutput()    );<br>&gt;   registration-&gt;SetMovingImage(   matcher-&gt;GetOutput()   );<br>&gt; <br>&gt; <br>&gt;   typedef RegistrationType::ParametersType ParametersType;<br>
&gt;   ParametersType initialParameters( transform-&gt;GetNumberOfParameters() );<br>&gt; <br>&gt;   initialParameters[0] = 0.0;  // Initial offset in mm along X<br>&gt;   initialParameters[1] = 0.0;  // Initial offset in mm along Y<br>
&gt;   <br>&gt;   registration-&gt;SetInitialTransformParameters( initialParameters );<br>&gt;   <br>&gt;   //  It is usually desirable to fine tune the parameters of the optimizer.<br>&gt;   //  Each optimizer has particular parameters that must be
 interpreted in the<br>&gt;   //  context of the optimization strategy it implements. The optimizer used in<br>&gt;   //  this example is a variant of gradient descent that attempts to prevent it<br>&gt;   //  from taking steps that are too large.  At each iteration, this optimizer<br>
&gt;   //  will take a step along the direction of the \doxygen{ImageToImageMetric}<br>&gt;   //  derivative. The initial length of the step is defined by the user. Each<br>&gt;   //  time the direction of the derivative abruptly changes, the optimizer<br>
&gt;   //  assumes that a local extrema has been passed and reacts by reducing the<br>&gt;   //  step length by a half.. After several reductions of the step length, the<br>&gt;   //  optimizer may be moving in a very restricted area of the
 transform<br>&gt;   //  parameter space. The user can define how small the step length should be<br>&gt;   //  to consider convergence to have been reached. This is equivalent to defining<br>&gt;   //  the precision with which the final transform should be known.<br>
&gt;   //<br>&gt;   //  The initial step length is defined with the method<br>&gt;   //  \code{SetMaximumStepLength()}, while the tolerance for convergence is<br>&gt;   //  defined with the method \code{SetMinimumStepLength()}.<br>
&gt;  <br>&gt;   optimizer-&gt;SetMaximumStepLength( 4.00 );  <br>&gt;   optimizer-&gt;SetMinimumStepLength( 0.01 );<br>&gt;   optimizer-&gt;SetNumberOfIterations( 200 );<br>&gt;   // Connect an observer<br>&gt;   CommandIterationUpdate::Pointer
 observer = CommandIterationUpdate::New();<br>&gt;   optimizer-&gt;AddObserver( itk::IterationEvent(), observer );<br>&gt; <br>&gt;   try <br>&gt;     { <br>&gt;     registration-&gt;Update(); <br>&gt;     } <br>&gt;   catch( itk::ExceptionObject &amp; err ) <br>
&gt;     { <br>&gt;     std::cerr &lt;&lt; &quot;ExceptionObject caught !&quot; &lt;&lt; std::endl; <br>&gt;     std::cerr &lt;&lt; err &lt;&lt; std::endl; <br>&gt;     return EXIT_FAILURE;<br>&gt;     } <br>&gt;   //  The result of the registration process is an array of parameters that<br>
&gt;   //  defines the spatial transformation in an unique way. This final result is<br>&gt;   //  obtained using the \code{GetLastTransformParameters()}
 method.<br>&gt;   ParametersType finalParameters = registration-&gt;GetLastTransformParameters();<br>&gt; <br>&gt;   //  In the case of the \doxygen{TranslationTransform}, there is a<br>&gt;   //  straightforward interpretation of the parameters.  Each element of the<br>
&gt;   //  array corresponds to a translation along one spatial dimension.<br>&gt;   const double TranslationAlongX = finalParameters[0];<br>&gt;   const double TranslationAlongY = finalParameters[1];<br>&gt;   const unsigned int numberOfIterations = optimizer-&gt;GetCurrentIteration();<br>
&gt; <br>&gt;   //  The value of the image metric corresponding to the last set of parameters<br>&gt;   //  can be obtained with the \code{GetValue()} method of the optimizer.<br>&gt;   const double bestValue =
 optimizer-&gt;GetValue();<br>&gt; <br>&gt;   std::cout &lt;&lt; &quot;Result = &quot; &lt;&lt; std::endl;<br>&gt;   std::cout &lt;&lt; &quot; Translation X = &quot; &lt;&lt; TranslationAlongX  &lt;&lt; std::endl;<br>&gt;   std::cout &lt;&lt; &quot; Translation Y = &quot; &lt;&lt; TranslationAlongY  &lt;&lt; std::endl;<br>
&gt;   std::cout &lt;&lt; &quot; Iterations    = &quot; &lt;&lt; numberOfIterations &lt;&lt; std::endl;<br>&gt;   std::cout &lt;&lt; &quot; Metric value  = &quot; &lt;&lt; bestValue          &lt;&lt; std::endl;<br>&gt; <br>
&gt;   typedef itk::ResampleImageFilter&lt; MovingImageType, FixedImageType &gt;    ResampleFilterType;<br>&gt;   <br>&gt;   ResampleFilterType::Pointer resampler = ResampleFilterType::New();<br>&gt;   resampler-&gt;SetInput( movingImageReader-&gt;GetOutput()
 );<br>&gt;   resampler-&gt;SetTransform( registration-&gt;GetOutput()-&gt;Get() );<br>&gt;   FixedImageType::Pointer fixedImage = fixedImageReader-&gt;GetOutput();<br>&gt;   resampler-&gt;SetSize( fixedImage-&gt;GetLargestPossibleRegion().GetSize() );<br>
&gt;   resampler-&gt;SetOutputOrigin(  fixedImage-&gt;GetOrigin() );<br>&gt;   resampler-&gt;SetOutputSpacing( fixedImage-&gt;GetSpacing() );<br>&gt;   resampler-&gt;SetOutputDirection( fixedImage-&gt;GetDirection() );<br>
&gt;   resampler-&gt;SetDefaultPixelValue( 100 );<br>&gt;   <br>&gt;   typedef unsigned char OutputPixelType;<br>&gt;   typedef itk::Image&lt; OutputPixelType, Dimension &gt; OutputImageType;<br>&gt;   typedef itk::CastImageFilter&lt; FixedImageType, OutputImageType &gt; CastFilterType;<br>
&gt;   typedef
 itk::ImageFileWriter&lt; OutputImageType &gt;  WriterType;<br>&gt;   <br>&gt;   WriterType::Pointer      writer =  WriterType::New();<br>&gt;   CastFilterType::Pointer  caster =  CastFilterType::New();<br>&gt;   writer-&gt;SetFileName( argv[3] );<br>
&gt; <br>&gt;   caster-&gt;SetInput( resampler-&gt;GetOutput() );<br>&gt;   writer-&gt;SetInput( caster-&gt;GetOutput()   );<br>&gt;   writer-&gt;Update();<br>&gt;   typedef itk::SubtractImageFilter&lt; FixedImageType, FixedImageType, FixedImageType &gt; DifferenceFilterType;<br>
&gt; <br>&gt;   DifferenceFilterType::Pointer difference = DifferenceFilterType::New();<br>&gt; <br>&gt;   difference-&gt;SetInput1( fixedImageReader-&gt;GetOutput() );<br>&gt;   difference-&gt;SetInput2(
 resampler-&gt;GetOutput() );<br>&gt;   typedef itk::RescaleIntensityImageFilter&lt; FixedImageType, OutputImageType &gt;   RescalerType;<br>&gt; <br>&gt;   RescalerType::Pointer intensityRescaler = RescalerType::New();<br>
&gt;   <br>&gt;   intensityRescaler-&gt;SetInput( difference-&gt;GetOutput() );<br>&gt;   intensityRescaler-&gt;SetOutputMinimum(   0 );<br>&gt;   intensityRescaler-&gt;SetOutputMaximum( 255 );<br>&gt; <br>&gt;   resampler-&gt;SetDefaultPixelValue( 1 );<br>
&gt;   WriterType::Pointer writer2 = WriterType::New();<br>&gt;   writer2-&gt;SetInput( intensityRescaler-&gt;GetOutput() );  <br>&gt; <br>&gt;   if( argc &gt; 4 )<br>&gt;     {<br>&gt;     writer2-&gt;SetFileName( argv[4] );<br>
&gt; 
    writer2-&gt;Update();<br>&gt;     }<br>&gt; <br>&gt;   TransformType::Pointer identityTransform = TransformType::New();<br>&gt;   identityTransform-&gt;SetIdentity();<br>&gt;   resampler-&gt;SetTransform( identityTransform );<br>
&gt;   <br>&gt;   if( argc &gt; 5 )<br>&gt;     {<br>&gt;     writer2-&gt;SetFileName( argv[5] );<br>&gt;     writer2-&gt;Update();<br>&gt;     }<br>&gt; <br>&gt;   return EXIT_SUCCESS;<br>&gt; }<br>&gt; <br><br>&gt; PROJECT(ImageRegistration1)<br>
&gt; FIND_PACKAGE(ITK)<br>&gt; IF(ITK_FOUND)<br>&gt;   INCLUDE(${ITK_USE_FILE})<br>&gt; ELSE(ITK_FOUND)<br>&gt;   MESSAGE(FATAL_ERROR<br>&gt;           &quot;ITK not found. Please set ITK_DIR.&quot;)<br>&gt;
 ENDIF(ITK_FOUND)<br>&gt; <br>&gt; ADD_EXECUTABLE(ImageRegistration1 ImageRegistration1.cxx )<br>&gt; TARGET_LINK_LIBRARIES(ImageRegistration1 ITKIO ITKNumerics)<br><br>&gt; _____________________________________<br>&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt; <br>&gt; Visit other Kitware open-source projects at<br>&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>&gt; <br>&gt; Please keep messages on-topic and check the ITK FAQ at: <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt; <br>&gt; Follow this link to subscribe/unsubscribe:<br>&gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br><br><br>-- <br>=============================================<br>
Gabriele Arnulfo<br>BioEngineering Phd Student.<br>Bio-Lab, DIST - University of
 Genoa<br>Viale Causa 13, 16145 Genova - ITALY<br>Tel    :    (+39) 010-353-2789<br>Fax    :    (+39) 010-353-2948<br>Email    :    <a href="http://gabriele.arnulfo_at_gmail.com" target="_blank">gabriele.arnulfo_at_gmail.com</a><br>
Web     :    <a href="http://ga.mtvl.org" target="_blank">http://ga.mtvl.org</a><br>------------------------------------<br>In a world without wall,<br>            who needs WindowS?<br>------------------------------------<br>
=============================================<br><br><br></div></div></div></blockquote></td></tr></tbody></table><br>

      <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>
Please keep messages on-topic and check the ITK FAQ at: <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>