Dear itk users <div>I got hits error in my levelset revolution when the current levelset&#39;s surface/contour shrinks to nearly a point. </div><div><br></div><div><div>File: /cm/shared/apps/itk/4.1rc01/ITK/Modules/Filtering/LabelMap/include/itkLabelMap.hxx</div>
<div>Line: 138</div><div>Description: itk::ERROR: LabelMap(0x180d190): No label object with label -3.</div><div><br></div><div>I understand that it is because the current levelset does not have a level of -3 because it is too small to have that, but that could be reasonable for me, because I can have very small structures</div>
<div>I am not allowed to change itk library, but I really want to remove this label checking.</div><div>I could make my own itkLabelMapNewVersion.hxx , put  it together in the same dir with my .cxx file.</div><div><br></div>
<div>May I ask is there a better solusion?</div><div><br></div><div>Thanks a lot!!!</div><div><br></div><div>BEST,</div><div><br></div><div>Hui</div><div><br></div><div>On Thu, Apr 5, 2012 at 6:00 PM,  <span dir="ltr">&lt;<a href="mailto:insight-users-request@itk.org">insight-users-request@itk.org</a>&gt;</span> wrote:</div>
<div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Send Insight-users mailing list submissions to<br>
        <a href="mailto:insight-users@itk.org">insight-users@itk.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
        <a href="mailto:insight-users-request@itk.org">insight-users-request@itk.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:insight-users-owner@itk.org">insight-users-owner@itk.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of Insight-users digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
   1. Re: use of std::vector with ITK typedefs (Arvind Rao)<br>
   2. Point Set Rigid Registration (Nirav Karani)<br>
   3. Re: use of std::vector with ITK typedefs (Matt McCormick)<br>
   4. Error     itk::Math::Detail::RoundHalfIntegerToEven_64(double)<br>
      (Rick Frank)<br>
   5. itk 4.1 VS2008 python 2.6 x64 (Martin Dulovits)<br>
   6. Re: Error<br>
      itk::Math::Detail::RoundHalfIntegerToEven_64(double)<br>
      (Bradley Lowekamp)<br>
   7. Re: use of std::vector with ITK typedefs (Arvind Rao)<br>
   8. build error with gcc 4.7 (&#39;__int128&#39; was not      declared in this<br>
      scope) (Andrzej Giniewicz)<br>
   9. Visual Studio 10 hanging because of size of,      the     project<br>
      (Martin Dulovits)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Thu, 5 Apr 2012 00:34:07 -0400<br>
From: Arvind Rao &lt;<a href="mailto:arvind.sbia@gmail.com">arvind.sbia@gmail.com</a>&gt;<br>
Subject: Re: [Insight-users] use of std::vector with ITK typedefs<br>
To: Matt McCormick &lt;<a href="mailto:matt.mccormick@kitware.com">matt.mccormick@kitware.com</a>&gt;<br>
Cc: <a href="mailto:insight-users@itk.org">insight-users@itk.org</a><br>
Message-ID:<br>
        &lt;CAEsz-mZ2-M7C_9XmLnE29Y=<a href="mailto:AQ%2BGgVbo%2Bt57eLyy%2BoU8ASBf0Pg@mail.gmail.com">AQ+GgVbo+t57eLyy+oU8ASBf0Pg@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Hi Matt,<br>
<br>
Thanks for replying. *ReadStreamFile(...)* is defined below.<br>
The &quot;bad_alloc&gt; caught: St9bad_alloc&quot; error seems to originate from this<br>
function. For clarity, *TPixelType = itk::Vector&lt;float, 3*&gt;<br>
<br>
template&lt; typename TPixelType&gt;<br>
void *ReadStreamFile*( std::string filename, std::vector&lt;TPixelType&gt;<br>
&amp;points )<br>
{<br>
   TPixelType dir;<br>
   int num;<br>
   std::vector&lt;float&gt; vec;<br>
   std::ifstream indata( filename.c_str() ); // opens the file<br>
<br>
   indata &gt;&gt; num;<br>
   while ( !indata.eof() )  { // keep reading until end-of-file<br>
      vec.push_back( num );<br>
      indata &gt;&gt; num;}<br>
   indata.close();<br>
}<br>
<br>
Best,<br>
Arvind<br>
<br>
On Wed, Apr 4, 2012 at 10:53 PM, Matt McCormick<br>
&lt;<a href="mailto:matt.mccormick@kitware.com">matt.mccormick@kitware.com</a>&gt;wrote:<br>
<br>
&gt; Hi Arvind,<br>
&gt;<br>
&gt; It looks like the error is happening inside ReadStreamFile, so please<br>
&gt; post how that is declared and defined.<br>
&gt;<br>
&gt; Thanks,<br>
&gt; Matt<br>
&gt;<br>
&gt; On Wed, Apr 4, 2012 at 8:57 PM, Arvind Rao &lt;<a href="mailto:arvind.sbia@gmail.com">arvind.sbia@gmail.com</a>&gt; wrote:<br>
&gt; &gt; Hi all,<br>
&gt; &gt;<br>
&gt; &gt; In order to read-in a variable number of points from a file I want to<br>
&gt; use a<br>
&gt; &gt; dynamically sized container like STD::VECTOR. The points are stored like<br>
&gt; so:<br>
&gt; &gt; ( points is the vector I use )<br>
&gt; &gt;<br>
&gt; &gt;       typedef itk::Image&lt; itk::Vector&lt;ComponentType, Dimension&gt;,<br>
&gt; Dimension&gt;<br>
&gt; &gt;                                 PeakImageType;<br>
&gt; &gt;       typedef PeakImageType::PixelType<br>
&gt; &gt;                                                        DirectionType;<br>
&gt; &gt;       std::vector&lt;DirectionType&gt;<br>
&gt; &gt;                                                                points<br>
&gt; &gt;<br>
&gt; &gt; However, the following try-catch statement gives, at run-time, &quot;bad_alloc<br>
&gt; &gt; caught: St9bad_alloc&quot;<br>
&gt; &gt;<br>
&gt; &gt;       try<br>
&gt; &gt;       {<br>
&gt; &gt;                 std::vector&lt;DirectionType&gt; points;<br>
&gt; &gt;                 ReadStreamFile&lt;DirectionType&gt;( streamArg.getValue(),<br>
&gt; points<br>
&gt; &gt; );<br>
&gt; &gt;       }<br>
&gt; &gt;      catch (std::bad_alloc&amp; ba)<br>
&gt; &gt;       {<br>
&gt; &gt;                 std::cerr &lt;&lt; &quot;bad_alloc caught: &quot; &lt;&lt; ba.what() &lt;&lt;<br>
&gt; std::endl;<br>
&gt; &gt;                 return 0;<br>
&gt; &gt;       }<br>
&gt; &gt;<br>
&gt; &gt; So, what is going on? Its seems like POINTS is not being allocated<br>
&gt; properly,<br>
&gt; &gt; but I&#39;m sure how to fix this.<br>
&gt; &gt;<br>
&gt; &gt; Thanks for any help you can provide.<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; --<br>
&gt; &gt; Arvind S. Rao, PhD<br>
&gt; &gt; Section of Biomedical Image Analysis<br>
&gt; &gt; Department of Radiology<br>
&gt; &gt; University of Pennsylvania<br>
&gt; &gt; 3600 Market Street, Suite 380<br>
&gt; &gt; Philadelphia, PA 19104<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; _____________________________________<br>
&gt; &gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt; &gt;<br>
&gt; &gt; Visit other Kitware open-source projects at<br>
&gt; &gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt; &gt;<br>
&gt; &gt; Kitware offers ITK Training Courses, for more information visit:<br>
&gt; &gt; <a href="http://www.kitware.com/products/protraining.php" target="_blank">http://www.kitware.com/products/protraining.php</a><br>
&gt; &gt;<br>
&gt; &gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt; &gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt; &gt;<br>
&gt; &gt; Follow this link to subscribe/unsubscribe:<br>
&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;<br>
&gt;<br>
<br>
<br>
<br>
--<br>
*Arvind S. Rao, PhD*<br>
Section of Biomedical Image Analysis<br>
Department of Radiology<br>
University of Pennsylvania<br>
3600 Market Street, Suite 380<br>
Philadelphia, PA 19104<br>
tel: <a href="tel:%28267%29%20283-8959" value="+12672838959">(267) 283-8959</a><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.itk.org/pipermail/insight-users/attachments/20120405/b968c8c5/attachment-0001.htm" target="_blank">http://www.itk.org/pipermail/insight-users/attachments/20120405/b968c8c5/attachment-0001.htm</a>&gt;<br>

<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Thu, 5 Apr 2012 10:22:18 +0530<br>
From: Nirav Karani &lt;<a href="mailto:niravkarani001@gmail.com">niravkarani001@gmail.com</a>&gt;<br>
Subject: [Insight-users] Point Set Rigid Registration<br>
To: <a href="mailto:insight-users@itk.org">insight-users@itk.org</a><br>
Message-ID:<br>
        &lt;<a href="mailto:CAJbYoqY4LHWT3ADyncXBGkUF4kT10bNzDZOvUwzjrJFjoefAhA@mail.gmail.com">CAJbYoqY4LHWT3ADyncXBGkUF4kT10bNzDZOvUwzjrJFjoefAhA@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Hello!<br>
<br>
I want to register 2 point sets with different number of points. I am using<br>
the example code &#39;IterativeClosestPoint2.cxx&#39; but it not giving<br>
satisfactory results. Does this code work for point sets without one-to-one<br>
correlation? The code uses Euler3DTransform, EuclideanDistancePointMetric<br>
and LevenbergMarquardtOptimizer. I&#39;m certain that only rigid registration<br>
is required at this stage. What other transforms, metrics and optimizers<br>
can work in such a scenario? I have initialized the transform to expected<br>
translation and rotation values using the SetRotation and SetTranslation<br>
methods. But the results of the registration are way off the mark. Any<br>
suggestions will be greatly appreciated :)<br>
<br>
Thanks,<br>
Nirav.<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.itk.org/pipermail/insight-users/attachments/20120405/a2fdc8bb/attachment-0001.htm" target="_blank">http://www.itk.org/pipermail/insight-users/attachments/20120405/a2fdc8bb/attachment-0001.htm</a>&gt;<br>

<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Thu, 5 Apr 2012 00:59:23 -0400<br>
From: Matt McCormick &lt;<a href="mailto:matt.mccormick@kitware.com">matt.mccormick@kitware.com</a>&gt;<br>
Subject: Re: [Insight-users] use of std::vector with ITK typedefs<br>
To: Arvind Rao &lt;<a href="mailto:arvind.sbia@gmail.com">arvind.sbia@gmail.com</a>&gt;<br>
Cc: <a href="mailto:insight-users@itk.org">insight-users@itk.org</a><br>
Message-ID:<br>
        &lt;CALzTN-SsUuCmEF=1RWF=<a href="mailto:xHQT9AZzGMm83oLPahzCzKVVGjy%2BmQ@mail.gmail.com">xHQT9AZzGMm83oLPahzCzKVVGjy+mQ@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1<br>
<br>
Hi Arvind,<br>
<br>
That cannot be all of the function because &quot;points&quot; is not used inside.<br>
<br>
Matt<br>
<br>
On Thu, Apr 5, 2012 at 12:34 AM, Arvind Rao &lt;<a href="mailto:arvind.sbia@gmail.com">arvind.sbia@gmail.com</a>&gt; wrote:<br>
&gt; Hi Matt,<br>
&gt;<br>
&gt; Thanks for replying. ReadStreamFile(...) is defined below. The?&quot;bad_alloc&gt;<br>
&gt; caught: St9bad_alloc&quot; error seems to originate from this function.?For<br>
&gt; clarity, TPixelType =?itk::Vector&lt;float, 3&gt;<br>
&gt;<br>
&gt; template&lt; typename TPixelType&gt;<br>
&gt; void ReadStreamFile( std::string filename, std::vector&lt;TPixelType&gt; &amp;points )<br>
&gt; {<br>
&gt; ? ?TPixelType dir;<br>
&gt; ? ?int num;<br>
&gt; ? ?std::vector&lt;float&gt; vec;<br>
&gt; ? ?std::ifstream indata( filename.c_str() ); // opens the file<br>
&gt;<br>
&gt; ? ?indata &gt;&gt; num;<br>
&gt; ? ?while ( !indata.eof() ) ?{ // keep reading until end-of-file<br>
&gt; ? ? ? vec.push_back( num );<br>
&gt; ? ? ? indata &gt;&gt; num;}<br>
&gt; ? ?indata.close();<br>
&gt; }<br>
&gt;<br>
&gt; Best,<br>
&gt; Arvind<br>
&gt;<br>
&gt; On Wed, Apr 4, 2012 at 10:53 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 Arvind,<br>
&gt;&gt;<br>
&gt;&gt; It looks like the error is happening inside ReadStreamFile, so please<br>
&gt;&gt; post how that is declared and defined.<br>
&gt;&gt;<br>
&gt;&gt; Thanks,<br>
&gt;&gt; Matt<br>
&gt;&gt;<br>
&gt;&gt; On Wed, Apr 4, 2012 at 8:57 PM, Arvind Rao &lt;<a href="mailto:arvind.sbia@gmail.com">arvind.sbia@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt; Hi all,<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; In order to read-in a variable number of points from a file I want to<br>
&gt;&gt; &gt; use a<br>
&gt;&gt; &gt; dynamically sized container like STD::VECTOR. The points are stored like<br>
&gt;&gt; &gt; so:<br>
&gt;&gt; &gt; ( points is the vector I use )<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; ? ? ? typedef itk::Image&lt; itk::Vector&lt;ComponentType, Dimension&gt;,<br>
&gt;&gt; &gt; Dimension&gt;<br>
&gt;&gt; &gt; ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? PeakImageType;<br>
&gt;&gt; &gt; ? ? ? typedef PeakImageType::PixelType<br>
&gt;&gt; &gt; ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?DirectionType;<br>
&gt;&gt; &gt; ? ? ? std::vector&lt;DirectionType&gt;<br>
&gt;&gt; &gt; ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?points<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; However, the following try-catch statement gives, at<br>
&gt;&gt; &gt; run-time,?&quot;bad_alloc<br>
&gt;&gt; &gt; caught: St9bad_alloc&quot;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; ? ? ??try<br>
&gt;&gt; &gt; ? ? ? {<br>
&gt;&gt; &gt; ? ? ? ? ? ? ? ? std::vector&lt;DirectionType&gt; points;<br>
&gt;&gt; &gt; ? ? ? ? ? ? ? ? ReadStreamFile&lt;DirectionType&gt;( streamArg.getValue(),<br>
&gt;&gt; &gt; points<br>
&gt;&gt; &gt; );<br>
&gt;&gt; &gt; ? ? ? }<br>
&gt;&gt; &gt; ? ? ?catch (std::bad_alloc&amp; ba)<br>
&gt;&gt; &gt; ? ? ? {<br>
&gt;&gt; &gt; ? ? ? ? ? ? ? ? std::cerr &lt;&lt; &quot;bad_alloc caught: &quot; &lt;&lt; ba.what() &lt;&lt;<br>
&gt;&gt; &gt; std::endl;<br>
&gt;&gt; &gt; ? ? ? ? ? ? ? ? return 0;<br>
&gt;&gt; &gt; ? ? ? }<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; So, what is going on? Its seems like POINTS is not being allocated<br>
&gt;&gt; &gt; properly,<br>
&gt;&gt; &gt; but I&#39;m sure how to fix this.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Thanks for any help you can provide.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; --<br>
&gt;&gt; &gt; Arvind S. Rao, PhD<br>
&gt;&gt; &gt; Section of Biomedical Image Analysis<br>
&gt;&gt; &gt; Department of Radiology<br>
&gt;&gt; &gt; University of Pennsylvania<br>
&gt;&gt; &gt; 3600 Market Street, Suite 380<br>
&gt;&gt; &gt; Philadelphia, PA 19104<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;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Arvind S. Rao, PhD<br>
&gt; Section of Biomedical Image Analysis<br>
&gt; Department of Radiology<br>
&gt; University of Pennsylvania<br>
&gt; 3600 Market Street, Suite 380<br>
&gt; Philadelphia, PA 19104<br>
&gt; tel: <a href="tel:%28267%29%20283-8959" value="+12672838959">(267) 283-8959</a><br>
&gt;<br>
<br>
<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Thu, 5 Apr 2012 06:54:08 -0400<br>
From: &quot;Rick Frank&quot; &lt;<a href="mailto:rickf@fullspectrumsw.com">rickf@fullspectrumsw.com</a>&gt;<br>
Subject: [Insight-users] Error<br>
        itk::Math::Detail::RoundHalfIntegerToEven_64(double)<br>
To: &lt;<a href="mailto:insight-users@itk.org">insight-users@itk.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:558C1453-6F8E-4CE1-A9BF-4D319F491DF0@fullspectrumsw.com">558C1453-6F8E-4CE1-A9BF-4D319F491DF0@fullspectrumsw.com</a>&gt;<br>
Content-Type: text/plain;       charset=&quot;us-ascii&quot;<br>
<br>
I&#39;m seeing something like this using visual studio 10 on windows 7 also<br>
<br>
<br>
I will post details<br>
<br>
Rick Frank<br>
<br>
On Apr 4, 2012, at 11:08 PM, &quot;<a href="mailto:insight-users-request@itk.org">insight-users-request@itk.org</a>&quot; &lt;<a href="mailto:insight-users-request@itk.org">insight-users-request@itk.org</a>&gt; wrote:<br>

<br>
&gt; [Insight-users] Error<br>
&gt;    itk::Math::Detail::RoundHalfIntegerToEven_64(double)<br>
<br>
<br>
------------------------------<br>
<br>
Message: 5<br>
Date: Thu, 05 Apr 2012 14:23:28 +0200<br>
From: Martin Dulovits &lt;<a href="mailto:martin.dulovits@woogieworks.at">martin.dulovits@woogieworks.at</a>&gt;<br>
Subject: [Insight-users] itk 4.1 VS2008 python 2.6 x64<br>
To: <a href="mailto:insight-users@itk.org">insight-users@itk.org</a><br>
Message-ID: &lt;<a href="mailto:4F7D8EC0.2090604@woogieworks.at">4F7D8EC0.2090604@woogieworks.at</a>&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed<br>
<br>
I am trying to build itk 4.1 VS2008 python 2.6 x64 windows with python<br>
bindings for the last few day but failed completely.<br>
So my question would be is it possible at all ? Has anybody succeeded to<br>
build with this configuration ? Especially the python bindings ?<br>
Sometimes the dll built, but the wrappers always failed.<br>
Should I choose an older version to work with Studio 2008 ?<br>
<br>
thx for any help<br>
<br>
martin<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 6<br>
Date: Thu, 5 Apr 2012 08:44:06 -0400<br>
From: Bradley Lowekamp &lt;<a href="mailto:blowekamp@mail.nih.gov">blowekamp@mail.nih.gov</a>&gt;<br>
Subject: Re: [Insight-users] Error<br>
        itk::Math::Detail::RoundHalfIntegerToEven_64(double)<br>
To: Rick Frank &lt;<a href="mailto:rickf@fullspectrumsw.com">rickf@fullspectrumsw.com</a>&gt;<br>
Cc: &quot;<a href="mailto:insight-users@itk.org">insight-users@itk.org</a>&quot; &lt;<a href="mailto:insight-users@itk.org">insight-users@itk.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:20293F0D-2349-4C7E-B644-D33608F0DD44@mail.nih.gov">20293F0D-2349-4C7E-B644-D33608F0DD44@mail.nih.gov</a>&gt;<br>
Content-Type: text/plain; charset=&quot;us-ascii&quot;<br>
<br>
Recently, this error popped up on the SimpleITK dashboard with visual studio with ITKv4. Apparently, a 32-bit build of SimpleITK was finding a 64-bit build of ITK. I am not sure of all the details, but matching the correct ITK build solved this problem. It may be related to yours.<br>

<br>
Brad<br>
<br>
<br>
On Apr 5, 2012, at 6:54 AM, Rick Frank wrote:<br>
<br>
&gt; I&#39;m seeing something like this using visual studio 10 on windows 7 also<br>
&gt;<br>
&gt;<br>
&gt; I will post details<br>
&gt;<br>
&gt; Rick Frank<br>
&gt;<br>
&gt; On Apr 4, 2012, at 11:08 PM, &quot;<a href="mailto:insight-users-request@itk.org">insight-users-request@itk.org</a>&quot; &lt;<a href="mailto:insight-users-request@itk.org">insight-users-request@itk.org</a>&gt; wrote:<br>

&gt;<br>
&gt;&gt; [Insight-users] Error<br>
&gt;&gt;   itk::Math::Detail::RoundHalfIntegerToEven_64(double)<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; Kitware offers ITK Training Courses, for more information visit:<br>
&gt; <a href="http://www.kitware.com/products/protraining.php" target="_blank">http://www.kitware.com/products/protraining.php</a><br>
&gt;<br>
&gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt; <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>
Bradley Lowekamp<br>
Medical Science and Computing for<br>
Office of High Performance Computing and Communications<br>
National Library of Medicine<br>
<a href="mailto:blowekamp@mail.nih.gov">blowekamp@mail.nih.gov</a><br>
<br>
<br>
<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.itk.org/pipermail/insight-users/attachments/20120405/e7dda5ea/attachment-0001.htm" target="_blank">http://www.itk.org/pipermail/insight-users/attachments/20120405/e7dda5ea/attachment-0001.htm</a>&gt;<br>

<br>
------------------------------<br>
<br>
Message: 7<br>
Date: Thu, 5 Apr 2012 09:53:48 -0400<br>
From: Arvind Rao &lt;<a href="mailto:arvind.sbia@gmail.com">arvind.sbia@gmail.com</a>&gt;<br>
Subject: Re: [Insight-users] use of std::vector with ITK typedefs<br>
To: Matt McCormick &lt;<a href="mailto:matt.mccormick@kitware.com">matt.mccormick@kitware.com</a>&gt;<br>
Cc: <a href="mailto:insight-users@itk.org">insight-users@itk.org</a><br>
Message-ID:<br>
        &lt;<a href="mailto:CAEsz-mb17EpN2kcnLSQSFUZ0cjpt41G7S2yZnMffdnE8Vf-Dzg@mail.gmail.com">CAEsz-mb17EpN2kcnLSQSFUZ0cjpt41G7S2yZnMffdnE8Vf-Dzg@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Hi Matt,<br>
<br>
My apologizes. For brevity and debugging I removed the portion of code<br>
which fills points. The full code for *ReadStreamFle* is below.<br>
<br>
template&lt; typename TPixelType&gt;<br>
void ReadStreamFile( std::string filename, std::vector&lt;TPixelType&gt; &amp;points )<br>
{<br>
   TPixelType dir;<br>
   int num;<br>
   std::vector&lt;float&gt; vec;<br>
<br>
   std::ifstream indata( filename.c_str() ); // opens the file<br>
   if(!indata) { // file couldn&#39;t be opened<br>
      cerr &lt;&lt; &quot;Error: file could not be opened&quot; &lt;&lt; endl;<br>
      exit(1);<br>
   }<br>
<br>
   indata &gt;&gt; num;<br>
   while ( !indata.eof() )<br>
   { // keep reading until end-of-file<br>
      vec.push_back( num );<br>
      indata &gt;&gt; num;<br>
   }<br>
   indata.close();<br>
   std::cout &lt;&lt; vec.size() &lt;&lt; &quot;\n&quot;;<br>
<br>
   for(int j=0; j &lt; int(vec.size()); j=+3)<br>
   {<br>
      dir[0] = vec[j];<br>
      dir[1] = vec[j+1];<br>
      dir[2] = vec[j+2];<br>
      points.push_back( dir );<br>
   }<br>
}<br>
<br>
Best,<br>
Arvind<br>
<br>
On Thu, Apr 5, 2012 at 12:59 AM, Matt McCormick<br>
&lt;<a href="mailto:matt.mccormick@kitware.com">matt.mccormick@kitware.com</a>&gt;wrote:<br>
<br>
&gt; Hi Arvind,<br>
&gt;<br>
&gt; That cannot be all of the function because &quot;points&quot; is not used inside.<br>
&gt;<br>
&gt; Matt<br>
&gt;<br>
&gt; On Thu, Apr 5, 2012 at 12:34 AM, Arvind Rao &lt;<a href="mailto:arvind.sbia@gmail.com">arvind.sbia@gmail.com</a>&gt; wrote:<br>
&gt; &gt; Hi Matt,<br>
&gt; &gt;<br>
&gt; &gt; Thanks for replying. ReadStreamFile(...) is defined below.<br>
&gt; The &quot;bad_alloc&gt;<br>
&gt; &gt; caught: St9bad_alloc&quot; error seems to originate from this function. For<br>
&gt; &gt; clarity, TPixelType = itk::Vector&lt;float, 3&gt;<br>
&gt; &gt;<br>
&gt; &gt; template&lt; typename TPixelType&gt;<br>
&gt; &gt; void ReadStreamFile( std::string filename, std::vector&lt;TPixelType&gt;<br>
&gt; &amp;points )<br>
&gt; &gt; {<br>
&gt; &gt;    TPixelType dir;<br>
&gt; &gt;    int num;<br>
&gt; &gt;    std::vector&lt;float&gt; vec;<br>
&gt; &gt;    std::ifstream indata( filename.c_str() ); // opens the file<br>
&gt; &gt;<br>
&gt; &gt;    indata &gt;&gt; num;<br>
&gt; &gt;    while ( !indata.eof() )  { // keep reading until end-of-file<br>
&gt; &gt;       vec.push_back( num );<br>
&gt; &gt;       indata &gt;&gt; num;}<br>
&gt; &gt;    indata.close();<br>
&gt; &gt; }<br>
&gt; &gt;<br>
&gt; &gt; Best,<br>
&gt; &gt; Arvind<br>
&gt; &gt;<br>
&gt; &gt; On Wed, Apr 4, 2012 at 10:53 PM, Matt McCormick &lt;<br>
&gt; <a href="mailto:matt.mccormick@kitware.com">matt.mccormick@kitware.com</a>&gt;<br>
&gt; &gt; wrote:<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Hi Arvind,<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; It looks like the error is happening inside ReadStreamFile, so please<br>
&gt; &gt;&gt; post how that is declared and defined.<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Thanks,<br>
&gt; &gt;&gt; Matt<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; On Wed, Apr 4, 2012 at 8:57 PM, Arvind Rao &lt;<a href="mailto:arvind.sbia@gmail.com">arvind.sbia@gmail.com</a>&gt;<br>
&gt; wrote:<br>
&gt; &gt;&gt; &gt; Hi all,<br>
&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt; &gt; In order to read-in a variable number of points from a file I want to<br>
&gt; &gt;&gt; &gt; use a<br>
&gt; &gt;&gt; &gt; dynamically sized container like STD::VECTOR. The points are stored<br>
&gt; like<br>
&gt; &gt;&gt; &gt; so:<br>
&gt; &gt;&gt; &gt; ( points is the vector I use )<br>
&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt; &gt;       typedef itk::Image&lt; itk::Vector&lt;ComponentType, Dimension&gt;,<br>
&gt; &gt;&gt; &gt; Dimension&gt;<br>
&gt; &gt;&gt; &gt;                                 PeakImageType;<br>
&gt; &gt;&gt; &gt;       typedef PeakImageType::PixelType<br>
&gt; &gt;&gt; &gt;                                                        DirectionType;<br>
&gt; &gt;&gt; &gt;       std::vector&lt;DirectionType&gt;<br>
&gt; &gt;&gt; &gt;                                                                points<br>
&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt; &gt; However, the following try-catch statement gives, at<br>
&gt; &gt;&gt; &gt; run-time, &quot;bad_alloc<br>
&gt; &gt;&gt; &gt; caught: St9bad_alloc&quot;<br>
&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt; &gt;       try<br>
&gt; &gt;&gt; &gt;       {<br>
&gt; &gt;&gt; &gt;                 std::vector&lt;DirectionType&gt; points;<br>
&gt; &gt;&gt; &gt;                 ReadStreamFile&lt;DirectionType&gt;( streamArg.getValue(),<br>
&gt; &gt;&gt; &gt; points<br>
&gt; &gt;&gt; &gt; );<br>
&gt; &gt;&gt; &gt;       }<br>
&gt; &gt;&gt; &gt;      catch (std::bad_alloc&amp; ba)<br>
&gt; &gt;&gt; &gt;       {<br>
&gt; &gt;&gt; &gt;                 std::cerr &lt;&lt; &quot;bad_alloc caught: &quot; &lt;&lt; ba.what() &lt;&lt;<br>
&gt; &gt;&gt; &gt; std::endl;<br>
&gt; &gt;&gt; &gt;                 return 0;<br>
&gt; &gt;&gt; &gt;       }<br>
&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt; &gt; So, what is going on? Its seems like POINTS is not being allocated<br>
&gt; &gt;&gt; &gt; properly,<br>
&gt; &gt;&gt; &gt; but I&#39;m sure how to fix this.<br>
&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt; &gt; Thanks for any help you can provide.<br>
&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt; &gt; --<br>
&gt; &gt;&gt; &gt; Arvind S. Rao, PhD<br>
&gt; &gt;&gt; &gt; Section of Biomedical Image Analysis<br>
&gt; &gt;&gt; &gt; Department of Radiology<br>
&gt; &gt;&gt; &gt; University of Pennsylvania<br>
&gt; &gt;&gt; &gt; 3600 Market Street, Suite 380<br>
&gt; &gt;&gt; &gt; Philadelphia, PA 19104<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; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt; &gt; Visit other Kitware open-source projects at<br>
&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;<br>
&gt; &gt;&gt; &gt; Kitware offers ITK Training Courses, for more information visit:<br>
&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;<br>
&gt; &gt;&gt; &gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&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;<br>
&gt; &gt;&gt; &gt; Follow this link to subscribe/unsubscribe:<br>
&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;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; --<br>
&gt; &gt; Arvind S. Rao, PhD<br>
&gt; &gt; Section of Biomedical Image Analysis<br>
&gt; &gt; Department of Radiology<br>
&gt; &gt; University of Pennsylvania<br>
&gt; &gt; 3600 Market Street, Suite 380<br>
&gt; &gt; Philadelphia, PA 19104<br>
&gt; &gt; tel: <a href="tel:%28267%29%20283-8959" value="+12672838959">(267) 283-8959</a><br>
&gt; &gt;<br>
&gt;<br>
<br>
<br>
<br>
--<br>
*Arvind S. Rao, PhD*<br>
Section of Biomedical Image Analysis<br>
Department of Radiology<br>
University of Pennsylvania<br>
3600 Market Street, Suite 380<br>
Philadelphia, PA 19104<br>
tel: <a href="tel:%28267%29%20283-8959" value="+12672838959">(267) 283-8959</a><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.itk.org/pipermail/insight-users/attachments/20120405/50863eb7/attachment-0001.htm" target="_blank">http://www.itk.org/pipermail/insight-users/attachments/20120405/50863eb7/attachment-0001.htm</a>&gt;<br>

<br>
------------------------------<br>
<br>
Message: 8<br>
Date: Thu, 5 Apr 2012 15:54:44 +0200<br>
From: Andrzej Giniewicz &lt;<a href="mailto:gginiu@gmail.com">gginiu@gmail.com</a>&gt;<br>
Subject: [Insight-users] build error with gcc 4.7 (&#39;__int128&#39; was not<br>
        declared in this scope)<br>
To: <a href="mailto:insight-users@itk.org">insight-users@itk.org</a><br>
Message-ID:<br>
        &lt;CALMDwnDEagD4ysY_z9-KW=<a href="mailto:7o54hoa5GOw1YeVKcHJa00myGisw@mail.gmail.com">7o54hoa5GOw1YeVKcHJa00myGisw@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1<br>
<br>
Hi there,<br>
<br>
I&#39;m trying to build itk 4.1.0 using following configuration:<br>
<br>
  cmake \<br>
    -DCMAKE_BUILD_TYPE:STRING=Release \<br>
    -DBUILD_TESTING:BOOL=OFF \<br>
    -DBUILD_EXAMPLES:BOOL=OFF \<br>
    -DBUILD_SHARED_LIBS:BOOL=ON \<br>
    -DCMAKE_INSTALL_PREFIX:FILEPATH=/usr \<br>
    -DITK_USE_REVIEW:BOOL=ON \<br>
    -DITK_USE_SYSTEM_SWIG:BOOL=ON \<br>
    -DITK_WRAPPING:BOOL=ON \<br>
    -DITK_WRAP_PYTHON:BOOL=ON \<br>
    -DPYTHON_EXECUTABLE:PATH=/usr/bin/python2 \<br>
    -DPYTHON_INCLUDE_DIR:PATH=/usr/include/python2.7 \<br>
    -DPYTHON_LIBRARY:PATH=/usr/lib/<a href="http://libpython2.7.so" target="_blank">libpython2.7.so</a> \<br>
    ../InsightToolkit-4.1.0<br>
<br>
After make and some long time, it fails. I&#39;m not 100% sure, but I<br>
believe it started happening after update to GCC 4.7, as it worked<br>
before. It fails on vcl_complex.xml, by looking into<br>
Wrapping/Modules/ITKCommon/CMakeFiles/ITKCommonGccXML.dir/build.make I<br>
was able to track the failure to following line (tried with both<br>
bundled gccxml and cvs version):<br>
<br>
gccxml -fxml-start=_cable_<br>
-fxml=/home/giniu/arch2/insight-toolkit/src/build/Wrapping/Modules/ITKCommon/vcl_complex.xml<br>
--gccxml-gcc-options<br>
/home/giniu/arch2/insight-toolkit/src/build/Wrapping/Modules/ITKCommon/gcc_xml.inc<br>
-DCSWIG -DCABLE_CONFIGURATION -DITK_MANUAL_INSTANTIATION<br>
/home/giniu/arch2/insight-toolkit/src/build/Wrapping/Modules/ITKCommon/vcl_complex.cxx<br>
In file included from<br>
/home/giniu/arch2/insight-toolkit/src/InsightToolkit-4.1.0/Modules/ThirdParty/VNL/src/vxl/vcl/iso/vcl_limits.h:6,<br>
                 from<br>
/home/giniu/arch2/insight-toolkit/src/InsightToolkit-4.1.0/Modules/ThirdParty/VNL/src/vxl/vcl/vcl_limits.h:12,<br>
                 from<br>
/home/giniu/arch2/insight-toolkit/src/InsightToolkit-4.1.0/Modules/Core/Common/include/itkNumericTraits.h:45,<br>
                 from<br>
/home/giniu/arch2/insight-toolkit/src/InsightToolkit-4.1.0/Modules/Core/Common/include/itkNumericTraitsFixedArrayPixel.h:21,<br>
                 from<br>
/home/giniu/arch2/insight-toolkit/src/InsightToolkit-4.1.0/Modules/Core/Common/include/itkFixedArray.h:286,<br>
                 from<br>
/home/giniu/arch2/insight-toolkit/src/InsightToolkit-4.1.0/Modules/Core/Common/include/itkIndex.h:22,<br>
                 from<br>
/home/giniu/arch2/insight-toolkit/src/InsightToolkit-4.1.0/Modules/Filtering/LabelMap/include/itkLabelObjectLine.h:21,<br>
                 from<br>
/home/giniu/arch2/insight-toolkit/src/InsightToolkit-4.1.0/Modules/Filtering/LabelMap/include/itkLabelObject.h:23,<br>
                 from<br>
/home/giniu/arch2/insight-toolkit/src/InsightToolkit-4.1.0/Modules/Filtering/LabelMap/include/itkShapeLabelObject.h:21,<br>
                 from<br>
/home/giniu/arch2/insight-toolkit/src/InsightToolkit-4.1.0/Modules/Filtering/LabelMap/include/itkStatisticsLabelObject.h:21,<br>
                 from<br>
/home/giniu/arch2/insight-toolkit/src/build/Wrapping/Modules/ITKCommon/vcl_complex.cxx:2:<br>
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.7.0/../../../../include/c++/4.7.0/limits:1405:<br>
error: &#39;__int128&#39; was not declared in this scope<br>
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.7.0/../../../../include/c++/4.7.0/limits:1405:<br>
error: template argument 1 is invalid<br>
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.7.0/../../../../include/c++/4.7.0/limits:1479:<br>
error: template argument 1 is invalid<br>
<br>
As this is kind of generated stuff, I&#39;m not sure how to further track<br>
this issue - I&#39;d be happy to provide any files/logs/info that might<br>
help tracking it.<br>
<br>
Cheers,<br>
Andrzej.<br>
<br>
<br>
------------------------------<br>
<br>
Message: 9<br>
Date: Thu, 05 Apr 2012 16:04:07 +0200<br>
From: Martin Dulovits &lt;<a href="mailto:martin.dulovits@woogieworks.at">martin.dulovits@woogieworks.at</a>&gt;<br>
Subject: [Insight-users] Visual Studio 10 hanging because of size of,<br>
        the     project<br>
To: <a href="mailto:insight-users@itk.org">insight-users@itk.org</a><br>
Message-ID: &lt;<a href="mailto:4F7DA657.9000307@woogieworks.at">4F7DA657.9000307@woogieworks.at</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;; Format=&quot;flowed&quot;<br>
<br>
On 4/5/2012 5:08 AM, <a href="mailto:insight-users-request@itk.org">insight-users-request@itk.org</a> wrote:<br>
&gt; [Insight-users] Visual Studio 10 hanging because of size of<br>
&gt;       the     project<br>
&gt; <a href="mailto:To%3Ainsight-users@itk.org">To:insight-users@itk.org</a>, ITK&lt;<a href="mailto:insight-developers@itk.org">insight-developers@itk.org</a>&gt;<br>
&gt; Message-ID:<br>
&gt;       &lt;CALzTN-Rtu=<a href="mailto:cZsS16WMEch%2BHfpd6g8A0hFgKgfTEcJy2JNEaiPw@mail.gmail.com">cZsS16WMEch+Hfpd6g8A0hFgKgfTEcJy2JNEaiPw@mail.gmail.com</a>&gt;<br>
&gt; Content-Type: text/plain; charset=ISO-8859-1<br>
&gt;<br>
&gt; Hi,<br>
&gt;<br>
&gt; If you had trouble building ITKv4 on Visual Studio 10 with<br>
&gt; BUILD_EXAMPLES ON and BUILD_TESTING ON, please try this patch and let<br>
&gt; us know your experiences:<br>
&gt;<br>
&gt;    <a href="http://review.source.kitware.com/#/c/4912/1" target="_blank">http://review.source.kitware.com/#/c/4912/1</a><br>
&gt;<br>
&gt; If you are not familiar with Git, the steps would be to first install MSysGit:<br>
&gt;<br>
&gt;    <a href="http://code.google.com/p/msysgit/downloads/list" target="_blank">http://code.google.com/p/msysgit/downloads/list</a><br>
&gt;<br>
&gt; Then, from the MSys Git Bash terminal:<br>
&gt;<br>
&gt;    git clonehttp://<a href="http://itk.org/ITK.git" target="_blank">itk.org/ITK.git</a><br>
&gt;    cd ITK<br>
&gt;    git fetchhttp://<a href="http://review.source.kitware.com/p/ITK" target="_blank">review.source.kitware.com/p/ITK</a><br>
&gt; refs/changes/12/4912/2&amp;&amp;  git checkout FETCH_HEAD -b<br>
&gt; vsHeaderTestRelease<br>
&gt;<br>
&gt; Then configure with CMake, build, ...<br>
&gt;<br>
&gt; Thanks,<br>
&gt; Matt<br>
Just tried to build but failed with following error<br>
T:/svnitk/binBuild/Wrapping/Generators/GccXML/gccxml/share/gccxml-0.9/Vc10/Include/vector:82:<br>
error: &#39;__noop&#39; was not declared in this scope<br>
C:\Program Files<br>
(x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(151,5):<br>
error MSB6006: &quot;cmd.exe&quot; exited with code 1.<br>
<br>
tried to build MinSizeRel x64 on VS2010sp1 prof.<br>
<br>
martin<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.itk.org/pipermail/insight-users/attachments/20120405/7b10693f/attachment-0001.htm" target="_blank">http://www.itk.org/pipermail/insight-users/attachments/20120405/7b10693f/attachment-0001.htm</a>&gt;<br>

<br>
------------------------------<br>
<br>
_______________________________________________<br>
Insight-users mailing list<br>
<a href="mailto:Insight-users@itk.org">Insight-users@itk.org</a><br>
<a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
<br>
<br>
End of Insight-users Digest, Vol 96, Issue 12<br>
*********************************************<br>
</blockquote></div><br></div>