<br>Hi Luis et al.,<br><br>I&#39;m puzzled by the intensityThreshold, because the optimizer observer gives:<br><br>Using fixed image intensity threshold: 1<br><br>0   nan   [nan, nan, nan]<br>1   nan   [nan, nan, nan]<br>2   nan   [nan, nan, nan]<br>
3   nan   [nan, nan, nan]<br>4   nan   [nan, nan, nan]<br>5   nan   [nan, nan, nan]<br>6   nan   [nan, nan, nan]<br>7   nan   [nan, nan, nan]<br>8   nan   [nan, nan, nan]<br>9   nan   [nan, nan, nan]<br>10   nan   [nan, nan, nan]<br>
11   nan   [nan, nan, nan]<br>12   nan   [nan, nan, nan]<br>13   nan   [nan, nan, nan]<br>14   nan   [nan, nan, nan]<br>15   nan   [nan, nan, nan]<br>16   nan   [nan, nan, nan]<br>17   nan   [nan, nan, nan]<br>18   nan   [nan, nan, nan]<br>
19   nan   [nan, nan, nan]<br>20   nan   [nan, nan, nan]<br><br><br>I&#39;ll try to explore a little more using the <br><br>BinaryThresholdImageFilter<br><br>I&#39;ll take a look at<br><br>examples/Filtering/BinaryThresholdImageFilter.cxx<br>
<br>Thanks,<br>Darren<br><br><br><br><div class="gmail_quote">On Wed, Mar 17, 2010 at 3:44 PM, Luis Ibanez <span dir="ltr">&lt;<a href="mailto:luis.ibanez@kitware.com">luis.ibanez@kitware.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Hi Darren,<br>
<br>
Excellent,<br>
<br>
In that case you should be able to eliminate the background<br>
by using:<br>
<br>
intensityThreshold = 1;<br>
metric-&gt;SetFixedImageSamplesIntensityThreshold( intensityThreshold );<br>
<br>
If you want to be 100% sure, it may be worth running a<br>
BinaryThresholdImageFilter first and saving the output<br>
for further visualization. That will provide a good sanity<br>
check.<br>
<br>
<br>
     Regards,<br>
<br>
<br>
            Luis<br>
<br>
<br>
------------------------------------------------------------------------------------------<br>
On Wed, Mar 17, 2010 at 5:22 PM, Darren Weber<br>
<div><div></div><div class="h5">&lt;<a href="mailto:darren.weber.lists@gmail.com">darren.weber.lists@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; Hi Luis et al.,<br>
&gt;<br>
&gt; I&#39;ve created the input images by exporting from Photoshop with a defined<br>
&gt; background value (RGB: 0 0 0).  It&#39;s these values that I want to exclude<br>
&gt; from the metric in the image registration method.<br>
&gt;<br>
&gt; The min color is confirmed by the identify program of ImageMagick:<br>
&gt;<br>
&gt;   Colorspace: RGB<br>
&gt;   Depth: 16-bit<br>
&gt;   Channel depth:<br>
&gt;     gray: 16-bit<br>
&gt;   Channel statistics:<br>
&gt;     Gray:<br>
&gt;       min: 0 (0)<br>
&gt;       max: 46335 (0.707027)<br>
&gt;       mean: 25664.6 (0.391617)<br>
&gt;       standard deviation: 15257.7 (0.232818)<br>
&gt;       kurtosis: -0.857968<br>
&gt;       skewness: -0.771191<br>
&gt;<br>
&gt;<br>
&gt; TIA,<br>
&gt; Darren<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Tue, Mar 16, 2010 at 10:25 AM, Luis Ibanez &lt;<a href="mailto:luis.ibanez@kitware.com">luis.ibanez@kitware.com</a>&gt;<br>
&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Hi Darren,<br>
&gt;&gt;<br>
&gt;&gt; 1) As described in the ITK Software Guide<br>
&gt;&gt;<br>
&gt;&gt;         <a href="http://www.itk.org/ItkSoftwareGuide.pdf" target="_blank">http://www.itk.org/ItkSoftwareGuide.pdf</a><br>
&gt;&gt;<br>
&gt;&gt;   in the Chapter 7 &quot;Reading and Writing Images&quot;,<br>
&gt;&gt;   in section 7.1, pdf-page: 296:<br>
&gt;&gt;<br>
&gt;&gt;  ITK takes the pixel data from the input file and casts it to<br>
&gt;&gt;  the PixelType that you used for instantiating your image<br>
&gt;&gt;  at compilation time. The casting is performed using<br>
&gt;&gt;  C-Language rules, and not truncation, overflow or underflow<br>
&gt;&gt;  detection, nor scaling is applied.<br>
&gt;&gt;<br>
&gt;&gt;  So, if your TIFF file contains 16bit integers values per pixel<br>
&gt;&gt;  and you instantiate the image using a &quot;float&quot; pixel type, then<br>
&gt;&gt;  the values of the integers will be casted (without any rescaling)<br>
&gt;&gt;  in to floats.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; 2)  If you have a use for the original &quot;16bits&quot; data, then it may<br>
&gt;&gt;     be worth reading the file in an image of the exact same type<br>
&gt;&gt;     and then using a CastImageFilter to convert it to float.<br>
&gt;&gt;<br>
&gt;&gt;     On the other hand, if you only need the float image for<br>
&gt;&gt;     performing the registration, then reading directly into a<br>
&gt;&gt;     float image is actually saving you some memory.<br>
&gt;&gt;<br>
&gt;&gt; 3)   &quot;Black&quot; pixels is quite an ambiguous measure, since,<br>
&gt;&gt;     depending on the image viewer that you are using, it may<br>
&gt;&gt;     well be that what you &quot;see&quot; as black, is actually a level<br>
&gt;&gt;     of intensity with values around 20,000 (for example).<br>
&gt;&gt;<br>
&gt;&gt;     What you really need is a sort of histogram that will allow<br>
&gt;&gt;     you to identify the background of the image,<br>
&gt;&gt;<br>
&gt;&gt;     or<br>
&gt;&gt;<br>
&gt;&gt;     A visualization method that allows you to identify the<br>
&gt;&gt;     intensity level of the background.<br>
&gt;&gt;<br>
&gt;&gt;     You may want to consider:<br>
&gt;&gt;<br>
&gt;&gt;       Insight/Code/Algorithms/<br>
&gt;&gt;                        itkOtsuThresholdImageCalculator.h<br>
&gt;&gt;<br>
&gt;&gt;     and the Insight Journal papers:<br>
&gt;&gt;<br>
&gt;&gt;     &quot;Kappa Sigma Clipping&quot;<br>
&gt;&gt;     <a href="http://www.insight-journal.org/browse/publication/132" target="_blank">http://www.insight-journal.org/browse/publication/132</a><br>
&gt;&gt;     <a href="http://hdl.handle.net/1926/367" target="_blank">http://hdl.handle.net/1926/367</a><br>
&gt;&gt;<br>
&gt;&gt;     &quot;Robust Automatic Threshold Selection&quot;<br>
&gt;&gt;     <a href="http://www.insight-journal.org/browse/publication/134" target="_blank">http://www.insight-journal.org/browse/publication/134</a><br>
&gt;&gt;     <a href="http://hdl.handle.net/1926/370" target="_blank">http://hdl.handle.net/1926/370</a><br>
&gt;&gt;<br>
&gt;&gt;     as options for estimating a suitable threshold.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;   Regards,<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;         Luis<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; ----------------------------------------------------------------<br>
&gt;&gt; On Mon, Mar 15, 2010 at 3:09 PM, Darren Weber<br>
&gt;&gt; &lt;<a href="mailto:darren.weber.lists@gmail.com">darren.weber.lists@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Hi Luis et al.,<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Now the ITK library is compiled and installed with the additional<br>
&gt;&gt; &gt; features<br>
&gt;&gt; &gt; available.  Now this code will compile:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; typedef itk::MeanSquaresImageToImageMetric&lt;iBWImgType,iBWImgType&gt;<br>
&gt;&gt; &gt; MetricType;<br>
&gt;&gt; &gt; MetricType::Pointer metric = MetricType::New();<br>
&gt;&gt; &gt; metric-&gt;SetUseFixedImageSamplesIntensityThreshold( true );<br>
&gt;&gt; &gt; metric-&gt;SetFixedImageSamplesIntensityThreshold( intensityThreshold );<br>
&gt;&gt; &gt; //metric-&gt;SetUseSequentialSampling( true );<br>
&gt;&gt; &gt; //metric-&gt;SetUseAllPixels( true );<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Now a question arises about the range of values for the<br>
&gt;&gt; &gt; &quot;intensityThreshold&quot;.  The input pixel and image typedefs are:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; const unsigned short dimImg = 2;<br>
&gt;&gt; &gt; typedef float iPixType;<br>
&gt;&gt; &gt; typedef itk::Image&lt; iPixType, dimImg &gt; iBWImgType;<br>
&gt;&gt; &gt; typedef itk::ImageFileReader&lt; iBWImgType &gt; bwImageReaderType;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; The image reader is pulling in .tif images, which ImageMagick identifies<br>
&gt;&gt; &gt; as<br>
&gt;&gt; &gt; (see verbose output in attachment):<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; $  identify testdata/bw/section0003_w1.tif<br>
&gt;&gt; &gt; testdata/bw/section0003_w1.tif TIFF 549x539 549x539+0+0 16-bit Grayscale<br>
&gt;&gt; &gt; DirectClass 615KB 0.010u 0:00.030<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; When this image is read into the iPixType, I assume the range of these<br>
&gt;&gt; &gt; &quot;unsigned short&quot; values is mapped or cast into a range of &quot;float&quot;<br>
&gt;&gt; &gt; values.<br>
&gt;&gt; &gt; Is the new range of values from 0.0 to 1.0, is that correct for the<br>
&gt;&gt; &gt; &quot;float&quot;<br>
&gt;&gt; &gt; pixel type in ITK?  How does the ITK image reader convert or cast the<br>
&gt;&gt; &gt; pixel<br>
&gt;&gt; &gt; values to float?  (The reason the input images are specified as &quot;float&quot;<br>
&gt;&gt; &gt; rather than &quot;unsigned short&quot; is to have them input to the registration<br>
&gt;&gt; &gt; method as floats - should this be done with an explicit cast filter?)<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; The input images have a black background (RGB value: 0 0 0).  It would<br>
&gt;&gt; &gt; be<br>
&gt;&gt; &gt; great to threshold the MeanSquaresImageToImageMetric to exclude all the<br>
&gt;&gt; &gt; black pixels.  In the range of values for the input pixel data that are<br>
&gt;&gt; &gt; an<br>
&gt;&gt; &gt; unsigned short (0 to 65535), any pixel above 0 would be<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; unsigned short intensityThreshold = 1;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; However, the intensityThreshold is declared and initialized as:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; iBWImgType::PixelType intensityThreshold = 0.0;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Is this a reasonable value for this float intensityThreshold:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; iBWImgType::PixelType intensityThreshold = 1.0 / USHRT_MAX;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; TIA,<br>
&gt;&gt; &gt; Darren<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; On Sat, Mar 6, 2010 at 12:15 PM, Luis Ibanez &lt;<a href="mailto:luis.ibanez@kitware.com">luis.ibanez@kitware.com</a>&gt;<br>
&gt;&gt; &gt; wrote:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Hi Darren,<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; The feature that you are referring to, is only available<br>
&gt;&gt; &gt;&gt; in the new version of the metrics that are in the<br>
&gt;&gt; &gt;&gt; Code/Review directory.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; In order to use this classes you must reconfigure your<br>
&gt;&gt; &gt;&gt; binary build of ITK, by rerunning CMake and turning<br>
&gt;&gt; &gt;&gt; ON the CMake variables:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;   *  ITK_USE_REVIEW<br>
&gt;&gt; &gt;&gt;   *  OPTIMIZED_REGISTRATION_METHODS<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Then you can rebuild your application.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;     Regards,<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;            Luis<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; -----------------------------------------------------------------------------------<br>
&gt;&gt; &gt;&gt; On Thu, Mar 4, 2010 at 5:56 PM, Darren Weber<br>
&gt;&gt; &gt;&gt; &lt;<a href="mailto:darren.weber.lists@gmail.com">darren.weber.lists@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; In an image registration framework, the metric determines image<br>
&gt;&gt; &gt;&gt; &gt; &quot;matches&quot;.<br>
&gt;&gt; &gt;&gt; &gt; Let&#39;s suppose we have large images that contain a majority of<br>
&gt;&gt; &gt;&gt; &gt; background<br>
&gt;&gt; &gt;&gt; &gt; color (or transparency).  In a metric like the<br>
&gt;&gt; &gt;&gt; &gt; itk::MeanSquaresImageToImageMetric, the majority of the<br>
&gt;&gt; &gt;&gt; &gt; sqaured-diff-values<br>
&gt;&gt; &gt;&gt; &gt; would be zero and the remainder of the &quot;relevant&quot; pixel differences<br>
&gt;&gt; &gt;&gt; &gt; may<br>
&gt;&gt; &gt;&gt; &gt; be<br>
&gt;&gt; &gt;&gt; &gt; &quot;swamped&quot; or &quot;lost&quot; in the division by a large N.<br>
&gt;&gt; &gt;&gt; &gt; Also, it appears the default metric sampling is a random-sample of<br>
&gt;&gt; &gt;&gt; &gt; the<br>
&gt;&gt; &gt;&gt; &gt; image<br>
&gt;&gt; &gt;&gt; &gt; pixels (this might be modified with methods like<br>
&gt;&gt; &gt;&gt; &gt; &quot;SetUseAllPixels(bool)&quot;).<br>
&gt;&gt; &gt;&gt; &gt;  In this case, it is possible, perhaps likely, that few of the<br>
&gt;&gt; &gt;&gt; &gt; &quot;relevant&quot;<br>
&gt;&gt; &gt;&gt; &gt; pixels will be evaluated in the metric.<br>
&gt;&gt; &gt;&gt; &gt; See:<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; <a href="http://www.itk.org/Doxygen316/html/classitk_1_1ImageToImageMetric.html#42b876134388099afbf34b14faf83cdb" target="_blank">http://www.itk.org/Doxygen316/html/classitk_1_1ImageToImageMetric.html#42b876134388099afbf34b14faf83cdb</a><br>

&gt;&gt; &gt;&gt; &gt; This documentation suggests there are also options to define:<br>
&gt;&gt; &gt;&gt; &gt; IntensityThreshold, Masks, and SequentialSampling<br>
&gt;&gt; &gt;&gt; &gt; In my reading of the doxy page (see next link), there is a method<br>
&gt;&gt; &gt;&gt; &gt; called<br>
&gt;&gt; &gt;&gt; &gt; &quot;SetFixedImageSamplesIntensityThreshold&quot; that might be useful to<br>
&gt;&gt; &gt;&gt; &gt; define<br>
&gt;&gt; &gt;&gt; &gt; a<br>
&gt;&gt; &gt;&gt; &gt; background value (like zero) to be excluded from the metric.  Is that<br>
&gt;&gt; &gt;&gt; &gt; right?<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; <a href="http://www.itk.org/Doxygen316/html/classitk_1_1MeanSquaresImageToImageMetric-members.html" target="_blank">http://www.itk.org/Doxygen316/html/classitk_1_1MeanSquaresImageToImageMetric-members.html</a><br>

&gt;&gt; &gt;&gt; &gt; What is the logic of this &quot;threshold&quot; method?  From the<br>
&gt;&gt; &gt;&gt; &gt; documentation,<br>
&gt;&gt; &gt;&gt; &gt; it<br>
&gt;&gt; &gt;&gt; &gt; appears to be a minima value.  So if the background intensity is<br>
&gt;&gt; &gt;&gt; &gt; zero,<br>
&gt;&gt; &gt;&gt; &gt; the<br>
&gt;&gt; &gt;&gt; &gt; threshold value of 1 would include all pixels &gt; 0 (note the threshold<br>
&gt;&gt; &gt;&gt; &gt; value<br>
&gt;&gt; &gt;&gt; &gt; must be the same type as the fixed image PixelType).<br>
&gt;&gt; &gt;&gt; &gt; There is no equivalent method for the moving image,<br>
&gt;&gt; &gt;&gt; &gt; like &quot;SetMovingImageSamplesIntensityThreshold&quot;.  Is this unnecessary<br>
&gt;&gt; &gt;&gt; &gt; because<br>
&gt;&gt; &gt;&gt; &gt; the metric only scans the pixels of the moving image that fall within<br>
&gt;&gt; &gt;&gt; &gt; the<br>
&gt;&gt; &gt;&gt; &gt; &quot;domain&quot; of fixed image after the transform &amp; interpolation?<br>
&gt;&gt; &gt;&gt; &gt; I could not locate this method in the class hierarchy - is it<br>
&gt;&gt; &gt;&gt; &gt; available<br>
&gt;&gt; &gt;&gt; &gt; (inherited) in all metrics?<br>
&gt;&gt; &gt;&gt; &gt; I&#39;m confused because these methods do not appear to be available<br>
&gt;&gt; &gt;&gt; &gt; to itk::MeanSquaresImageToImageMetric<br>
&gt;&gt; &gt;&gt; &gt; e.g.:  CODE:<br>
&gt;&gt; &gt;&gt; &gt;     typedef itk::MeanSquaresImageToImageMetric&lt; iBWImgType,<br>
&gt;&gt; &gt;&gt; &gt; iBWImgType &gt;<br>
&gt;&gt; &gt;&gt; &gt; MetricType;<br>
&gt;&gt; &gt;&gt; &gt;     MetricType::Pointer metric = MetricType::New();<br>
&gt;&gt; &gt;&gt; &gt;     metric-&gt;SetFixedImageSamplesIntensityThreshold( 0.0 );<br>
&gt;&gt; &gt;&gt; &gt;     metric-&gt;SetUseAllPixels( true );<br>
&gt;&gt; &gt;&gt; &gt; e.g.:  COMPILATION:<br>
&gt;&gt; &gt;&gt; &gt; itkImageRigid2DCoregistration.cxx: In function ‘int main(int,<br>
&gt;&gt; &gt;&gt; &gt; char**)’:<br>
&gt;&gt; &gt;&gt; &gt; itkImageRigid2DCoregistration.cxx:442: error: ‘class<br>
&gt;&gt; &gt;&gt; &gt; itk::MeanSquaresImageToImageMetric&lt;iBWImgType, iBWImgType&gt;’ has no<br>
&gt;&gt; &gt;&gt; &gt; member<br>
&gt;&gt; &gt;&gt; &gt; named ‘SetFixedImageSamplesIntensityThreshold’<br>
&gt;&gt; &gt;&gt; &gt; itkImageRigid2DCoregistration.cxx:443: error: ‘class<br>
&gt;&gt; &gt;&gt; &gt; itk::MeanSquaresImageToImageMetric&lt;iBWImgType, iBWImgType&gt;’ has no<br>
&gt;&gt; &gt;&gt; &gt; member<br>
&gt;&gt; &gt;&gt; &gt; named ‘SetUseAllPixels’<br>
&gt;&gt; &gt;&gt; &gt; gmake[2]: ***<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; [CMakeFiles/itkImageRigid2DCoregistration.dir/itkImageRigid2DCoregistration.cxx.o]<br>
&gt;&gt; &gt;&gt; &gt; Error 1<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; TIA,<br>
&gt;&gt; &gt;&gt; &gt; Darren<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.html" target="_blank">http://www.kitware.com/products/protraining.html</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; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;<br>
&gt;<br>
</div></div></blockquote></div><br>