<div dir="ltr">Hi Matt, <div><br></div><div>Thanks for updating the release branch with the missing commits. </div><div><br></div><div>Slicer now compiles successfully and I confirm that the associated issues are resolved. See [1][2]</div>
<div><br></div><div style>Slicer has just been updated to build against the tip of the ITKv4 release branch (23793286). See <a href="http://viewvc.slicer.org/viewvc.cgi/Slicer4?view=revision&revision=22355">http://viewvc.slicer.org/viewvc.cgi/Slicer4?view=revision&revision=22355</a></div>
<div><br></div><div style>Thanks</div><div style>Jc</div><div><br></div><div>[1] <a href="http://na-mic.org/Bug/view.php?id=2945">http://na-mic.org/Bug/view.php?id=2945</a></div><div style>[2] <a href="http://na-mic.org/Bug/view.php?id=3254">http://na-mic.org/Bug/view.php?id=3254</a></div>
</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Aug 28, 2013 at 11:52 PM, Matt McCormick <span dir="ltr"><<a href="mailto:matt.mccormick@kitware.com" target="_blank">matt.mccormick@kitware.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Jc,<br>
<br>
Thank you very much for testing and the investigation!<br>
<br>
I did not turn the ITKIODCMTK Module when building and testing, and I<br>
missed those errors.<br>
<br>
It looks like Kent made some more patches before the 4.4.1 release<br>
that were not merged until after the release. It is a good thing he<br>
writes good tests :-).<br>
<br>
I added the following:<br>
<div class="im"><br>
BUG: Need to set 3rd dir cosine for DICOM images<br>
</div>DOC: Rename DCMTKException DCMTKExceptionOrErrorReturn<br>
<div class="im">ENH: Accomodate Philips 4D Multiframe DICOM files<br>
<br>
</div>Build/test was verified.<br>
<br>
<br>
The other possible patch to be added depending on tomorrow's dashboard:<br>
<br>
<a href="http://itk.org/gitweb?p=ITK.git;a=commit;h=6c095c513e22730d6b5d185d14338353136a5eb5" target="_blank">http://itk.org/gitweb?p=ITK.git;a=commit;h=6c095c513e22730d6b5d185d14338353136a5eb5</a><br>
<br>
This only effects WrapITK.<br>
<br>
<br>
Thanks,<br>
Matt<br>
<br>
<br>
On Wed, Aug 28, 2013 at 10:57 PM, Jean-Christophe Fillion-Robin<br>
<div class="HOEnZb"><div class="h5"><<a href="mailto:jchris.fillionr@kitware.com">jchris.fillionr@kitware.com</a>> wrote:<br>
> That patch should fix the release branch:<br>
><br>
> diff --git a/Modules/IO/DCMTK/src/itkDCMTKImageIO.cxx<br>
> b/Modules/IO/DCMTK/src/itkDCMTKImageIO.cxx<br>
> index ee107a0..0f2abdd 100644<br>
> --- a/Modules/IO/DCMTK/src/itkDCMTKImageIO.cxx<br>
> +++ b/Modules/IO/DCMTK/src/itkDCMTKImageIO.cxx<br>
> @@ -267,15 +267,8 @@ void DCMTKImageIO::ReadImageInformation()<br>
> reader.GetDimensions(rows,columns);<br>
> this->m_Dimensions[0] = columns;<br>
> this->m_Dimensions[1] = rows;<br>
> - if(numPhases == 1)<br>
> - {<br>
> - this->m_Dimensions[2] = reader.GetFrameCount();<br>
> - }<br>
> - else<br>
> - {<br>
> - this->m_Dimensions[2] = reader.GetFrameCount() / numPhases;<br>
> - this->m_Dimensions[3] = numPhases;<br>
> - }<br>
> + this->m_Dimensions[2] = reader.GetFrameCount();<br>
> +<br>
> vnl_vector<double> rowDirection(3),columnDirection(3),sliceDirection(3);<br>
> reader.GetDirCosines(rowDirection,columnDirection,sliceDirection);<br>
> // orthogonalize<br>
><br>
><br>
> On Wed, Aug 28, 2013 at 6:49 PM, Jean-Christophe Fillion-Robin<br>
> <<a href="mailto:jchris.fillionr@kitware.com">jchris.fillionr@kitware.com</a>> wrote:<br>
>><br>
>> Hi Matt,<br>
>><br>
>> The commits associated with file Modules/IO/DCMTK/src/itkDCMTKImageIO.cxx<br>
>><br>
>> on release branch are:<br>
>><br>
>> * 376aeec - BUG: Row/Column assignment into ImageDimensions was wrong (7<br>
>> hours ago) <Kent Williams><br>
>> * ca8dedd - BUG: Dicom method for Dir Cosines made non-orthogonal<br>
>> directions (4 months ago) <Kent Williams><br>
>> * 9c530ae - COMP: Fix all valid cppcheck warnings in "ITK/Module"<br>
>> directory (5 months ago) <Ali Ghayoor><br>
>> * e081d83 - ENH: Add DCMTKImageIO to ITK (10 months ago) <Kent Williams><br>
>><br>
>><br>
>> on master branch are:<br>
>><br>
>> * d30bd1f - BUG: Row/Column assignment into ImageDimensions was wrong (6<br>
>> days ago) <Kent Williams><br>
>> * 4207729 - ENH: Accomodate Philips 4D Multiframe DICOM files (6 weeks<br>
>> ago) <Kent Williams><br>
>> * df53542 - BUG: Need to set 3rd dir cosine for DICOM images (6 weeks ago)<br>
>> <Kent Williams><br>
>> * ca8dedd - BUG: Dicom method for Dir Cosines made non-orthogonal<br>
>> directions (4 months ago) <Kent Williams><br>
>> * 9c530ae - COMP: Fix all valid cppcheck warnings in "ITK/Module"<br>
>> directory (5 months ago) <Ali Ghayoor><br>
>> * e081d83 - ENH: Add DCMTKImageIO to ITK (10 months ago) <Kent Williams><br>
>><br>
>><br>
>> Considering the numPhases variable has been introduced by commit 4207729,<br>
>> I would suggest to also backport it.<br>
>><br>
>> Not sure about "df53542" what would be the implication for Slicer ?<br>
>><br>
>> Steve, Kent: Could you comment ?<br>
>><br>
>> Thanks<br>
>> Jc<br>
>><br>
>><br>
>> On Wed, Aug 28, 2013 at 6:38 PM, Jean-Christophe Fillion-Robin<br>
>> <<a href="mailto:jchris.fillionr@kitware.com">jchris.fillionr@kitware.com</a>> wrote:<br>
>>><br>
>>> Hi Matt,<br>
>>><br>
>>> I tried to locally build against the latest commit (3b54bc800) of the<br>
>>> release branch and ITKv4 failed to build.<br>
>>><br>
>>> Here is the error:<br>
>>><br>
>>> [ 99%] Building CXX object<br>
>>> Modules/IO/DCMTK/src/CMakeFiles/ITKIODCMTK.dir/itkDCMTKImageIO.cxx.o<br>
>>><br>
>>> /home/jchris/Projects/Slicer-AHM-Superbuild-Release/ITKv4/Modules/IO/DCMTK/src/itkDCMTKImageIO.cxx:<br>
>>> In member function ‘virtual void itk::DCMTKImageIO::ReadImageInformation()’:<br>
>>><br>
>>> /home/jchris/Projects/Slicer-AHM-Superbuild-Release/ITKv4/Modules/IO/DCMTK/src/itkDCMTKImageIO.cxx:270:<br>
>>> error: ‘numPhases’ was not declared in this scope<br>
>>> At global scope:<br>
>>> cc1plus: warning: unrecognized command line option "-Wno-long-double"<br>
>>> make[2]: ***<br>
>>> [Modules/IO/DCMTK/src/CMakeFiles/ITKIODCMTK.dir/itkDCMTKImageIO.cxx.o] Error<br>
>>> 1<br>
>>> make[1]: *** [Modules/IO/DCMTK/src/CMakeFiles/ITKIODCMTK.dir/all] Error 2<br>
>>> make: *** [all] Error 2<br>
>>><br>
>>> Jc<br>
>>><br>
>>><br>
>>> On Wed, Aug 28, 2013 at 6:14 PM, Jean-Christophe Fillion-Robin<br>
>>> <<a href="mailto:jchris.fillionr@kitware.com">jchris.fillionr@kitware.com</a>> wrote:<br>
>>>><br>
>>>> Hi Matt,<br>
>>>><br>
>>>> Thanks for backporting these commit to the release branch. Today, I plan<br>
>>>> on updating the ITK has used by Slicer from 35b90133a7 to 3b54bc800.<br>
>>>><br>
>>>> If you plan on backporting other commits before the end of the day, let<br>
>>>> me know.<br>
>>>><br>
>>>> Thanks<br>
>>>> Jc<br>
>>>><br>
>>>><br>
>>>> On Wed, Aug 28, 2013 at 5:54 PM, Matt McCormick<br>
>>>> <<a href="mailto:matt.mccormick@kitware.com">matt.mccormick@kitware.com</a>> wrote:<br>
>>>>><br>
>>>>> Thanks for the feedback.<br>
>>>>><br>
>>>>> Current list:<br>
>>>>><br>
>>>>> Arnaud Gelas (2):<br>
>>>>> BUG: Check that region for thread is not empty<br>
>>>>> BUG: Fix failure in InteractivePause test<br>
>>>>><br>
>>>>> Dirk Padfield (1):<br>
>>>>> BUG: ConstPointer assigned to non-const raw pointer<br>
>>>>><br>
>>>>> Jim Miller (2):<br>
>>>>> BUG: GDCMImageIO ignore image orienations from MetaDataDictionary<br>
>>>>> BUG: Two tests were writing to same filename.<br>
>>>>><br>
>>>>> Jonathan Guinet (1):<br>
>>>>> BUG: {Opening,Closing}ByReconstructionImageFilter information<br>
>>>>> propagation<br>
>>>>><br>
>>>>> Kent Williams (2):<br>
>>>>> BUG: Guard against Divide by Zero<br>
>>>>> BUG: Row/Column assignment into ImageDimensions was wrong<br>
>>>>><br>
>>>>> Matthew McCormick (7):<br>
>>>>> BUG: Add missing ITKOpenJPEG dependency for ITKReview Module.<br>
>>>>> COMP: ITKOpenJPEG EXCLUDE_FROM_ALL.<br>
>>>>> BUG: Fix Module_Review enable with a single configure.<br>
>>>>> COMP: Do not try to include float.h for MinGW.<br>
>>>>> BUG: itkSingleLevelSetsv4WhitakerImage2DTest output clobber.<br>
>>>>> COMP: Avoid MetaIO config conflict with USE_SYSTEM_GDCM.<br>
>>>>><br>
>>>>> Xiaoxiao Liu (4):<br>
>>>>> ENH: Exclude ITKGDCM module when system GDCM is ON.<br>
>>>>> BUG: A fix for using sys installed GDCM.<br>
>>>>> COMP: New baseline image for MultiResImageRegistrationTest.<br>
>>>>><br>
>>>>> On Wed, Aug 28, 2013 at 2:10 PM, Johnson, Hans J<br>
>>>>> <<a href="mailto:hans-johnson@uiowa.edu">hans-johnson@uiowa.edu</a>> wrote:<br>
>>>>> > Matt,<br>
>>>>> ><br>
>>>>> > Kent's changes are definitely a good candidate. It was clearly a bug<br>
>>>>> > that<br>
>>>>> > rarely affects the results (due to most data being square). But for<br>
>>>>> > non-square data it was a bug.<br>
>>>>> ><br>
>>>>> > Hans<br>
>>>>> ><br>
>>>>> ><br>
>>>>> > On 8/28/13 8:38 AM, "Bradley Lowekamp" <<a href="mailto:blowekamp@mail.nih.gov">blowekamp@mail.nih.gov</a>><br>
>>>>> > wrote:<br>
>>>>> ><br>
>>>>> >>Matt,<br>
>>>>> >><br>
>>>>> >>I believe the Slicer developers were talking about Jim's GDCM patches<br>
>>>>> >>would be good in the release branch.<br>
>>>>> >><br>
>>>>> >>Also it looked like these from Gordon and Kent may be import IO fixes<br>
>>>>> >> as<br>
>>>>> >>well:<br>
>>>>> >>> BUG: airOneLinify() infinite loop, synch w/ Teem for its 1.11.1<br>
>>>>> >>> release<br>
>>>>> >>> BUG: Row/Column assignment into ImageDimensions was wrong<br>
>>>>> >><br>
>>>>> >><br>
>>>>> >>Brad<br>
>>>>> >><br>
>>>>> >>On Aug 28, 2013, at 12:22 AM, Matt McCormick<br>
>>>>> >> <<a href="mailto:matt.mccormick@kitware.com">matt.mccormick@kitware.com</a>><br>
>>>>> >>wrote:<br>
>>>>> >><br>
>>>>> >>> Hi,<br>
>>>>> >>><br>
>>>>> >>> Requesting feedback for patches to include on the release branch<br>
>>>>> >>> for<br>
>>>>> >>>v4.4.2.<br>
>>>>> >>><br>
>>>>> >>><br>
>>>>> >>> Currently:<br>
>>>>> >>><br>
>>>>> >>> Matthew McCormick (3):<br>
>>>>> >>> BUG: Add missing ITKOpenJPEG dependency for ITKReview Module.<br>
>>>>> >>> COMP: ITKOpenJPEG EXCLUDE_FROM_ALL.<br>
>>>>> >>> BUG: Fix Module_Review enable with a single configure.<br>
>>>>> >>><br>
>>>>> >>> Sean McBride (1):<br>
>>>>> >>> COMP: Fixed compiler error in C++11<br>
>>>>> >>><br>
>>>>> >>> Xiaoxiao Liu (1):<br>
>>>>> >>> BUG: Exclude ITKReview when ITK_USE_REVIEW if off.<br>
>>>>> >>><br>
>>>>> >>> Although the last one will be reverted to prevent unexpected<br>
>>>>> >>> behavior<br>
>>>>> >>> on a bugfix release.<br>
>>>>> >>><br>
>>>>> >>><br>
>>>>> >>><br>
>>>>> >>> Patches since v4.4.1 release:<br>
>>>>> >>><br>
>>>>> >>> Ali Ghayoor (3):<br>
>>>>> >>> ENH: transform reader/writer filters are templated on output<br>
>>>>> >>> precision type<br>
>>>>> >>> BUG: Fix memory leak error in itkHDF5TransformIO<br>
>>>>> >>> DOC: Migration guide is updated for multi precision of ITK<br>
>>>>> >>><br>
>>>>> >>> Arnaud Gelas (9):<br>
>>>>> >>> BUG: Check that region for thread is not empty<br>
>>>>> >>> COMP: use concept checking instead of runtime checking<br>
>>>>> >>> BUG: Fix failure in InteractivePause test<br>
>>>>> >>> ENH: updating level sets sparse layer visualization<br>
>>>>> >>> ENH: Upgrade doxygen config file<br>
>>>>> >>> BUG: fix KWStyle errors in itkVTKVisualize* files<br>
>>>>> >>> BUG: Fix visualization of 3D level-sets<br>
>>>>> >>> ENH: Add Concept checking for 2D Visualization<br>
>>>>> >>> ENH: Use partial template specialization for iso value vis<br>
>>>>> >>><br>
>>>>> >>> Bill Lorensen (1):<br>
>>>>> >>> ENH: Reduce test times for Debug builds<br>
>>>>> >>><br>
>>>>> >>> Brad King (1):<br>
>>>>> >>> MetaIO: Removed the deprecated _CM24 CMake variables<br>
>>>>> >>><br>
>>>>> >>> Bradley Lowekamp (14):<br>
>>>>> >>> ENH: Enabling shared IO modules on windows<br>
>>>>> >>> DOC: adding Examples directory to ITK Doxygen<br>
>>>>> >>> DOC: remove explicit doxygen example commands now<br>
>>>>> >>> automatically<br>
>>>>> >>>added<br>
>>>>> >>> BUG: add installation of Export headers<br>
>>>>> >>> BUG: Remove ENABLED_SHARED option for IOSpatialObjects module<br>
>>>>> >>> BUG: Fix linking of factory register method on static windows<br>
>>>>> >>> STYLE: Fix some style errors reported in continuous test<br>
>>>>> >>> BUG: Remove Spurious testing file<br>
>>>>> >>> COMP: Use relative path for generate output header parameter<br>
>>>>> >>> BUG: Enable slice-by-slice streaming for ShrinkImageFilter<br>
>>>>> >>> STYLE: Fix ShrinkImageStreamingTest style<br>
>>>>> >>> PERF: Flip filter use increment in scanline direction<br>
>>>>> >>> PERF: Additional FlipImageFilter performance by using input<br>
>>>>> >>>iterator<br>
>>>>> >>> PERF: Move test to IntegratedTest directory<br>
>>>>> >>><br>
>>>>> >>> Brian Helba (10):<br>
>>>>> >>> STYLE: Unify style of "operator delete[]"<br>
>>>>> >>> STYLE: Remove superfluous return statements at the end of void<br>
>>>>> >>>functions<br>
>>>>> >>> STYLE: Fix miscellaneous KWStyle errors<br>
>>>>> >>> ENH: Remove superfluous IMMEDIATE option from CMake<br>
>>>>> >>> CONFIGURE_FILE<br>
>>>>> >>> STYLE: Replace Unicode in ITK source with ASCII homoglyphs<br>
>>>>> >>> ENH: Use MINC API to free memory allocated by MINC<br>
>>>>> >>> PERF: Allow delete of NULL pointers<br>
>>>>> >>> PERF: Refactor some deletion code<br>
>>>>> >>> ENH: Refactor KWStyle testing<br>
>>>>> >>> COMP: Make find_package usage compatible with < CMake-2.8.8<br>
>>>>> >>><br>
>>>>> >>> C Cagatay Bilgin (1):<br>
>>>>> >>> DOC: Modify ShapeLabelObject comments.<br>
>>>>> >>><br>
>>>>> >>> Cyrille Faucheux (1):<br>
>>>>> >>> BUG: Fix support for RLE-compressed & upper-left BMP.<br>
>>>>> >>><br>
>>>>> >>> Dirk Padfield (2):<br>
>>>>> >>> BUG: ConstPointer assigned to non-const raw pointer<br>
>>>>> >>> ENH: Otsu code replaced with OtsuMultiple call<br>
>>>>> >>><br>
>>>>> >>> Gordon Kindlmann (1):<br>
>>>>> >>> BUG: airOneLinify() infinite loop, synch w/ Teem for its<br>
>>>>> >>> 1.11.1<br>
>>>>> >>>release<br>
>>>>> >>><br>
>>>>> >>> Irina Vidal-Migallon (3):<br>
>>>>> >>> ENH: Remote module: GPU and CPU Smoothing recursive YVV<br>
>>>>> >>> Gaussian<br>
>>>>> >>>Filter<br>
>>>>> >>> ENH: Remote module: GPU and CPU Smoothing recursive YVV<br>
>>>>> >>> Gaussian<br>
>>>>> >>>Filter<br>
>>>>> >>> ENH: YVV remote module - Add EXCLUDE_FROM_ALL option to<br>
>>>>> >>> itk_module.<br>
>>>>> >>><br>
>>>>> >>> Jim Miller (2):<br>
>>>>> >>> BUG: GDCMImageIO ignore image orienations from<br>
>>>>> >>> MetaDataDictionary<br>
>>>>> >>> BUG: Two tests were writing to same filename.<br>
>>>>> >>><br>
>>>>> >>> Jonathan Guinet (1):<br>
>>>>> >>> BUG: {Opening,Closing}ByReconstructionImageFilter information<br>
>>>>> >>>propagation<br>
>>>>> >>><br>
>>>>> >>> Kent Williams (2):<br>
>>>>> >>> BUG: Guard against Divide by Zero<br>
>>>>> >>> BUG: Row/Column assignment into ImageDimensions was wrong<br>
>>>>> >>><br>
>>>>> >>> Kishore Mosaliganti (6):<br>
>>>>> >>> ENH: Allow visualization of initial level-set<br>
>>>>> >>> ENH: Add Set/GetNumberOfThreads for evolution<br>
>>>>> >>> ENH: New binary mask term with test<br>
>>>>> >>> ENH: Set/Get number of threads for Whitaker evolution class<br>
>>>>> >>> BUG: Non-square images mesh not specified correctly<br>
>>>>> >>> ENH: Set the scaling factor of the level-set function<br>
>>>>> >>><br>
>>>>> >>> Luis Ibanez (4):<br>
>>>>> >>> STYLE: Fixed miscelaneous style errors.<br>
>>>>> >>> DOC: Removed Doxygen \example tags for Tests.<br>
>>>>> >>> COMP: Fix warnings in matrix division by scalar.<br>
>>>>> >>> COMP: Attempt to fix warning about \param.<br>
>>>>> >>><br>
>>>>> >>> Mark Hiner (1):<br>
>>>>> >>> STYLE: update SCIFIO module name<br>
>>>>> >>><br>
>>>>> >>> Matthew McCormick (23):<br>
>>>>> >>> BUG: Add missing ITKOpenJPEG dependency for ITKReview Module.<br>
>>>>> >>> COMP: ITKOpenJPEG EXCLUDE_FROM_ALL.<br>
>>>>> >>> COMP: Fix invalid Doxygen LaTeX formula.<br>
>>>>> >>> BUG: Fix Module_Review enable with a single configure.<br>
>>>>> >>> COMP: Wrap cost functions for templated precision.<br>
>>>>> >>> BUG: Fix Module_Review enable with a single configure.<br>
>>>>> >>> DOC: Fix GradientDescentOptimizer doc grammar.<br>
>>>>> >>> BUG: Using consistent naming for Transform template name<br>
>>>>> >>> change.<br>
>>>>> >>> BUG: Remove unused QUASI_NEWTON_STEP_ERROR.<br>
>>>>> >>> COMP: Do not try to include float.h for MinGW.<br>
>>>>> >>> STYLE: TScalarType -> TScalar<br>
>>>>> >>> COMP: Fix NIFTI CMake variable separation warning.<br>
>>>>> >>> ENH: Use Transform::Clone() in ImageToImageMetric.<br>
>>>>> >>> COMP: Remove redundant Typename structs. #3195.<br>
>>>>> >>> STYLE: Fix include guard in level set visualization.<br>
>>>>> >>> ENH: Use file(COPY .. instead of exec_process.<br>
>>>>> >>> COMP: Fix transform wrapping errors with ITK_WRAP_double OFF.<br>
>>>>> >>> DOC: Fix spelling errors in FourierDescriptors1.cxx.<br>
>>>>> >>> BUG: Fix ITK_USE_REVIEW compatibility set syntax.<br>
>>>>> >>> COMP: Avoid MetaIO config conflict with USE_SYSTEM_GDCM.<br>
>>>>> >>> BUG: itkSingleLevelSetsv4WhitakerImage2DTest output clobber.<br>
>>>>> >>> ENH: Test conversion writing float transform with templateless<br>
>>>>> >>>writer.<br>
>>>>> >>> BUG: BMPImageIO buffer size computation.<br>
>>>>> >>><br>
>>>>> >>> Nick Tustison (1):<br>
>>>>> >>> ENH: Added B-spline registration test.<br>
>>>>> >>><br>
>>>>> >>> Sean McBride (1):<br>
>>>>> >>> COMP: Fixed compiler error in C++11<br>
>>>>> >>><br>
>>>>> >>> Sureerat Reaungamornrat (1):<br>
>>>>> >>> ENH: Make SetFixedImageRegion a virtual function<br>
>>>>> >>><br>
>>>>> >>> Taylor Braun-Jones (1):<br>
>>>>> >>> COMP: Remove unused TransformFileWriter::m_Precision ivar<br>
>>>>> >>><br>
>>>>> >>> Xiaoxiao Liu (11):<br>
>>>>> >>> COMP: Relax tolerance for a regression test.<br>
>>>>> >>> ENH: Exclude ITKGDCM module when system GDCM is ON.<br>
>>>>> >>> BUG: Exclude ITKReview when ITK_USE_REVIEW if off.<br>
>>>>> >>> BUG: A fix for using sys installed GDCM.<br>
>>>>> >>> BUG: ITK_USE_Review did not turn Review module ON.<br>
>>>>> >>> ENH: Simplify the steps to build remote modules.<br>
>>>>> >>> ENH: Turn remote module LSTK off by default.<br>
>>>>> >>> ENH: Deprecate ITK_USE_REVIEW.<br>
>>>>> >>> DOC: Migration guide for ITK_USE_REVIEW deprecation.<br>
>>>>> >>> ENH: Remote module names need to be consistent.<br>
>>>>> >>> COMP: New baseline image for MultiResImageRegistrationTest.<br>
>>>>> >>><br>
>>>>> >>><br>
>>>>> >>><br>
>>>>> >>> Planned to include for the bugfix release if they apply cleanly on<br>
>>>>> >>> the<br>
>>>>> >>> release branch:<br>
>>>>> >>><br>
>>>>> >>><br>
>>>>> >>> Arnaud Gelas:<br>
>>>>> >>> BUG: Check that region for thread is not empty<br>
>>>>> >>> BUG: Fix failure in InteractivePause test<br>
>>>>> >>><br>
>>>>> >>> Dirk Padfield:<br>
>>>>> >>> BUG: ConstPointer assigned to non-const raw pointer<br>
>>>>> >>><br>
>>>>> >>> Jim Miller:<br>
>>>>> >>> BUG: GDCMImageIO ignore image orienations from<br>
>>>>> >>> MetaDataDictionary<br>
>>>>> >>> BUG: Two tests were writing to same filename.<br>
>>>>> >>><br>
>>>>> >>> Jonathan Guinet:<br>
>>>>> >>> BUG: {Opening,Closing}ByReconstructionImageFilter information<br>
>>>>> >>>propagation<br>
>>>>> >>><br>
>>>>> >>> Kent Williams:<br>
>>>>> >>> BUG: Guard against Divide by Zero<br>
>>>>> >>> BUG: Row/Column assignment into ImageDimensions was wrong<br>
>>>>> >>><br>
>>>>> >>> Matthew McCormick:<br>
>>>>> >>> COMP: Do not try to include float.h for MinGW.<br>
>>>>> >>> COMP: Remove redundant Typename structs. #3195.<br>
>>>>> >>> BUG: itkSingleLevelSetsv4WhitakerImage2DTest output clobber.<br>
>>>>> >>><br>
>>>>> >>> Sean McBride:<br>
>>>>> >>> COMP: Fixed compiler error in C++11<br>
>>>>> >>><br>
>>>>> >>> Xiaoxiao Liu:<br>
>>>>> >>> COMP: Relax tolerance for a regression test.<br>
>>>>> >>> ENH: Exclude ITKGDCM module when system GDCM is ON.<br>
>>>>> >>> BUG: A fix for using sys installed GDCM.<br>
>>>>> >>> COMP: New baseline image for MultiResImageRegistrationTest.<br>
>>>>> >>><br>
>>>>> >>><br>
>>>>> >>><br>
>>>>> >>> Please reply in this thread if the proposed additional patches are<br>
>>>>> >>> not<br>
>>>>> >>> simple bug fixes that address critical issues or if some patches<br>
>>>>> >>> were<br>
>>>>> >>> left out.<br>
>>>>> >>><br>
>>>>> >>> Thanks,<br>
>>>>> >>> Matt<br>
>>>>> >>> _______________________________________________<br>
>>>>> >>> Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
>>>>> >>><br>
>>>>> >>> Visit other Kitware open-source projects at<br>
>>>>> >>> <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
>>>>> >>><br>
>>>>> >>> Kitware offers ITK Training Courses, for more information visit:<br>
>>>>> >>> <a href="http://kitware.com/products/protraining.php" target="_blank">http://kitware.com/products/protraining.php</a><br>
>>>>> >>><br>
>>>>> >>> Please keep messages on-topic and check the ITK FAQ at:<br>
>>>>> >>> <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
>>>>> >>><br>
>>>>> >>> Follow this link to subscribe/unsubscribe:<br>
>>>>> >>> <a href="http://www.itk.org/mailman/listinfo/insight-developers" target="_blank">http://www.itk.org/mailman/listinfo/insight-developers</a><br>
>>>>> >><br>
>>>>> >>_______________________________________________<br>
>>>>> >>Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
>>>>> >><br>
>>>>> >>Visit other Kitware open-source projects at<br>
>>>>> >><a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
>>>>> >><br>
>>>>> >>Kitware offers ITK Training Courses, for more information visit:<br>
>>>>> >><a href="http://kitware.com/products/protraining.php" target="_blank">http://kitware.com/products/protraining.php</a><br>
>>>>> >><br>
>>>>> >>Please keep messages on-topic and check the ITK FAQ at:<br>
>>>>> >><a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
>>>>> >><br>
>>>>> >>Follow this link to subscribe/unsubscribe:<br>
>>>>> >><a href="http://www.itk.org/mailman/listinfo/insight-developers" target="_blank">http://www.itk.org/mailman/listinfo/insight-developers</a><br>
>>>>> ><br>
>>>>> ><br>
>>>>> ><br>
>>>>> > ________________________________<br>
>>>>> > Notice: This UI Health Care e-mail (including attachments) is covered<br>
>>>>> > by the Electronic Communications Privacy Act, 18 U.S.C. 2510-2521, is<br>
>>>>> > confidential and may be legally privileged. If you are not the intended<br>
>>>>> > recipient, you are hereby notified that any retention, dissemination,<br>
>>>>> > distribution, or copying of this communication is strictly prohibited.<br>
>>>>> > Please reply to the sender that you have received the message in error, then<br>
>>>>> > delete it. Thank you.<br>
>>>>> > ________________________________<br>
>>>>> _______________________________________________<br>
>>>>> Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
>>>>><br>
>>>>> Visit other Kitware open-source projects at<br>
>>>>> <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
>>>>><br>
>>>>> Kitware offers ITK Training Courses, for more information visit:<br>
>>>>> <a href="http://kitware.com/products/protraining.php" target="_blank">http://kitware.com/products/protraining.php</a><br>
>>>>><br>
>>>>> Please keep messages on-topic and check the ITK FAQ at:<br>
>>>>> <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
>>>>><br>
>>>>> Follow this link to subscribe/unsubscribe:<br>
>>>>> <a href="http://www.itk.org/mailman/listinfo/insight-developers" target="_blank">http://www.itk.org/mailman/listinfo/insight-developers</a><br>
>>>><br>
>>>><br>
>>>><br>
>>>><br>
>>>> --<br>
>>>> <a href="tel:%2B1%20919%20869%208849" value="+19198698849">+1 919 869 8849</a><br>
>>><br>
>>><br>
>>><br>
>>><br>
>>> --<br>
>>> <a href="tel:%2B1%20919%20869%208849" value="+19198698849">+1 919 869 8849</a><br>
>><br>
>><br>
>><br>
>><br>
>> --<br>
>> <a href="tel:%2B1%20919%20869%208849" value="+19198698849">+1 919 869 8849</a><br>
><br>
><br>
><br>
><br>
> --<br>
> <a href="tel:%2B1%20919%20869%208849" value="+19198698849">+1 919 869 8849</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br>+1 919 869 8849<br>
</div>