<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman,new york,times,serif;font-size:12pt"><div>Hello all,<br><br>&nbsp; I'm trying to crop and then flip an image about the Y-axis.&nbsp; I use the RegionOfInterestFilter and the FlipImageFilter.<br>I'm having trouble understanding the process.&nbsp;&nbsp; I have found one previous posts but the explanation is not clear.<br><br>1. Do itk filters work with a copy of the image or the image itself ?&nbsp; <br>&nbsp;&nbsp;&nbsp; I thought they worked with a copy of the image, since filter-&gt;ReleaseDataFlagOn()&nbsp; would release the original image space.&nbsp; Filter-&gt;GetOutput() then will return the copy.<br><br>2. for a 500 * 1000 image, after Cropping to 500 * 600 (i.e crop along Y-axis from 200 - 800) and Flip, the GetOrigin() returns (0, -800).&nbsp; Sure I can map the indices. But why do I have to ?<br>if new_image =
 filp-&gt;GetOutput(), and size of new_image is 500 * 600.&nbsp; Then why is this mapping necessary ?&nbsp;&nbsp; How can I avoid&nbsp; it ?<br><br>3. should the flip-&gt;ReleaseDataFlagOn(); be used or not ?&nbsp; What will it do ? Irrespective of whether I leave it on of off, I seem to be losing the reference to original image.<br><br>&nbsp;Any suggestions are welcome. I have attached the appropriate code segment. <br><br><br>Thank you,<br>Emma<br><br>&nbsp;&nbsp;&nbsp; ImageType::SizeType roi_size = image-&gt;GetLargestPossibleRegion().GetSize();<br>&nbsp;&nbsp;&nbsp; itk::Point&lt;float, 2&gt; roi_origin = image-&gt;GetOrigin();<br>&nbsp;&nbsp;&nbsp; ImageType::IndexType roi_index;<br>&nbsp;&nbsp;&nbsp; roi_index[0] = roi_origin[0];<br>&nbsp;&nbsp;&nbsp; roi_index[1] = roi_origin[1] + 200;<br>&nbsp;&nbsp;&nbsp; roi_size[1]&nbsp;&nbsp;&nbsp; = 600;<br>&nbsp;&nbsp;&nbsp; ImageType::RegionType roi_region;<br>&nbsp;&nbsp;&nbsp;
 roi_region.SetIndex(roi_index);<br>&nbsp;&nbsp;&nbsp; roi_region.SetSize(roi_size);<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; typedef itk::RegionOfInterestImageFilter&lt;ImageType, ImageType&gt; ROIType;<br>&nbsp;&nbsp;&nbsp; ROIType::Pointer p_roi_filter = ROIType::New();<br>&nbsp;&nbsp;&nbsp; p_roi_filter-&gt;SetRegionOfInterest(roi_region);<br>&nbsp;&nbsp;&nbsp; p_roi_filter-&gt;SetInput(image);<br>&nbsp;&nbsp;&nbsp; p_roi_filter-&gt;Update();<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; flip-&gt;SetInput(p_roi_filter-&gt;GetOutput());<br>&nbsp;&nbsp;&nbsp; //flip-&gt;ReleaseDataFlagOn();<br>&nbsp;&nbsp;&nbsp; flipAxesSet=flip-&gt;GetFlipAxes();<br>&nbsp;&nbsp;&nbsp; flipAxesSet[1]=true;<br>&nbsp;&nbsp;&nbsp; flip-&gt;SetFlipAxes(flipAxesSet);<br>&nbsp;&nbsp;&nbsp; flip-&gt;Update();<br><br>&nbsp;&nbsp;&nbsp; ImageType::Pointer new_image = flip-&gt;GetOutput();<br><br><br></div><div style="font-family: times new roman,new york,times,serif;
 font-size: 12pt;"><br><div style="font-family: arial,helvetica,sans-serif; font-size: 13px;"><font face="Tahoma" size="2"><hr size="1"><b><span style="font-weight: bold;">From:</span></b> "insight-users-request@itk.org" &lt;insight-users-request@itk.org&gt;<br><b><span style="font-weight: bold;">To:</span></b> insight-users@itk.org<br><b><span style="font-weight: bold;">Sent:</span></b> Wed, November 24, 2010 9:00:17 AM<br><b><span style="font-weight: bold;">Subject:</span></b> Insight-users Digest, Vol 79, Issue 28<br></font><br>Send Insight-users mailing list submissions to<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a><br><br>To subscribe or unsubscribe via the World Wide Web, visit<br>&nbsp;&nbsp;&nbsp; <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 'help' to<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:insight-users-request@itk.org" 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>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:insight-users-owner@itk.org" 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 "Re: Contents of Insight-users digest..."<br><br><br>Today's Topics:<br><br>&nbsp;  1. Re: [vtkusers] Interactive seed point selection based on QVTK<br>&nbsp; &nbsp; &nbsp; Widget (urgent request for help!) (Prathamesh Kulkarni)<br>&nbsp;  2. Re: 2d 3d registration with multiple 2d images (brian avants)<br>&nbsp;  3. reset m_CurrentIteration in itkLBFGSBOptimizer (Mengda Wu)<br>&nbsp;  4. Re: ManagedITK compilation problem [was MIDAS&nbsp;&nbsp;&nbsp; Journal<br>&nbsp; &nbsp; &nbsp; Feedback] (Dan
 Mueller)<br>&nbsp;  5. Re: Constructing a 3D volume from 2D cross section (D?enan Zuki?)<br>&nbsp;  6. Re: [vtkusers] Interactive seed point selection&nbsp;&nbsp;&nbsp; based on QVTK<br>&nbsp; &nbsp; &nbsp; Widget (urgent request for help!) (Xiaopeng Yang)<br>&nbsp;  7. Re: [vtkusers] Interactive seed point selection based on QVTK<br>&nbsp; &nbsp; &nbsp; Widget (urgent request for help!) (David Doria)<br>&nbsp;  8. Re: 2d 3d registration with multiple 2d images (Karthik Krishnan)<br>&nbsp;  9. Simplify a set of points in ITK (Marta Peroni)<br>&nbsp; 10. Manual de Configuraci?n ITK, VTK &amp; Borland C++ Builder (en<br>&nbsp; &nbsp; &nbsp; espa?ol ) (<a ymailto="mailto:olguna@cimat.mx" href="mailto:olguna@cimat.mx">olguna@cimat.mx</a>)<br><br><br>----------------------------------------------------------------------<br><br>Message: 1<br>Date: Tue, 23 Nov 2010 11:16:31 -0600<br>From: Prathamesh Kulkarni &lt;<a
 ymailto="mailto:prathameshmkulkarni@gmail.com" href="mailto:prathameshmkulkarni@gmail.com">prathameshmkulkarni@gmail.com</a>&gt;<br>Subject: Re: [Insight-users] [vtkusers] Interactive seed point<br>&nbsp;&nbsp;&nbsp; selection based on QVTK Widget (urgent request for help!)<br>To: <a ymailto="mailto:yxp233@postech.ac.kr" href="mailto:yxp233@postech.ac.kr">yxp233@postech.ac.kr</a><br>Cc: <a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>, VTK Mailing List &lt;<a ymailto="mailto:vtkusers@vtk.org" href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a>&gt;<br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;<a ymailto="mailto:AANLkTinpCjCxwq7G5Nf3A8t45jYFqJsoXNQstarCxAuw@mail.gmail.com" href="mailto:AANLkTinpCjCxwq7G5Nf3A8t45jYFqJsoXNQstarCxAuw@mail.gmail.com">AANLkTinpCjCxwq7G5Nf3A8t45jYFqJsoXNQstarCxAuw@mail.gmail.com</a>&gt;<br>Content-Type: text/plain; charset="iso-8859-1"<br><br>Hello,<br><br>I think the
 vtkSeedWidget fits well for marking seed points. Have a look at<br><a href="http://www.vtk.org/Wiki/VTK/Examples/Cxx/Widgets/vtkSeedWidget" target="_blank">http://www.vtk.org/Wiki/VTK/Examples/Cxx/Widgets/vtkSeedWidget</a> for example<br>usage.<br><br>I have used this inside the QVTKWidget as well.<br><br>- Prathamesh<br><br>Message: 4<br>Date: Tue, 23 Nov 2010 06:02:54 -0500<br>From: David Doria &lt;<a ymailto="mailto:daviddoria@gmail.com" href="mailto:daviddoria@gmail.com">daviddoria@gmail.com</a>&gt;<br>Subject: Re: [Insight-users] [vtkusers] Interactive seed point<br>&nbsp; &nbsp; &nbsp;  selection based on QVTK Widget (urgent request for help!)<br>To: Xiaopeng Yang &lt;<a ymailto="mailto:yxp233@postech.ac.kr" href="mailto:yxp233@postech.ac.kr">yxp233@postech.ac.kr</a>&gt;<br>Cc: itk &lt;<a ymailto="mailto:Insight-users@itk.org" href="mailto:Insight-users@itk.org">Insight-users@itk.org</a>&gt;, <a ymailto="mailto:vtkusers@vtk.org"
 href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a><br>Message-ID:<br>&nbsp; &nbsp; &nbsp;  &lt;<a ymailto="mailto:AANLkTimuFS5y157YtpzSWfVerZb8zZ9nsQbM4OLa1Jf1@mail.gmail.com" href="mailto:AANLkTimuFS5y157YtpzSWfVerZb8zZ9nsQbM4OLa1Jf1@mail.gmail.com">AANLkTimuFS5y157YtpzSWfVerZb8zZ9nsQbM4OLa1Jf1@mail.gmail.com</a>&gt;<br>Content-Type: text/plain; charset=ISO-8859-1<br><br>On Tue, Nov 23, 2010 at 1:35 AM, Xiaopeng Yang &lt;<a ymailto="mailto:yxp233@postech.ac.kr" href="mailto:yxp233@postech.ac.kr">yxp233@postech.ac.kr</a>&gt; wrote:<br>&gt; Hello everyone,<br>&gt;<br>&gt;<br>&gt;<br>&gt; Greetings!<br>&gt;<br>&gt;<br>&gt;<br>&gt; In my program for medical image segmentation, QVTK widget ImageViewer2 is<br>&gt; used to visualize the images. Do you know what specific functions in VTK<br>or<br>&gt; ITK I can use to select and load seed point index to my code by simply<br>&gt; clicking a point?<br>&gt;<br>&gt;<br>&gt;<br>&gt; I know that if imageplane
 widget is used, then by clicking a point, the<br>seed<br>&gt; point index and pixel value can be shown in the screen. But I do not know<br>&gt; how to save those values to the code automatically at the same time as<br>&gt; clicking that point. Meanwhile, I am not sure it is feasible or not to use<br>&gt; imageplane widget in QVTK widget.<br>&gt;<br>&gt;<br>&gt;<br>&gt; Since the deadline for my program is approaching, any help will be greatly<br>&gt; appreciated!<br>&gt;<br>&gt;<br>&gt;<br>&gt; Thank you,<br>&gt;<br>&gt; Xiaopeng<br><br>You may want to look at vtkImageTracerWidget:<br><a href="http://www.vtk.org/doc/nightly/html/classvtkImageTracerWidget.html" target="_blank">http://www.vtk.org/doc/nightly/html/classvtkImageTracerWidget.html</a><br><br>Here is an example example usage:<br><a href="http://www.vtk.org/Wiki/VTK/Examples/Cxx/Widgets/ImageTracerWidget"
 target="_blank">http://www.vtk.org/Wiki/VTK/Examples/Cxx/Widgets/ImageTracerWidget</a><br><br>To get the points you handle one of the events (EndInteractionEvent<br>probably) and then use the GetPath function.<br><br>Also, there should be no problem using VTK widgets in a QVTK widget.<br>Here is an example:<br><a href="http://www.vtk.org/Wiki/VTK/Examples/Cxx/Qt/BorderWidget" target="_blank">http://www.vtk.org/Wiki/VTK/Examples/Cxx/Qt/BorderWidget</a><br><br>Good luck,<br><br>David<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/20101123/ab042e86/attachment-0001.htm" target="_blank">http://www.itk.org/pipermail/insight-users/attachments/20101123/ab042e86/attachment-0001.htm</a>&gt;<br><br>------------------------------<br><br>Message: 2<br>Date: Tue, 23 Nov 2010 13:41:04 -0500<br>From: brian avants &lt;<a
 ymailto="mailto:stnava@gmail.com" href="mailto:stnava@gmail.com">stnava@gmail.com</a>&gt;<br>Subject: Re: [Insight-users] 2d 3d registration with multiple 2d<br>&nbsp;&nbsp;&nbsp; images<br>To: "Bertelsen, Alvaro" &lt;<a ymailto="mailto:abertelsen@ceit.es" href="mailto:abertelsen@ceit.es">abertelsen@ceit.es</a>&gt;<br>Cc: "<a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>" &lt;<a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>&gt;<br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;AANLkTin7tvWEkoRZf8LQTbaKYOGsFDcF8jLpy-m1=<a ymailto="mailto:6y8@mail.gmail.com" href="mailto:6y8@mail.gmail.com">6y8@mail.gmail.com</a>&gt;<br>Content-Type: text/plain; charset=UTF-8<br><br>This is an interesting question.&nbsp;  Registration refactoring will<br>address this by formulating the problem as a multi-valued<br>optimization.&nbsp;  Is it the case that the 2d images are
 "in the same<br>space"&nbsp; i.e. already in some physical correspondence to each other?<br>If so, then the algorithm would be something like:<br><br>- Declare "registration machines" for each of the 2D-3D problems.<br>- Registration machines contain the image pairs, optimizers, metrics<br>for each problem.<br>- Pass the machine set to a multi-resolution , multi-valued<br>registration coordinator.<br>- The coordinator will determine how to combine the output of each machine.<br><br>Would this type of approach work for&nbsp; you?<br><br>On Mon, Nov 22, 2010 at 12:05 PM, Bertelsen, Alvaro &lt;<a ymailto="mailto:abertelsen@ceit.es" href="mailto:abertelsen@ceit.es">abertelsen@ceit.es</a>&gt; wrote:<br>&gt; Dear ITK users,<br>&gt;<br>&gt;<br>&gt;<br>&gt; I am working on the development of an image-guided surgery application, for<br>&gt; which I need a library for registration of a 3d image to multiple<br>&gt; projections. I know about the classes already
 included in ITK ?such as<br>&gt; RayCastInterpolateImageFunction- and the extended library developed by<br>&gt; Steininger et al.<br>&gt; (<a href="http://ibia.umit.at/ResearchGroup/Phil/web/Simple2D3DRegistrationFramework.html" target="_blank">http://ibia.umit.at/ResearchGroup/Phil/web/Simple2D3DRegistrationFramework.html</a>).<br>&gt; However, these do not fit our needs as they are limited to a single 2d image<br>&gt; and we are interested in handling an arbitrary number of them.<br>&gt;<br>&gt;<br>&gt;<br>&gt; I have searched in the mailing list and found some other people asking the<br>&gt; same question, the last one on April 2006 (unless I have missed a more<br>&gt; recent one). So, does anyone know about an ITK extension for what I need?<br>&gt; Or, is there a way (which I am not aware of) to make ITK handle multiple<br>&gt; fixed (2d) images?<br>&gt;<br>&gt;<br>&gt;<br>&gt; Any help you could provide me will be greatly
 appreciated.<br>&gt;<br>&gt; Yours sincerely,<br>&gt;<br>&gt;<br>&gt;<br>&gt; ?lvaro Bertelsen<br>&gt;<br>&gt; CEIT, University of Navarra, Spain<br>&gt;<br>&gt;<br>&gt;<br>&gt; _____________________________________<br><span>&gt; Powered by <a target="_blank" href="http://www.kitware.com">www.kitware.com</a></span><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.html" target="_blank">http://www.kitware.com/products/protraining.html</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>&gt;<br>&gt;<br><br><br><br>-- <br>?????<br><br><br>------------------------------<br><br>Message: 3<br>Date: Tue, 23 Nov 2010 17:26:39 -0800<br>From: Mengda Wu &lt;<a ymailto="mailto:wumengda@gmail.com" href="mailto:wumengda@gmail.com">wumengda@gmail.com</a>&gt;<br>Subject: [Insight-users] reset m_CurrentIteration in<br>&nbsp;&nbsp;&nbsp; itkLBFGSBOptimizer<br>To: <a ymailto="mailto:Insight-users@itk.org" href="mailto:Insight-users@itk.org">Insight-users@itk.org</a><br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;<a ymailto="mailto:AANLkTinKa2PYR4mbsg66nNXjej1mUX75A49MzRY1ZZ8b@mail.gmail.com" href="mailto:AANLkTinKa2PYR4mbsg66nNXjej1mUX75A49MzRY1ZZ8b@mail.gmail.com">AANLkTinKa2PYR4mbsg66nNXjej1mUX75A49MzRY1ZZ8b@mail.gmail.com</a>&gt;<br>Content-Type: text/plain; charset="iso-8859-1"<br><br>Hi
 all,<br><br>&nbsp;  I found a small bug which can be annoying in some cases. If the same<br>LBFGSBOptimizer is used for BSpline-based deformable registration twice<br>(e.g. first in coarser grid and then in finer grid),<br>the initial output of the second registration will give the final iteration<br>number of the first registration.<br><br>&nbsp; I am wondering if there is a way to reset m_CurrentIteration in<br>itkLBFGSBOptimizer. Also, the variable m_InfinityNormOfProjectedGradient has<br>the same issue.<br><br>Thanks,<br>Mengda<br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: &lt;<a href="http://www.itk.org/pipermail/insight-users/attachments/20101123/b9ebfe04/attachment-0001.htm" target="_blank">http://www.itk.org/pipermail/insight-users/attachments/20101123/b9ebfe04/attachment-0001.htm</a>&gt;<br><br>------------------------------<br><br>Message: 4<br>Date: Wed, 24 Nov 2010 11:19:35 +0100<br>From: Dan
 Mueller &lt;<a ymailto="mailto:dan.muel@gmail.com" href="mailto:dan.muel@gmail.com">dan.muel@gmail.com</a>&gt;<br>Subject: Re: [Insight-users] ManagedITK compilation problem [was MIDAS<br>&nbsp;&nbsp;&nbsp; Journal Feedback]<br>To: <a ymailto="mailto:bergy@ukr.net" href="mailto:bergy@ukr.net">bergy@ukr.net</a><br>Cc: Insight Users &lt;<a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>&gt;,&nbsp;&nbsp;&nbsp; Julien Jomier<br>&nbsp;&nbsp;&nbsp; &lt;<a ymailto="mailto:julien.jomier@kitware.com" href="mailto:julien.jomier@kitware.com">julien.jomier@kitware.com</a>&gt;<br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;<a ymailto="mailto:AANLkTinD8zV-pkJKSRCNQz5tMygch_Neff1cs5epUuFm@mail.gmail.com" href="mailto:AANLkTinD8zV-pkJKSRCNQz5tMygch_Neff1cs5epUuFm@mail.gmail.com">AANLkTinD8zV-pkJKSRCNQz5tMygch_Neff1cs5epUuFm@mail.gmail.com</a>&gt;<br>Content-Type: text/plain; charset=ISO-8859-1<br><br>Hi bergy,<br><br>I
 will try to help with your ManagedITK compilation problem, but you<br>will need to provide some more information.<br><br>A. What version of ManagedITK are you using?<br>You should use this version:<br><a href="http://manageditk.googlecode.com/files/ManagedITK-src-3.20.0.0.zip" target="_blank">http://manageditk.googlecode.com/files/ManagedITK-src-3.20.0.0.zip</a><br><br>B. What version of ITK are you using?<br>You should use this version:<br><a href="http://voxel.dl.sourceforge.net/sourceforge/itk/InsightToolkit-3.20.0.zip" target="_blank">http://voxel.dl.sourceforge.net/sourceforge/itk/InsightToolkit-3.20.0.zip</a><br><br>C. What steps did you follow for compilation?<br>You should follow the steps list in section 3.2 here:<br><a href="http://manageditk.googlecode.com/files/ManagedITK-article.pdf" target="_blank">http://manageditk.googlecode.com/files/ManagedITK-article.pdf</a><br><br>&gt;From the error messages you reported, it could be that you missed
 step 6:<br>===================<br>6. Convert to Managed Projects: Before opening the projects, run the<br>FinishCMake.bat file located<br>in the build folder. Because CMake does not support managed projects,<br>this batch file<br>is required to convert the generated vcproj files into managed projects.<br>===================<br>Did you run FinishCMake.bat?<br><br>Aside: In the future, please use the Insight users<br>(<a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>) mailing list for ITK/ManagedITK questions, see<br>here: <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>Aside: I have stopped development on ManagedITK. The next version of<br>ITK (version 4) will include internal support for C# wrapping. This<br>will be ready early- to mid-2011.<br><br>Please let me know the answer to these questions.<br><br>Regards,
 Dan<br><a ymailto="mailto:dan.muel@gmail.com" href="mailto:dan.muel@gmail.com">dan.muel@gmail.com</a><br><br>On 23 November 2010 20:41, Julien Jomier &lt;<a ymailto="mailto:julien.jomier@kitware.com" href="mailto:julien.jomier@kitware.com">julien.jomier@kitware.com</a>&gt; wrote:<br>&gt; Dan,<br>&gt;<br>&gt; Could you answer this question?<br>&gt;<br>&gt; Thanks,<br>&gt; Julien<br>&gt;<br>&gt; -------- Original Message --------<br>&gt; Subject: MIDAS Journal Feedback<br>&gt; Date: Tue, 23 Nov 2010 06:35:31 -0500<br>&gt; From: <a ymailto="mailto:webmaster@insightsoftwareconsortium.org" href="mailto:webmaster@insightsoftwareconsortium.org">webmaster@insightsoftwareconsortium.org</a><br>&gt; To: <a ymailto="mailto:webmaster@insightsoftwareconsortium.org" href="mailto:webmaster@insightsoftwareconsortium.org">webmaster@insightsoftwareconsortium.org</a><br>&gt;<br>&gt;<br>&gt; MIDAS Journal Feedback from <a ymailto="mailto:bergy@ukr.net"
 href="mailto:bergy@ukr.net">bergy@ukr.net</a><br>&gt;<br>&gt; Where:<br>&gt; What happened: I'm working with Visual Studio 2010 under Windows 7 x64. I'm<br>&gt; trying to use ManagedITK in my magister scince work. Because I'm using C#<br>&gt; (more faster developing than C++), I chose ManagedITK.<br>&gt; I've downloaded, configured and builded ITK. The next step is to build<br>&gt; ManagedITK. And I just can not cope with two errors during building<br>&gt; ManagedITK:<br>&gt; 1. There wasn't /clr command line flag. When I added it another error<br>&gt; comming out:<br>&gt; ?Command line error D8016: '/clr' and '/EHs' command-line options are<br>&gt; incompatible<br>&gt;<br>&gt; 2. a lot of errors:<br>&gt; fatal error C1192: #using failed on<br>&gt; 'E:\Work\Magister\ManagedITK\ManagedITKBin-3.6.0.2\bin\Debug\ManagedITK.Common.dll<br>&gt;<br>&gt; and<br>&gt;<br>&gt; fatal error C1083: Cannot open source file:<br>&gt;
 'E:/Work/Magister/ManagedITK/ManagedITKBin-3.6.0.2/bin/Debug': Permission<br>&gt; denied<br>&gt;<br>&gt; I can not understand why there is some "Permission denied" on that folder. I<br>&gt; tried to run VS 2010 as an administrator and it didn't help.<br>&gt;<br>&gt; System: Mozilla/5.0 (Windows; U; Windows NT 6.1; uk; rv:1.9.2.12)<br>&gt; Gecko/20101026 Firefox/3.6.12<br><br><br>------------------------------<br><br>Message: 5<br>Date: Wed, 24 Nov 2010 14:01:22 +0100<br>From: D?enan Zuki? &lt;<a ymailto="mailto:dzenanz@gmail.com" href="mailto:dzenanz@gmail.com">dzenanz@gmail.com</a>&gt;<br>Subject: Re: [Insight-users] Constructing a 3D volume from 2D cross<br>&nbsp;&nbsp;&nbsp; section<br>To: Zein Salah &lt;<a ymailto="mailto:zeinsalah@gmail.com" href="mailto:zeinsalah@gmail.com">zeinsalah@gmail.com</a>&gt;<br>Cc: <a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a><br>Message-ID:<br>&nbsp;&nbsp;&nbsp;
 &lt;AANLkTim7HdNfF-Q6+jmaU=<a ymailto="mailto:k6azYmEDdMjy6M9jtf_e9G@mail.gmail.com" href="mailto:k6azYmEDdMjy6M9jtf_e9G@mail.gmail.com">k6azYmEDdMjy6M9jtf_e9G@mail.gmail.com</a>&gt;<br>Content-Type: text/plain; charset=UTF-8<br><br>Hi,<br><br>perhaps you can convert those slices into DICOM images (if they are in<br>that format already just put them all in one series, somehow), and<br>then pass them as one series to ITK's DICOM image reader.<br><br>HTH,<br>D?enan<br><br>On Wed, Nov 3, 2010 at 19:56, Zein Salah &lt;<a ymailto="mailto:zeinsalah@gmail.com" href="mailto:zeinsalah@gmail.com">zeinsalah@gmail.com</a>&gt; wrote:<br>&gt; Hello everybody,<br>&gt;<br>&gt; I have a set of 2D cross sections, originating from an ultrasound<br>&gt; scanner, together<br>&gt; with their position and rotation data. The sections are non parallel.<br>&gt; I am wondering<br>&gt; weather there is a mechanism in ITK to reconstrcut a 3D image from these slices.<br>&gt;<br>&gt;
 Thanks in advance,<br>&gt;<br>&gt; Zein<br>&gt; _____________________________________<br><span>&gt; Powered by <a target="_blank" href="http://www.kitware.com">www.kitware.com</a></span><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.html" target="_blank">http://www.kitware.com/products/protraining.html</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>&gt;<br><br><br>------------------------------<br><br>Message: 6<br>Date: Wed, 24 Nov 2010 22:49:50 +0900<br>From: "Xiaopeng Yang" &lt;<a ymailto="mailto:yxp233@postech.ac.kr" href="mailto:yxp233@postech.ac.kr">yxp233@postech.ac.kr</a>&gt;<br>Subject: Re: [Insight-users] [vtkusers] Interactive seed point<br>&nbsp;&nbsp;&nbsp; selection&nbsp;&nbsp;&nbsp; based on QVTK Widget (urgent request for help!)<br>To: "'David Doria'" &lt;<a ymailto="mailto:daviddoria@gmail.com" href="mailto:daviddoria@gmail.com">daviddoria@gmail.com</a>&gt;<br>Cc: 'itk' &lt;<a ymailto="mailto:Insight-users@itk.org" href="mailto:Insight-users@itk.org">Insight-users@itk.org</a>&gt;, <a ymailto="mailto:vtkusers@vtk.org" href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a><br>Message-ID: &lt;016101cb8bde$773d0780$65b71680$@ac.kr&gt;<br>Content-Type: text/plain;&nbsp;&nbsp;&nbsp; charset="utf-8"<br><br>Thank you
 for your help. But are you sure the vtkimagetracerwidget is what I need for seed point selection?<br><br>Xiaopeng<br><br>-----????-----<br>???: David Doria [mailto:<a ymailto="mailto:daviddoria@gmail.com" href="mailto:daviddoria@gmail.com">daviddoria@gmail.com</a>] <br>????: 2010? 11? 23? ??? ?? 8:03<br>???: Xiaopeng Yang<br>??: itk; <a ymailto="mailto:vtkusers@vtk.org" href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a><br>??: Re: [vtkusers] Interactive seed point selection based on QVTK Widget (urgent request for help!)<br><br>On Tue, Nov 23, 2010 at 1:35 AM, Xiaopeng Yang &lt;<a ymailto="mailto:yxp233@postech.ac.kr" href="mailto:yxp233@postech.ac.kr">yxp233@postech.ac.kr</a>&gt; wrote:<br>&gt; Hello everyone,<br>&gt;<br>&gt;<br>&gt;<br>&gt; Greetings!<br>&gt;<br>&gt;<br>&gt;<br>&gt; In my program for medical image segmentation, QVTK widget ImageViewer2 is<br>&gt; used to visualize the images. Do you know what specific functions in VTK or<br>&gt; ITK
 I can use to select and load seed point index to my code by simply<br>&gt; clicking a point?<br>&gt;<br>&gt;<br>&gt;<br>&gt; I know that if imageplane widget is used, then by clicking a point, the seed<br>&gt; point index and pixel value can be shown in the screen. But I do not know<br>&gt; how to save those values to the code automatically at the same time as<br>&gt; clicking that point. Meanwhile, I am not sure it is feasible or not to use<br>&gt; imageplane widget in QVTK widget.<br>&gt;<br>&gt;<br>&gt;<br>&gt; Since the deadline for my program is approaching, any help will be greatly<br>&gt; appreciated!<br>&gt;<br>&gt;<br>&gt;<br>&gt; Thank you,<br>&gt;<br>&gt; Xiaopeng<br><br>You may want to look at vtkImageTracerWidget:<br><a href="http://www.vtk.org/doc/nightly/html/classvtkImageTracerWidget.html" target="_blank">http://www.vtk.org/doc/nightly/html/classvtkImageTracerWidget.html</a><br><br>Here is an example example usage:<br><a
 href="http://www.vtk.org/Wiki/VTK/Examples/Cxx/Widgets/ImageTracerWidget" target="_blank">http://www.vtk.org/Wiki/VTK/Examples/Cxx/Widgets/ImageTracerWidget</a><br><br>To get the points you handle one of the events (EndInteractionEvent<br>probably) and then use the GetPath function.<br><br>Also, there should be no problem using VTK widgets in a QVTK widget.<br>Here is an example:<br><a href="http://www.vtk.org/Wiki/VTK/Examples/Cxx/Qt/BorderWidget" target="_blank">http://www.vtk.org/Wiki/VTK/Examples/Cxx/Qt/BorderWidget</a><br><br>Good luck,<br><br>David<br><br><br><br><br><br><br><br><br><br><br><br>------------------------------<br><br>Message: 7<br>Date: Wed, 24 Nov 2010 08:51:18 -0500<br>From: David Doria &lt;<a ymailto="mailto:daviddoria@gmail.com" href="mailto:daviddoria@gmail.com">daviddoria@gmail.com</a>&gt;<br>Subject: Re: [Insight-users] [vtkusers] Interactive seed point<br>&nbsp;&nbsp;&nbsp; selection based on QVTK Widget (urgent request for
 help!)<br>To: Xiaopeng Yang &lt;<a ymailto="mailto:yxp233@postech.ac.kr" href="mailto:yxp233@postech.ac.kr">yxp233@postech.ac.kr</a>&gt;<br>Cc: itk &lt;<a ymailto="mailto:Insight-users@itk.org" href="mailto:Insight-users@itk.org">Insight-users@itk.org</a>&gt;, <a ymailto="mailto:vtkusers@vtk.org" href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a><br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;<a ymailto="mailto:AANLkTinNjJd2yonodyjhA4FxnPB1saeOwS4W-NqtLUeC@mail.gmail.com" href="mailto:AANLkTinNjJd2yonodyjhA4FxnPB1saeOwS4W-NqtLUeC@mail.gmail.com">AANLkTinNjJd2yonodyjhA4FxnPB1saeOwS4W-NqtLUeC@mail.gmail.com</a>&gt;<br>Content-Type: text/plain; charset=ISO-8859-1<br><br>On Wed, Nov 24, 2010 at 8:49 AM, Xiaopeng Yang &lt;<a ymailto="mailto:yxp233@postech.ac.kr" href="mailto:yxp233@postech.ac.kr">yxp233@postech.ac.kr</a>&gt; wrote:<br>&gt; Thank you for your help. But are you sure the vtkimagetracerwidget is what I need for seed point selection?<br>&gt;<br>&gt;
 Xiaopeng<br><br>As Prathamesh mentioned, you might also consider vtkSeedWidget.<br><br>David<br><br><br>------------------------------<br><br>Message: 8<br>Date: Wed, 24 Nov 2010 20:33:23 +0530<br>From: Karthik Krishnan &lt;<a ymailto="mailto:karthik.krishnan@kitware.com" href="mailto:karthik.krishnan@kitware.com">karthik.krishnan@kitware.com</a>&gt;<br>Subject: Re: [Insight-users] 2d 3d registration with multiple 2d<br>&nbsp;&nbsp;&nbsp; images<br>To: brian avants &lt;<a ymailto="mailto:stnava@gmail.com" href="mailto:stnava@gmail.com">stnava@gmail.com</a>&gt;<br>Cc: "<a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>" &lt;<a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>&gt;<br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;AANLkTinLdaUmR2yBgHFMkc3Pme00m2++<a ymailto="mailto:nyE62bggHdM0@mail.gmail.com"
 href="mailto:nyE62bggHdM0@mail.gmail.com">nyE62bggHdM0@mail.gmail.com</a>&gt;<br>Content-Type: text/plain; charset=UTF-8<br><br>Groupwise registration has similar needs. ie. An API in the metric /<br>cost function superclass to take in an array of images.<br><br>Perhaps it calls for a another hierarchy deriving from<br>SingleValuedCostFunction (for groupwise registration) driven by<br>variants of the ImageRegistrationMethod<br><br>Thanks<br>--<br>karthik<br><br><br>On Wed, Nov 24, 2010 at 12:11 AM, brian avants &lt;<a ymailto="mailto:stnava@gmail.com" href="mailto:stnava@gmail.com">stnava@gmail.com</a>&gt; wrote:<br>&gt; This is an interesting question. ? Registration refactoring will<br>&gt; address this by formulating the problem as a multi-valued<br>&gt; optimization. ? Is it the case that the 2d images are "in the same<br>&gt; space" ?i.e. already in some physical correspondence to each other?<br>&gt; If so, then the algorithm would be something
 like:<br>&gt;<br>&gt; - Declare "registration machines" for each of the 2D-3D problems.<br>&gt; - Registration machines contain the image pairs, optimizers, metrics<br>&gt; for each problem.<br>&gt; - Pass the machine set to a multi-resolution , multi-valued<br>&gt; registration coordinator.<br>&gt; - The coordinator will determine how to combine the output of each machine.<br>&gt;<br>&gt; Would this type of approach work for ?you?<br>&gt;<br>&gt; On Mon, Nov 22, 2010 at 12:05 PM, Bertelsen, Alvaro &lt;<a ymailto="mailto:abertelsen@ceit.es" href="mailto:abertelsen@ceit.es">abertelsen@ceit.es</a>&gt; wrote:<br>&gt;&gt; Dear ITK users,<br>&gt;&gt;<br>&gt;&gt;<br>&gt;&gt;<br>&gt;&gt; I am working on the development of an image-guided surgery application, for<br>&gt;&gt; which I need a library for registration of a 3d image to multiple<br>&gt;&gt; projections. I know about the classes already included in ITK ?such as<br>&gt;&gt;
 RayCastInterpolateImageFunction- and the extended library developed by<br>&gt;&gt; Steininger et al.<br>&gt;&gt; (<a href="http://ibia.umit.at/ResearchGroup/Phil/web/Simple2D3DRegistrationFramework.html" target="_blank">http://ibia.umit.at/ResearchGroup/Phil/web/Simple2D3DRegistrationFramework.html</a>).<br>&gt;&gt; However, these do not fit our needs as they are limited to a single 2d image<br>&gt;&gt; and we are interested in handling an arbitrary number of them.<br>&gt;&gt;<br>&gt;&gt;<br>&gt;&gt;<br>&gt;&gt; I have searched in the mailing list and found some other people asking the<br>&gt;&gt; same question, the last one on April 2006 (unless I have missed a more<br>&gt;&gt; recent one). So, does anyone know about an ITK extension for what I need?<br>&gt;&gt; Or, is there a way (which I am not aware of) to make ITK handle multiple<br>&gt;&gt; fixed (2d) images?<br>&gt;&gt;<br>&gt;&gt;<br>&gt;&gt;<br>&gt;&gt; Any help you could provide me will be
 greatly appreciated.<br>&gt;&gt;<br>&gt;&gt; Yours sincerely,<br>&gt;&gt;<br>&gt;&gt;<br>&gt;&gt;<br>&gt;&gt; ?lvaro Bertelsen<br>&gt;&gt;<br>&gt;&gt; CEIT, University of Navarra, Spain<br>&gt;&gt;<br>&gt;&gt;<br>&gt;&gt;<br>&gt;&gt; _____________________________________<br><span>&gt;&gt; Powered by <a target="_blank" href="http://www.kitware.com">www.kitware.com</a></span><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.html" target="_blank">http://www.kitware.com/products/protraining.html</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;&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; --<br>&gt; ?????<br>&gt; _____________________________________<br><span>&gt; Powered by <a target="_blank" href="http://www.kitware.com">www.kitware.com</a></span><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.html" target="_blank">http://www.kitware.com/products/protraining.html</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>&gt;<br><br><br>------------------------------<br><br>Message: 9<br>Date: Wed, 24 Nov 2010 17:17:48 +0100<br>From: Marta Peroni &lt;<a ymailto="mailto:m.peroni@gmail.com" href="mailto:m.peroni@gmail.com">m.peroni@gmail.com</a>&gt;<br>Subject: [Insight-users] Simplify a set of points in ITK<br>To: ITK Users &lt;<a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>&gt;<br>Cc: Luis Ibanez &lt;<a ymailto="mailto:luis.ibanez@kitware.com" href="mailto:luis.ibanez@kitware.com">luis.ibanez@kitware.com</a>&gt;<br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;AANLkTimNPYev6x2FCw=NKyZ8AiPZR=<a
 ymailto="mailto:0_vqbFOF7r6Q-N@mail.gmail.com" href="mailto:0_vqbFOF7r6Q-N@mail.gmail.com">0_vqbFOF7r6Q-N@mail.gmail.com</a>&gt;<br>Content-Type: text/plain; charset="iso-8859-1"<br><br>Hi!<br>I have a kind of "dummy" problem. I do need to select a subset of point<br>cloud describing the contour of a structure (the points are previously<br>derived with the ITK Review implementation of Marching Squares and therefore<br>I do have *lots* of points).<br>I found a very nice implementation of this in CGAL Random_Simplify_Points,<br>but unfortunately I cannot include the whole library in my project.<br>So here it comes the question:<br>I did store my points (x,y,z) in a PointsContainer (as in PointSet2.cxx).<br>Now in order for the algorithm to work, I need to randomly shuffle /<br>randomly extract from the container (shuffle would be the best option).<br>Is there something similar to itk::ImageRandomNonRepeatingIteratorWithIndex<br>but for points
 containers?and/or a shuffle method?<br>thanks a lot<br>Marta<br>-- <br>*******************************************************************<br>Marta Peroni<br>PhD Student - Bioengineering department - Politecnico di Milano (IT)<br><br>contacts:<br>mail: <a ymailto="mailto:marta.peroni@mail.polimi.it" href="mailto:marta.peroni@mail.polimi.it">marta.peroni@mail.polimi.it</a> , <a ymailto="mailto:m.peroni@gmail.com" href="mailto:m.peroni@gmail.com">m.peroni@gmail.com</a><br>mobile: +393488202136 (IT) +16178186365 (US)<br>office: +39 02 2399 9022<br><br>********************************************************************<br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: &lt;<a href="http://www.itk.org/pipermail/insight-users/attachments/20101124/a0021bea/attachment-0001.htm"
 target="_blank">http://www.itk.org/pipermail/insight-users/attachments/20101124/a0021bea/attachment-0001.htm</a>&gt;<br><br>------------------------------<br><br>Message: 10<br>Date: Wed, 24 Nov 2010 10:25:45 -0600<br>From: <a ymailto="mailto:olguna@cimat.mx" href="mailto:olguna@cimat.mx">olguna@cimat.mx</a><br>Subject: [Insight-users] Manual de Configuraci?n ITK, VTK &amp; Borland<br>&nbsp;&nbsp;&nbsp; C++ Builder (en espa?ol )<br>To: <a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>, <a ymailto="mailto:vtkusers@vtk.org" href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a><br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;<a ymailto="mailto:5d7e2c715bad80e8ac4852a0e710bcea.squirrel@correo.cimat.mx" href="mailto:5d7e2c715bad80e8ac4852a0e710bcea.squirrel@correo.cimat.mx">5d7e2c715bad80e8ac4852a0e710bcea.squirrel@correo.cimat.mx</a>&gt;<br>Content-Type: text/plain;charset=iso-8859-1<br><br>Message written in
 Spanish with the intention to communicate with Spanish<br>speakers, without attempting to exclude anyone.<br><br>Saludos Usuarios de ITK &amp; VTK y quienes aun trabajen en Borland C++<br>Builder 5.3 (desde 2008 C++ Builder pertenece a Embarcadero), hago de su<br>conocimiento y pongo a su disposici?n un manual de instalaci?n/compilaci?n<br>de BCB, ITK &amp; VTK, en espa?ol, lo pueden encontrar en<br><a href="http://effort-2-improve.wikispaces.com/BCBITKVTK" target="_blank">http://effort-2-improve.wikispaces.com/BCBITKVTK</a>, a manera de<br>agradecimiento por la disponibilidad de estas librer?as y de la buena<br>asesor?a recibida cuando realizaba mis primeros pasos en dicha plataforma.<br><br>Espero les sea de utilidad, ATTE:<br>L. en M. Oscar Guti?rrez Luna<br><br>Greetings Members of ITK &amp; VTK and who are still working in Borland C + +<br>Builder 5.3 (since 2008 C + + Builder belongs to Embarcadero), I put at<br>its disposal a manual installation
 / compilation of BCB, ITK &amp; VTK (only<br>in Spanish), can be found on<br><a href="http://effort-2-improve.wikispaces.com/BCBITKVTK" target="_blank">http://effort-2-improve.wikispaces.com/BCBITKVTK</a>, as an appreciation for<br>the availability of these libraries and good advice received while<br>conducting my first steps on that platform.<br><br>I hope this will be useful<br>L. in M. Oscar Guti?rrez Luna<br><br>"One can't learn anything so well as by experiencing it oneself"<br><br>Albert Einstein<br><br><br>"...la sabiduria no se transmite. La ciencia que el sabio intenta<br>comunicar suena siempre a locura." Hermann Hesse. SIDDHARTHA<br><br><br><br>------------------------------<br><br>_______________________________________________<br>Insight-users mailing list<br><a ymailto="mailto:Insight-users@itk.org" 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 79, Issue 28<br>*********************************************<br></div></div>
</div><br>

      </body></html>