<div dir="ltr"><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">Hi Taylor,</div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small"><br></div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">I submitted a <a href="https://developercommunity.visualstudio.com/content/problem/4679/compiling-itk-triggers-internal-error.html">bug</a> report to Microsoft about it, and somebody said they will add ITK to their compiler test suite. Also, that crashing bug was supposedly fixed for "final release".</div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small"><br></div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">Regards,</div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">Dženan</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Jan 19, 2017 at 12:18 PM, Taylor Braun-Jones <span dir="ltr"><<a href="mailto:taylor@braun-jones.org" target="_blank">taylor@braun-jones.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Any chance the 4.11 release could have at least some preliminary support for VS2017? Right now it crashes the compiler:<div><br></div><div><div><font face="monospace, monospace">C:\src\itk\modules\core\<wbr>common\include\itkPromoteType.<wbr>h(97): fatal error C1001: An internal error has occurred in the compiler.</font></div><div><font face="monospace, monospace">(compiler file 'msc1.cpp', line 1469)</font></div><div><font face="monospace, monospace"> To work around this problem, try simplifying or changing the program near the locations listed above.</font></div><div><font face="monospace, monospace">Please choose the Technical Support command on the Visual C++</font></div><div><font face="monospace, monospace"> Help menu, or open the Technical Support help file for more information</font></div><div><font face="monospace, monospace">Internal Compiler Error in C:\PROGRA~2\MIB055~1\2017\<wbr>COMMUN~1\VC\Tools\MSVC\1410~1.<wbr>247\bin\HostX64\x64\cl.exe.  You will be prompted to send an error report to Microsoft later.</font></div><div><font face="monospace, monospace">INTERNAL COMPILER ERROR in 'C:\PROGRA~2\MIB055~1\2017\<wbr>COMMUN~1\VC\Tools\MSVC\1410~1.<wbr>247\bin\HostX64\x64\cl.exe'</font></div><div><font face="monospace, monospace">    Please choose the Technical Support command on the Visual C++</font></div><div><font face="monospace, monospace">    Help menu, or open the Technical Support help file for more information</font></div></div><span class="HOEnZb"><font color="#888888"><div><br></div><div>Taylor<br></div></font></span></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jan 16, 2017 at 4:18 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">On behalf of the Insight Toolkit community, we are proud to announce<br>
that ITK 4.11 release candidate 2 has been tagged and is available for<br>
testing! Please take this opportunity to test the new features in the<br>
release candidate.<br>
<br>
<br>
To obtain the source code, use the links:<br>
<br>
<br>
  <a href="https://github.com/Kitware/ITK/archive/v4.11rc02.zip" rel="noreferrer" target="_blank">https://github.com/Kitware/ITK<wbr>/archive/v4.11rc02.zip</a><br>
  <a href="https://github.com/Kitware/ITK/archive/v4.11rc02.tar.gz" rel="noreferrer" target="_blank">https://github.com/Kitware/ITK<wbr>/archive/v4.11rc02.tar.gz</a><br>
<br>
or<br>
<br>
  git clone <a href="https://itk.org/ITK.git" rel="noreferrer" target="_blank">https://itk.org/ITK.git</a><br>
  cd ITK<br>
  git checkout -q --detach v4.11rc02<br>
<br>
For more details, please see the Git documentation [1].<br>
<br>
<br>
A few selected highlights for this release:<br>
<br>
  - Remote Modules were added to: perturb mesh vertices with additive<br>
gaussian noise, accurately benchmark computational performance,<br>
perform principal components analysis of scalar, vector, and mesh<br>
vertex data, create a run-length encoded memory compression scheme for<br>
itk::Image, run N-D morphological contour interpolation, interpolate<br>
multi-label images, iterate over multiple images simultaneously, and<br>
compute inverse displacement fields.<br>
  - NumPy bridge support is now enabled by default with NumPy array<br>
views of multi-component images and VNL vectors and matrices.<br>
  - Internal HDF5 was updated to the latest upstream version along<br>
with a number of other third-party libraries.<br>
<br>
<br>
This release introduces a new template class export specification<br>
macro, ITK_TEMPLATE_EXPORT. The macro should be used with templated<br>
classes to address failing dynamic_cast's and exception catching<br>
across binaries on Mac OSX.<br>
<br>
Bugs were addressed and improvements were made to how the<br>
pseudo-random number generator is used. Tests that rely on the random<br>
number generator should explicitly set the global seed at start:<br>
<br>
  itk::Statistics::MersenneTwist<wbr>erRandomVariateGenerator::<wbr>GetInstance()->SetSeed(<br>
121212 );<br>
<br>
To improve randomness, new instances of the generator start from a<br>
different seed; some minor differences in the output of algorithms<br>
that uses the generator, like mutual information metrics, should be<br>
expected.<br>
<br>
Additionally, output may change for registration with composite affine<br>
transforms; the v4 registration framework now uses corner sampling as<br>
opposed to random sampling to estimate their parameter scales.<br>
<br>
<br>
Please test the release candidate and share your experiences on the<br>
mailing list, issue tracker, and Gerrit Code Review.<br>
<br>
<br>
An Experimental build, which demonstrates how the test suite performs<br>
on your local build system, can be submitted to the dashboard [2]<br>
with:<br>
<br>
  mkdir ../ITK-build<br>
  cd ../ITK-build<br>
  cmake ../ITK<br>
  ctest -j 4 -M Experimental  -T Configure -T Build -T Test -T Submit<br>
<br>
Visual Studio builds must also add “-C Release” to the ctest command.<br>
<br>
Notify the mailing list if there are any unexpected failures.  Testing<br>
your own applications against the RC is also appreciated.<br>
<br>
<br>
Congratulations to the 31 contributors to this release. We would<br>
especially like to recognize the new contributors: Hastings Greer,<br>
Gilles Filippini, Thien Nguyen, Caspar Goch, Mayeul Chassagnard,<br>
Somesh Kashyap, Simon Rit, Pierre Barbier de Reuille, and Maeliss<br>
Jallais.<br>
<br>
<br>
The 4.11.0 final release is scheduled for January 23rd.<br>
<br>
<br>
[1] <a href="http://www.itk.org/Wiki/ITK/Git" rel="noreferrer" target="_blank">http://www.itk.org/Wiki/ITK/Gi<wbr>t</a><br>
<br>
[2] <a href="http://open.cdash.org/index.php?project=Insight" rel="noreferrer" target="_blank">http://open.cdash.org/index.ph<wbr>p?project=Insight</a><br>
<br>
<br>
New Features<br>
------------<br>
<br>
* Wrapping Improvements<br>
  - Python GetArrayFromImage() and GetImageFromArray() from<br>
ITKBridgeNumPy are directly accessible from the Python itk namespace.<br>
  - The itk package loads much faster: individual modules are loaded<br>
only when required.<br>
  - Conversion of ITK images from and to NumPy array using Bridge<br>
NumPy supports RGB, RGBA, and Vector images.<br>
  - VNL vectors and VNL matrices can be converted from and to NumPy<br>
objects with respectively the new couple of functions<br>
GetArrayFromVnlVector()/GetVnl<wbr>VectorFromArray() and<br>
GetArrayFromVnlMatrix()/GetVnl<wbr>MatrixFromArray()<br>
  - The global timestamp is used across all ITK Python modules when<br>
built statically<br>
  - Wrap additional classes such as KernelFunctionBase<br>
  - itk_python_add_test CMake function added for Python script testing<br>
in ITK modules<br>
<br>
* New Remote Modules<br>
  - DVMeshNoise<br>
    - Perturbing mesh vertices with additive gaussian noise<br>
    - <a href="http://hdl.handle.net/10380/3567" rel="noreferrer" target="_blank">http://hdl.handle.net/10380/35<wbr>67</a><br>
 - PerformanceBenchmarking<br>
    - Accurate benchmarking of computational performance<br>
    - <a href="http://hdl.handle.net/10380/3557" rel="noreferrer" target="_blank">http://hdl.handle.net/10380/35<wbr>57</a><br>
  - PrincipalComponentsAnalysis<br>
    - Principal components analysis of scalar, vector, and mesh vertex data<br>
    - <a href="http://hdl.handle.net/10380/3386" rel="noreferrer" target="_blank">http://hdl.handle.net/10380/33<wbr>86</a><br>
  - RLEImage<br>
    - Run-length encoded memory compression scheme for itk::Image<br>
    - <a href="http://hdl.handle.net/10380/3562" rel="noreferrer" target="_blank">http://hdl.handle.net/10380/35<wbr>62</a><br>
  - MorphologicalContourInterpolat<wbr>ion<br>
    - N-D morphological contour interpolation<br>
    - <a href="http://hdl.handle.net/10380/3563" rel="noreferrer" target="_blank">http://hdl.handle.net/10380/35<wbr>63</a><br>
  - GenericLabelInterpolator<br>
    - A generic interpolator for multi-label images<br>
    - <a href="http://hdl.handle.net/10380/3506" rel="noreferrer" target="_blank">http://hdl.handle.net/10380/35<wbr>06</a><br>
  - MultipleImageIterator<br>
    - Iterate over multiple images simultaneously<br>
    - <a href="http://hdl.handle.net/10380/3455" rel="noreferrer" target="_blank">http://hdl.handle.net/10380/34<wbr>55</a><br>
  - FixedPointInverseDisplacementF<wbr>ield<br>
   - Computes inverse displacement field<br>
   - <a href="http://hdl.handle.net/10380/3222" rel="noreferrer" target="_blank">http://hdl.handle.net/10380/32<wbr>22</a><br>
<br>
* Core Improvements<br>
  - New ITK_TEMPLATE_EXPORT for templated classes resolves<br>
cross-binary dynamic_cast on Mac OSX<br>
  - New MersenneTwisterRandomVariateGe<wbr>nerator instances are<br>
initialized with different seeds<br>
  - Use compiler feature detection in CMake for C++11 features, etc.<br>
  - New CMake macro itk_module_add_library for creating libraries in ITK modules<br>
  - Improved support for ccache and distcc with<br>
CMAKE_<LANG>_COMPILER_LAUNCHER (CMake >=3.4 required)<br>
  - Support for .sha512 ExternalData content links<br>
  - GitHub Pages and <a href="http://data.kitware.com" rel="noreferrer" target="_blank">data.kitware.com</a> ExternalData repositories added<br>
  - GPGPU system support for C++11<br>
  - Support of new compilers: Visual Studio 15 and XCode 8.2.1<br>
(clang-800.0.42.1)<br>
<br>
* Filtering Improvements<br>
  - HessianToObjectnessMeasure moved out of the ITKReview module<br>
  - New UnsharpMaskImageFilter for image edge enhancement<br>
<br>
* IO Improvements<br>
  - TransformFactory class has been moved to a separate module<br>
  - Spline order added to BSplineTransform identifier<br>
  - Improved NIFTI orientation support<br>
<br>
* Documentation Improvements<br>
  - Updates to the Software Guide, Doxygen, Wiki and Sphinx Examples<br>
<br>
* Third Party Library Updates<br>
  - pygccxml updated to v1.8.0<br>
  - VNL updated to latest upstream (2016.07.06)<br>
  - SWIG updated to v3.0.11<br>
  - KWSys updated to latest upstream (2016.11.21)<br>
  - HDF5 updated to v1.8.17<br>
  - SCIFIO updated to latest upstream (2016.12.01)<br>
  - DCMTK updated to 3.6.1_20121012<br>
  - CastXML to latest upstream (2016.01.28)<br>
<br>
* Improved Code Coverage -- we are at 85.44%!<br>
  - Jon Haitz-Legarreta's extensive code coverage improvements<br>
  - <a href="https://blog.kitware.com/why-should-we-spend-time-writing-tests/" rel="noreferrer" target="_blank">https://blog.kitware.com/why-s<wbr>hould-we-spend-time-writing-te<wbr>sts/</a><br>
<br>
* *Lots* of important bug fixes<br>
<br>
* And much more! See details in the log below.<br>
<br>
<br>
Changes from v4.11rc01 to v4.11rc02<br>
------------------------------<wbr>-----<br>
<br>
Bradley Lowekamp (5):<br>
     BUG: Remove unused SimpleImageRegistrationTest baselines<br>
     ENH: Expose GetNextSeed method in MersenneTwiseter Generator<br>
     BUG: Add option for fixed seed or wall clock seed for sampling<br>
     BUG: Use metric random seed in v3 examples<br>
     BUG: Prefer setting seed at algorithm in "v4" tests.<br>
<br>
Francois Budin (3):<br>
     ENH: Update BridgeNumPy to latest version on 2017.01.08 to address ITK-3511<br>
     BUG: Extra \$ in doxygen comment<br>
     BUG: Binary include directory added only if enabled shared<br>
<br>
Jon Haitz Legarreta (2):<br>
     DOC: Document itkLabelOverlapMeasuresImageFi<wbr>lter methods.<br>
     DOC: Fix ITKImageNoise filters' doc TeX errors.<br>
<br>
Matthew McCormick (1):<br>
     BUG: Remove invalid ImageRegistration4Test.png.sha<wbr>512<br>
<br>
Max Smolens (1):<br>
     DOC: Fix itkUnsharpMaskImageFilter documentation typos<br>
<br>
Simon Rit (1):<br>
     BUG: ITK-based software was crasing when thread creation failed<br>
<br>
<br>
Changes from v4.10.0 to v4.11rc01<br>
------------------------------<wbr>---<br>
<br>
Bill Lorensen (4):<br>
     COMP: Restore support for clang 3.0 compiler<br>
     COMP: Consistent use of ModifiedTimeType<br>
     ENH: Bump WikiExamples remote module version<br>
     ENH: Bump WikiExamples version<br>
<br>
Bradley Lowekamp (57):<br>
     ENH: Add registered TrasformIO's to exception<br>
     ENH: Use template or constant for loop stop condition<br>
     ENH: Updating SWIG version to 3.0.9<br>
     COMP: Address VS9 ambiguous std::abs call in Haung calculator<br>
     COMP: Fix undefined NumericTraits::Zero and One errors with mingw64<br>
     BUG: Fix segfault if ~CleanUpObjectFactory called multiple times<br>
     BUG: Address itkHDF5ImageIO test failures for mingw64<br>
     BUG: demonstrate dynamic_cast failure when reading transforms<br>
     BUG: Address itkHDF5ImageIO test failures for mingw64<br>
     ENH: Updating SWIG version to 3.0.10<br>
     ENH: Enable CMP0063 New behavior<br>
     COMP: Enable hidden visibility property with vxl static libraries<br>
     COMP: Enable hidden visibility property with HDF5 static libraries<br>
     COMP: Enable hidden visibility property with HDF5 static libraries<br>
     BUG: Match Add2 function to AddImageFilter documentation<br>
     ENH: Improve support for std::complex with PowImageFilter<br>
     ENH: Explicitly mark required files for dependent tests<br>
     COMP: Bypass XCode 7.3,8 internal compilation error<br>
     COMP: Address CMake configuration error with itkJPEG2000Test03 property<br>
     BUG: Correct test's REQUIRED_FILES to only the input.<br>
     ENH: move HessianToObjectnessMeasure filter out of Review<br>
     ENH: Separate TransformFactory class into separate module<br>
     DOC: Add links between similar label to rgb filters<br>
     ENH: Separate data from function calls<br>
     COMP: Fix changed Graft method<br>
     ENH: Reduce template dependencies on CalculateRotationMatrix<br>
     ENH: Add Functor Accessors to LabelMapToRGB filter<br>
     BUG: Enable VirtualDomain and FixedTransform in RegMethv4<br>
     BUG: Use BSpline Order 3 for 2D in transform factory.<br>
     ENH: Add spline order to BSplineTransform's string id<br>
     ENH: Adding initial CircleCi configuration file<br>
     COMP: Fix float to unsigned integer conversion warnings<br>
     BUG: Include installed modules in ITK_MODULES_ENABLED<br>
     COMP: Address CMake error that ITKGPUCommon is not in export<br>
     COMP: Address wrong library types with VS and shared libraries<br>
     BUG: Ensure CreateImageIO is concurrent thread safe<br>
     ENH: Mark HDF5 CMake options as internal<br>
     COMP: Add template export declaration for ParametricPath<br>
     COMP: Correct TEMPLATE_EXPLICIT definition in Path module<br>
     ENH: Factor out common code in the TrasformFactoryBase registration<br>
     ENH: Add CMake variable for max transform dimension, defaults 4<br>
     ENH: Create CMake module to check for private RTTI compatibility<br>
     ENH: Improving setting of default ITK_TEMPATE_VISIBILITY_DEFAULT<br>
     COMP: Correct ifndef value to allow user defined ITK_TEMPLATE_EXPORT<br>
     BUG: Add explicit instantiate for ObjectToObjectOptimizerBase<br>
     COMP: Use add_definitions for CMake 2.8.9 compatibility<br>
     COMP: Add warning suppression for distcc warning<br>
     ENH: Explicitly instantiate the optimizer base over float<br>
     BUG: Use IsLinear to check if transform is "affine"<br>
     ENH: Remove unneeded includes of random iterator header<br>
     ENH: Improve thread-safety for Generator, and unique New sequence<br>
     ENH: Do not use global random generator<br>
     BUG: Update v3 registration metrics to use local seed<br>
     ENH: Prefer setting local seed over global in tests.<br>
     ENH: Update SWIG to latest 3.0.11 release<br>
     BUG: relax testing parameters for v3 translation registration<br>
     BUG: Restore baseline for debug registration<br>
<br>
Caspar Goch (2):<br>
     BUG: Use printable type for RGBA pixel ostream for ITK-3501<br>
     STYLE: Remove extra space for ITK-3501<br>
<br>
Christina Rossmanith (1):<br>
     DOC: Added more details to the class Doxygen documentation.<br>
<br>
Davis Vigneault (2):<br>
     COMP: VCL_DEFINE_SPECIALIZATION not defined<br>
     ENH: Add remote module DVMeshNoise<br>
<br>
Dženan Zukić (27):<br>
     BUG: Fixing CID-1355433 (IDENTICAL_BRANCHES)<br>
     ENH: Adding MultipleImageIterator as a remote module<br>
     COMP: enables TBB 4.4 back-end for VTK7's SMP<br>
     COMP: enabling position independent code flag for FFTW<br>
     ENH: adding configuration file for code reformatting tool clang-format<br>
     ENH: Updating hooks to work with Windows/TortoiseGit/KDiff3<br>
     COMP: Fixing -fPIC flag passing with Ninja build system<br>
     ENH: Adding RLEImage as a remote module<br>
     ENH: Updating uncrustify configuration to current git version<br>
     STYLE: better compliance with ITK style<br>
     STYLE: A new option in uncrustify, updating the config file accordingly<br>
     ENH: Adding MorphologicalContourInterpolat<wbr>ion as a remote module<br>
     ENH: improving documentation<br>
     BUG: fixing buffer growing endlessly, as reported by Timothee Evain<br>
     BUG: fixing buffer growing endlessly, as reported by Timothee Evain<br>
     STYLE: default uncrustify configuration file is less aggressive<br>
     COMP: Fixing warning<br>
     COMP: VS15 compiler fix<br>
     BUG: casting -9 to unsigned produced unwanted result<br>
     BUG: Ensuring consistency between debug and release<br>
     COMP: Updating LesionSizingToolkit after some recent compile fixes<br>
     COMP: respect option METAIO_USE_NAMESPACE<br>
     ENH: updating version of AnisotropicDiffusionLBR<br>
     ENH: adding UnsharpMaskingImageFilter<br>
     COMP: explicitly cast to output type<br>
     BUG: double call to update would cause empty output image<br>
     ENH: Updating RLEImage remote module. Change-log:<br>
<br>
Eugene Prilepin (4):<br>
     ENH: Add the "ITK_USE_GPU" to ITK Config<br>
     BUG: Fix API for set/get "LaplacianImageFilter" object<br>
     ENH: Add support of images types with the 'CovariantVector' pixel type<br>
     ENH: Add python test for the 'GradientVectorFlowImageFilter<wbr>' wrap<br>
<br>
Francois Budin (52):<br>
     ENH: Adding GetArrayFromImage in python itk namespace<br>
     ENH: Adding GetImageFromArray in python itk namespace<br>
     ENH: *_WRAP_* variable per external module<br>
     BUG: ImportImageFilter not responsible of memory management<br>
     ENH: New remote module GenericLabelInterpolator<br>
     DOC: SetNumberOfOutputs had wrong comment<br>
     BUG: lazyAttributes dictionary keys could be over-ridden<br>
     BUG: lazyAttributes dictionary keys could be over-ridden<br>
     BUG: Fix recent update of HDF5 (1.8.17)<br>
     ENH: Update SCIFIO to latest version on 08/23/2016<br>
     ENH: Addition of the remote module FixedPointInverseDisplacementF<wbr>ield<br>
     ENH: Update SCIFIO to latest version on 08/29/2016<br>
     BUG: Path to commit was relative instead of absolute<br>
     ENH: Path to SetupForDevelopment is relative, not absolute<br>
     BUG: LSMImageIO write function was not checking image dimension<br>
     BUG: LSMImageIO was not checking correctly image dimension<br>
     BUG: Missing associated test data<br>
     BUG: Missing associated test data<br>
     ENH: Bump CMakeLists.txt version to 4.10.1.<br>
     BUG: Quotes are not escaped in configured cmake file<br>
     ENH: Improving API of Graft() in itk::Image<br>
     ENH: Updating ITKGenericLabelInterpolator remote module<br>
     ENH: Update ITKIOTransformDCMTK remote module<br>
     BUG: Factory registration should depend on ITK_BUILD_SHARED<br>
     COMP: Updating DCMTK compilation for Ninja<br>
     ENH: Update version of DCMTK to 3.6.1_20121012<br>
     ENH: Update SCIFIO to latest version on 10/25/2016<br>
     BUG: Swig and PCRE do not support space in installation paths<br>
     BUG: exit() call from within piped commands was not exiting the script<br>
     BUG: Typo in folder creation command<br>
     ENH: Only display message for transform registered multiple times in debug<br>
     ENH: Image spacing must be positive<br>
     BUG: Supported extensions by PNG IO were not added in constructor.<br>
     DOC: Documentation in itkRBGAPixel and itkRGBPixel was incorrect.<br>
     ENH: Update SCIFIO to lastest (2016.12.01)<br>
     ENH: FixedPointInverseDisplacementF<wbr>ield moved to InsightSoftwareConsortium<br>
     COMP: Remove compilation warnings<br>
     ENH: Improved support of ccache and distcc<br>
     BUG: GPUImage regression due to API change.<br>
     ENH: Update Bridge Numpy (2016.12.05)<br>
     ENH: Update VariationalRegistration to remove warnings during compilation<br>
     ENH: FindPythonLibs does not support both debug and release<br>
python libraries<br>
     ENH: Update VariationalRegistration<br>
     BUG: Missing ITK_TEMPLATE_EXPORT in forward declaration of itk::ImageBase<br>
     BUG: Missing ITK_TEMPLATE_EXPORT in itkOptimizerParametersHelper<br>
     BUG: Missing ITK_TEMPLATE_EXPORT in templated class<br>
     BUG: Remove linkage warnings on MacOS<br>
     BUG: HDF5 CMake installation directory variable had not been updated<br>
     BUG: Missing include header in AnisotropicDiffusionBLR remote<br>
module hxx files<br>
     COMP: Silencing unused variable warning in itkTimeStamp<br>
     STYLE: Improve style checking by using module ITKKWStyleOverwrite.txt<br>
     COMP: OS*Barrier functions are deprecated on MacOS 10.12<br>
<br>
GCC-XML Upstream (1):<br>
     ENH: pygccxml v1.8.0 (reduced)<br>
<br>
Gert Wollny (1):<br>
     BUG: Relax vnl_complex floating point comparisons for i386<br>
<br>
Gilles Filippini (1):<br>
     BUG: Use NATIVE_HBOOL for encoding HDF5 types.<br>
<br>
HDF Group (1):<br>
     ENH: hdf5 1.8.17-r30218 (reduced)<br>
<br>
Hans Johnson (23):<br>
     COMP: Use cmake WriteCompilerDetectionHeader<br>
     ENH: Use itk_compiler_detection versions<br>
     COMP: Need ITK_NOEXCEPT_OR_THROW macro.<br>
     COMP: Provide consistent granular C++11 support<br>
     STYLE: Use granular ITK_COMPILER_CXX_STATIC_ASSERT<br>
     STYLE: Prefer to use consistent definitions<br>
     COMP: Improve robustness of identifying the compiler standard used<br>
     BUG: try_compile for AlignAs were always failing<br>
     STYLE: Provide a well documented macro for repeated code<br>
     STYLE: Delete functions in consistent way<br>
     COMP: GPU baseclass ivars need to be protected<br>
     COMP: Remove unnecessary circular dependancy<br>
     COMP: Add long long usage for HDF5<br>
     COMP: Add long long usage for HDF5<br>
     STYLE: Prefer static small array to dynamic array<br>
     BUG: Confusing interface for FFTW wisdom files<br>
     STYLE: Output dimension from OutputImageType<br>
     STYLE: Code review style cleanups<br>
     STYLE: Prefer to use ITK AssertOrThrow macros<br>
     ENH: Add OverrideBoundaryCondition logic<br>
     ENH: Provide mechanism for enhanced NIFTI support<br>
     BUG: Use NIFTI sform/qform conventions correctly<br>
     ENH: Remove ambiguity about sform/qform<br>
<br>
Hastings Greer (8):<br>
     BUG: ITK-3448 Wrap itkQuadEdgeCellTraitsInfo more specifically<br>
     BUG: make itkTriangleHelper instantiable to ease wrapping<br>
     BUG: remove lsqr because of license issues ITK 1160<br>
     BUG: make itkTriangleHelper instantiable to ease wrapping<br>
     BUG: initialize X to zero in lsmr Solve<br>
     BUG: Labled Point Set Registration: test multiple labels<br>
     BUG: Fix python wrapping of Cuberille remote module<br>
     BUG: Add test demonstrating Python global timestamp issue<br>
<br>
Jean-Christophe Fillion-Robin (5):<br>
     STYLE: UseITK: Set ImageIO exceptions using new convention. See #3393<br>
     STYLE: MeshIO: Moves virtual destructor into cpp files. See #3393<br>
     STYLE: Update MeshIO factories to use RegisterFactoryInternal. See #3393<br>
     STYLE: MeshIO: Move MeshFileWriterException into its own file. See #3393<br>
     STYLE: MeshIO: Remove unused include from headers. See #3393<br>
<br>
Johan Andruejol (3):<br>
     ENH: Add missing itkKernelFunctionBase wrapping<br>
     ENH: Add PrincipalComponentsAnalysis remote module<br>
     COMP: Override cannot be used with inline<br>
<br>
Jon Haitz Legarreta (216):<br>
     ENH: Improve itkFlatStructutingElement coverage.<br>
     ENH: Improve itkPathToImageFilter class coverage.<br>
     ENH: Improve itkIsolatedWatershedImageFilte<wbr>r coverage.<br>
     ENH: Improve itkLogSigmoidTransferFunction coverage.<br>
     STYLE: Improve itkBSplineTransform doc style.<br>
     ENH: Improve GaborKernelFunctionCoverage.<br>
     PERF: Remove duplicate itkMath include<br>
     STYLE: Move the PrintSelf method to the end<br>
     STYLE: Improve the itkScalarToRGBColormapImageFil<wbr>ter style.<br>
     STYLE: Delete duplicate method documentation<br>
     STYLE: Remove method documentation from implementation file<br>
     STYLE: Improve GACLevelSet classes' style<br>
     STYLE: Improve test style<br>
     ENH: Improve itkGaussianDerivativeImageFilt<wbr>er coverage.<br>
     ENH: Improve the itkScalarToRGBColormapImageFil<wbr>ter coverage<br>
     STYLE: Improve itkScalarToRGBColormap test style<br>
     ENH: Improve GACLSImageFilter classes' coverage<br>
     STYLE: Improve comment style in GACLS tests<br>
     ENH: Improve itkImportImageFilter coverage<br>
     ENH: Improve itkVideoFileReader coverage<br>
     ENH: Improve itkVideoFileWriter coverage<br>
     STYLE: Improve the itkVideoFileWriter style.<br>
     STYLE: Imrpove itkVideoFileReader style.<br>
     ENH: Improve the itkBSplineControlPointImageFun<wbr>ction coverage<br>
     STYLE: Improve the itkIntensityWindowingImageFilt<wbr>er style<br>
     STYLE: Improve the itkIntensityWindowingImageFilt<wbr>er test style<br>
     ENH: Improve ImageToSpatialObjectRegistrati<wbr>onMethod coverage<br>
     STYLE: Improve test style<br>
     ENH: Improve MaskNeighborhoodOperatorImageF<wbr>ilter coverage<br>
     ENH: Improve itkMeshFileWriter coverage<br>
     ENH: Improve RescaleIntensityImageFilter coverage.<br>
     ENH: Improve itkClampImageFilter coverage.<br>
     BUG: Fix ivar type casting in PrintSelf.<br>
     STYLE: Improve MRIBiasFieldCorrectionFilter style.<br>
     ENH: Improve MRIBiasFieldCorrectionFilter coverage.<br>
     ENH: Improve itkIntensityWindowingImageFilt<wbr>er coverage<br>
     BUG: Fix Run-time type information in CSV module classes.<br>
     ENH: Improve the itkHistogram class code coverage.<br>
     DOC: Fix documentation typo.<br>
     STYLE: Improve the ImproveRescaleIntensityImageFi<wbr>lter style.<br>
     PERF: Make the itkVideoFileReader ivars private<br>
     PERF: Make itkVideoFileWriter ivars private<br>
     ENH: Improve coverage for itk::OrientImageFilter.<br>
     STYLE: Improve itk::OrientImageFilter class style.<br>
     ENH: Improve itkCSVNumericObjectFileWriter coverage.<br>
     ENH: Add missing standard class typdefs.<br>
     ENH: Improve itkVoronoiSegmentationImageFil<wbr>ter coverage.<br>
     ENH: Improve itkVoronoiSegmentationImageFil<wbr>ter style.<br>
     STYLE: Improve the MalahanobisDistanceThresholdIm<wbr>ageFunction style.<br>
     ENH: Improve coverage for itkMalahanobisDistanceThreshol<wbr>d.<br>
     ENH: Improve itk::MinimumMaximumImageCalcul<wbr>ator coverage.<br>
     ENH: Improve itkMinimumMaximumImageCalculat<wbr>or style.<br>
     BUG: Fix type mismatch in test.<br>
     STYLE: Improve itkPolylineMaskImagefilter style.<br>
     ENH: Improve itkPolylineMaskImageFilter coverage.<br>
     ENH: Improve itkFileListVideoStyle.<br>
     ENH: Improve itkLandmarkBasedTransformIniti<wbr>alizer coverage.<br>
     ENH: Add baseline image to itkPolylineMaskImageFilter test.<br>
     ENH: Improve coverage for itkBSplineTransformInitializer<wbr>.<br>
     STYLE: Improve itkBSplineTransformInitializer doc style.<br>
     ENH: Enhance itkBSplineTransformInitializer implementation.<br>
     DOC: Fix typo in method documentation.<br>
     ENH: Improve the itkRegularStepGradientDescentO<wbr>ptimizerv4 style.<br>
     STYLE: Improve the itkSimpleContourExtractorImage<wbr>Filter style.<br>
     ENH: Exercise the class' Get methods.<br>
     ENH: Improve coverage for itkStatisticsOpeningLabelMapFi<wbr>lter.<br>
     ENH: Improve style for itkThresholdLabelerImageFilter<wbr>.<br>
     ENH: Improve itkThresholdLabelerImageFilter coverage.<br>
     ENH: Get internal ImageIO via a const macro.<br>
     ENH: Improve the itkSimpleContourExtractorImage<wbr>Filter coverage.<br>
     STYLE: Improve the itkMetaArray class style.<br>
     ENH: Improve MetaArrayReader/Writer coverages.<br>
     ENH: Improve the itkCovarianceImageFunction style.<br>
     STYLE: Improve itkVoronoiDiagram2DGenerator style.<br>
     ENH: Improve VoronoiDiagram2DGenerator coverage.<br>
     STYLE: Improve the itkBayesianClassifierImageFilt<wbr>er style.<br>
     STYLE: Improve the itkMetaArrayWriter style.<br>
     ENH: Improve itkCovarianteImageFunction coverage.<br>
     COMP: Fix signed/unsigned int comparison warning.<br>
     DOC: Improve itkGrayscaleDilateImageFilter documentation.<br>
     DOC: Improve documentation for itkGrayscaleErodeImageFilter.<br>
     DOC: Improve ConfigureHistogram method documentation.<br>
     STYLE: Improve the itkMovingHistogramMorphologyIm<wbr>agefilter style.<br>
     BUG: Fix Superclass name in RTTI.<br>
     STYLE: Improve itkGaussianInterpolateImageFun<wbr>ction style.<br>
     ENH: Improve coverage for itkGaussianInterpolateImageFun<wbr>ction.<br>
     ENH: Improve itkBayesianClassifierImageFilt<wbr>er coverage.<br>
     ENH: Add itkBSplineControlPointImageFil<wbr>ter RTTI.<br>
     STYLE: Improve itkBSplinecontrolPointImageFil<wbr>ter style.<br>
     ENH: Improve itkBSplineControlPointImageFil<wbr>ter coverage.<br>
     ENH: Improve coverage for itkRegularStepGradientDescentO<wbr>ptimizerv4.<br>
     STYLE: Improve the class implementation file style.<br>
     STYLE: Improve the itkResampleImageFilter style.<br>
     DOC: Fix typo in GetMTime method doc.<br>
     STYLE: Remove out-of-body implementation doc<br>
     ENH: Improve itkResampleImageFilter coverage.<br>
     ENH: Improve itkAbsImageAdaptor and Filter coverage.<br>
     BUG: Fix itkLSMImageIO class' Superclass name.<br>
     ENH: Improve the itkInterpolateImagePointsFilte<wbr>r coverage.<br>
     ENH: Improve itkPowImageFilter coverage.<br>
     BUG: Fix ConvolutionImageFilter RTTI.<br>
     STYLE: Use initialization lists.<br>
     STYLE: Improve BinaryFunctorImageFilter style.<br>
     ENH: Improve itkMinimumImageFilter code coverage.<br>
     BUG: Fix Linux-x86_64-gcc4.1 warning on implicit conversion.<br>
     ENH: Improve MaximumImageFilter coverage.<br>
     BUG: Fix conversion to PixelType conversion.<br>
     COMP: Fix double to unsigned char conversion warning.<br>
     ENH: Improve coverage for itkNormalizeToConstantImageFil<wbr>ter.<br>
     BUG: Fix itkSquaredDifferenceErrorFunct<wbr>ion RTTI.<br>
     ENH: Improve itkMeanImageFunctionCoverage.<br>
     ENH: Improve itkSquareImageFilter coverage.<br>
     STYLE: Improve the itkSquaredDifferenceErrorFunct<wbr>ion style.<br>
     STYLE: Enhance style for itkNormalizeToConstantImageFil<wbr>ter.<br>
     STYLE: Improve itkMeanImageFunction style.<br>
     ENH: Remove unnecesary call to filter print.<br>
     ENH: Improve itkRegionOfInterestImageFilter coverage.<br>
     STYLE: Improve itkRegionOfInterestImageFilter style.<br>
     STYLE: Improve itkPasteImageFilter style.<br>
     STYLE: Improve itkJoinSeriesImageFilter style.<br>
     BUG: Fix itkPadLabelMapFilter RTTI Superclass.<br>
     COMP: Address std::cout.precision conversion warning.<br>
     ENH: Improve itkBayesianClassifiertImageFil<wbr>ter coverage.<br>
     ENH: Improve itkPadLabelMapFilter coverage.<br>
     ENH: Improve itkJoinSeriesImageFilter coverage.<br>
     ENH: Improve the itkPasteImageFilter coverage.<br>
     ENH: Improve MeanImageFilter coverage.<br>
     COMP: Address std::cout.precision conversion warning.<br>
     ENH: Improve TernaryMagnitudeImageFilter coverage.<br>
     ENH: Improve FFTConvolutionImageFilter coverage.<br>
     DOC: Fix class documentation in ternary magnitude filters.<br>
     ENH: Improve ConstrainedValueDifferenceImag<wbr>eFilter coverage.<br>
     ENH: Improve AndImageFilter coverage.<br>
     ENH: Add baseline test to itkTernaryMagnitudeImageFilter<wbr>.<br>
     ENH: Use MD5 comparison framework in baseline test.<br>
     ENH: Improve itk::VectorRescaleIntensityIma<wbr>geFilter coverage.<br>
     STYLE: Improve the itkVectorRescaleIntensityImage<wbr>Filter style.<br>
     ENH: Print missing ivar in filter PrintSelf method.<br>
     ENH: Improve itkComplexToImaginaryFilter coverage.<br>
     ENH: Improve itkComplexToPhaseImageFilter coverage.<br>
     ENH: Improve itkComplexToModulusImageFilter coverage.<br>
     ENH: Improve itkComplexToRealImageFilter coverage.<br>
     ENH: Improve itkVectorResampleImageFilter coverage.<br>
     ENH: Add GetTransform method.<br>
     ENH: Improve itkConstrainedValueAdditionIma<wbr>geFilter coverage.<br>
     ENH: Improve itkModulusImageFilter coverage.<br>
     ENH: Improve itkLog10ImageFilter coverage.<br>
     ENH: Imporve itkMagnitudeAndPhaseToComplexI<wbr>mageFilter coverage.<br>
     ENH: Improve itkLogImageFilter coverage.<br>
     ENH: Improve itkInvertIntensityImageFilter coverage.<br>
     STYLE: Improve itkInvertIntensityImageFilter style.<br>
     DOC: Add missing doc to itkInvertIntensityImageFilter.<br>
     STYLE: Improve itkIntensityWindowingImageFilt<wbr>er style.<br>
     STYLE: Use initialization lists.<br>
     ENH: Improve itkIntensityWindowingImageFilt<wbr>er coverage.<br>
     ENH: Improve itkNaryMaximumImageFilter coverage.<br>
     COMP: Fix std::precision type casting warning.<br>
     ENH: Improve itkPointSetToPointSetRegistrat<wbr>ionMethod coverage.<br>
     STYLE: Improve the itkPointSetToPointSetImageRegi<wbr>strationMethod style.<br>
     ENH: Remove SmartPointers being explicitly initialized to null.<br>
     STYLE: Improve the itkPointSetToImageRegistration<wbr>Method style.<br>
     ENH: Improve itkPointSetToImageRegistration coverage.<br>
     STYLE: Change the name of the itkPointSetToImageRegistration<wbr>Method test.<br>
     STYLE: Improve itkVectorResampleImageFilter style.<br>
     STYLE: Improve the itkAntiAliasBinaryImageFilter style.<br>
     ENH: Improve trigonometric function filters' coverage.<br>
     STYLE: Remove test names from std::out messages.<br>
     ENH: Improve Boolean Algebra ImageFilters coverage.<br>
     STYLE: Improve the EuclideanDistancePointMetric style.<br>
     ENH: Improve itkSigmoidImageFilter coverage.<br>
     STYLE: Improve itkCropImageFilter style.<br>
     ENH: Improve itkCropImageFilter coverage.<br>
     ENH: Improve RGBToLuminanceImageFilter and Adaptor coverage.<br>
     ENH: Improve itkRescaleIntensityImageFilter coverage.<br>
     ENH: Improve the itkMatrixSelectionImageFilter coverage.<br>
     ENH: Improve itkTanImageFilter and Adaptor coverage.<br>
     ENH: Increase itkSqrtImageFilter and Adaptor coverage.<br>
     ENH: Increase itkTernaryOperatorImageFilter coverage.<br>
     ENH: Increase itkSymmetricEigenAnalysisImage<wbr>Filter coverage.<br>
     STYLE: Improve itkScalarImagekmeansImageFilte<wbr>r style.<br>
     STYLE: Conform to TEST_SET_GET_VALUE definition.<br>
     BUG: Fix uninitialized variable due to dynamic analysis defect.<br>
     BUG: Fix uninitialized variable defect reported by valgrind.<br>
     ENH: Improve the itkPointSetToPointSetRegistrat<wbr>ionTest.<br>
     ENH: Improve the itkPointSetToImageRegistration<wbr>Test.<br>
     ENH: Increas BinaryMagnitudeImageFilter coverage.<br>
     STYLE: Remove test name from std output.<br>
     ENH: Increase MagnitudeImageFilter coverage.<br>
     BUG: Fix uninitialized variable defect reported by valgrind.<br>
     BUG: Fix Superclass name in RTTI.<br>
     STYLE: Improve itkFrustumSpatialFunction style.<br>
     STYLE: Improve the itkConicShellInteriorExteriorS<wbr>patialFunction style.<br>
     BUG: Fix Superclass template argument list.<br>
     STYLE: Improve the itkTorusInteriorExteriorSpatia<wbr>lFunction style.<br>
     STYLE: Improve the itkCheckerBoardImageFilter class style.<br>
     ENH: Improve the itk::LabelVotingImageFilter coverage.<br>
     ENH: Improve itkCheckerBoardImageFilter coverage.<br>
     STYLE: Improve itk::LabelVotingImageFilter style.<br>
     STYLE: Improve the itkHoughTransform2DCirclesImag<wbr>eFilter style.<br>
     ENH: Add test for itk::FrustumSpatialFunction class.<br>
     ENH: Improve itkConnectedThresholdImageFilt<wbr>er coverage.<br>
     STYLE: Improve itkConnectedThresholdImageFilt<wbr>er style.<br>
     BUG: Fix FrustumSpatialFunction internal precision conversion.<br>
     COMP: Fix implicit conversion warning.<br>
     STYLE: Improve itkThresholdImageFilter style.<br>
     ENH: Add test for itk::TorusInteriorExteriorSpat<wbr>ialFunction.<br>
     BUG: Fix Superclass template argument list.<br>
     ENH: Improve itkUnsharpMaskingImageFilter implementation.<br>
     ENH: Improve the itkUnsharpMaskingImageFilter coverage.<br>
     ENH: Fix UnsharpMaskingImageFilter test inconsistencies.<br>
     BUG: Add missing itkTypeMacro.<br>
     DOC: Document the member variables.<br>
     BUG: Fix the itkImageSource RTTI class name,<br>
     STYLE: Improve itkLabelImageGaussianInterpola<wbr>teImageFunction style.<br>
     ENH: Finish itkGaussianInterpolateImageFun<wbr>ction PrintSelf.<br>
     STYLE: Improve itkLabelOverlapMeasurementImag<wbr>eFilter style.<br>
<br>
KWSys Robot (6):<br>
     KWSys 2016-06-30 (96f06c8e)<br>
     KWSys 2016-10-23 (b630d2f5)<br>
     KWSys 2016-11-03 (37306a1c)<br>
     KWSys 2016-11-08 (2b3e2b1c)<br>
     KWSys 2016-11-09 (18c65411)<br>
     KWSys 2016-11-21 (cb55cf5a)<br>
<br>
Maeliss Jallais (1):<br>
     BUG: Add unsigned and signed short to the wrapping of vnl_matrix<br>
<br>
Matthew McCormick (85):<br>
     PERF: Simplify HilbertPath numberOfPathVertices computation.<br>
     BUG: CID 1355469 NNetClassifierTest4 unintended integer division.<br>
     BUG: Update Cuberille Remote for version check fix.<br>
     ENH: Bump ITK version to 4.11.0.<br>
     BUG: Fix HDF5ImageIO type information.<br>
     BUG: Fix H5File memory leak in HDF5ImageIO.<br>
     DOC: Collect Francois Budin's contributions in .mailmap<br>
     BUG: Limit WRAP_ITK_MODULES when building externally<br>
     STYLE: Improvements to ResourceProbe report output.<br>
     ENH: Add a useTabs argument to ResourceProbe::Report.<br>
     ENH: Add standard error measure to the ResourceProbe<br>
     ENH: Add itk_python_add_test function.<br>
     BUG: Remove VNL file from subtree merge.<br>
     COMP: Fix wrapping with a space in the Python include path<br>
     BUG: Fix PermuteAxesImageFilter pipeline method visibility<br>
     BUG: Initialize PermuteOrder and FlipAxes in OrientImageFilter<br>
     BUG: ResampleImageFilter honor isInside output of the transform method<br>
     COMP: Avoid recursive include of itkMath.h<br>
     COMP: Fix VXL header installation locations<br>
     BUG: ClampImageFilterTest for older GCC, InPlaceOn<br>
     DOC: Add CONTRIBUTING.md file to the top level.<br>
     COMP: Update VariationalRegistration to address Doxygen warnings<br>
     BUG: Compiler detections file installed into ITK build tree location<br>
     COMP: Do not use string(TIMESTAMP.<br>
     COMP: Remove HDF5 -std=c99 for C++ files<br>
     BUG: Do not build HDF5 static library with a shared build<br>
     ENH: Add PerformanceBenchmarking Remote Module<br>
     COMP: Remove duplicate wrappings for ResampleImageFilter<br>
     BUG: Put Python test output files in the build tree<br>
     BUG: Improve HDF5ImageIO::CloseDataSet name<br>
     COMP: Use add_python_test PythonLazyLoadingImage<br>
     COMP: Address missing override it itkFactoryTestLib.cxx<br>
     BUG: Index,Size,Offset constructors present in Python with C++11<br>
     COMP: Address missing override it itkFactoryTestLib.cxx<br>
     BUG: PerformanceBenchmarking as EXCLUDE_FROM_DEFAULT<br>
     ENH: Bump SetupForDevelopment version<br>
     BUG: Add missing ZLib deflate support to HDF5<br>
     BUG: Address memory leak, remove NumPy build dep in BridgeNumPy<br>
     COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory<br>
     COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory<br>
     BUG: Check when ITK_WRAP_VECTOR_COMPONENTS doesn't include<br>
ITK_WRAP_IMAGE_DIMS<br>
     BUG: RichardsonLucyDeconvolutionIma<wbr>geFilter with non-null input<br>
Image Origin<br>
     BUG: Fix inconsistent Twister start with Initialize(seed) and SetSeed(seed)<br>
     BUG: Do not hard code CMake scripts in HDF5<br>
     COMP: Workaround Emscripten ITKCommon test build failure<br>
     COMP: Do embed fancy HDF5 libsettings with Emscripten<br>
     COMP: Add missing H5T_patch_vlen_file declaration<br>
     ENH: Bump CastXML to 2016-10-11 master.<br>
     COMP: Workaround Emscripten ITKCommon test build failure<br>
     BUG: Swap CastXML hashes for Mac OSX and Windows<br>
     ENH: Sync ExternalData.cmake with upstream CMake 3.6.2<br>
     COMP: Fix VNL tests when cross-compiling<br>
     ENH: ExternalData multi-algorithm support<br>
     ENH: ExternalData support for <a href="http://data.kitware.com" rel="noreferrer" target="_blank">data.kitware.com</a><br>
     BUG: Install missing H5pubconf.h<br>
     BUG: Use SpacePrecisionType in TileImageFilter<br>
     BUG: Use internal ExternalData_Add_Target<br>
     ENH: Run .sha512, .md5 simultaneous modification pre-commit check<br>
     BUG: Correct CastXML Windows binary<br>
     BUG: Support non-zero Index in LevelSetNeighborhoodExtractor<br>
     ENH: Add ArchiveTestingDataOnGirder.py<br>
     BUG: Correct AtanRegularizationHeavisideSte<wbr>pFunction derivative<br>
     ENH: Add Utilities/Maintenance/ContentL<wbr>inkSynchronization.sh<br>
     BUG: Remove extra HessianToObjectness content links<br>
     ENH: Wrap SpatialFunction float types with ITK_WRAP_float<br>
     BUG: Bump PerformanceBenchmarking to 2016-11-04<br>
     BUG: itk_python_expression_add_test too many quotes.<br>
     ENH: Wrap VectorImage with complex real pixel types<br>
     ENH: Bump PerformanceBenchmarking to 2016-11-07<br>
     BUG: Do not assume zero Index in ReinitializeLevelSetImageFilte<wbr>r<br>
     ENH: Create itk_module_add_library macro<br>
     BUG: Update computeCodeCoverageLocally.sh for KWStyle addition<br>
     COMP: Install a newer version of CMake on CircleCI<br>
     ENH: Use GitHub Pages as the first ExternalData resource<br>
     ENH: Add tests to demonstrate OSX dynamic_cast failure<br>
     BUG: Use random seed with for MersenneTwisterRandomVariateGe<wbr>nerator.<br>
     BUG: Enable program global timestamp<br>
     BUG: Set random number seed in Mattes metric test<br>
     BUG: Notify builder that ITK_DYNAMIC_LOADING is required with wrapping<br>
     BUG: Define ITK_DYNAMIC_LOADING before ITK_WRAP_PYTHON<br>
     BUG: Set random number seed mutual information metric tests<br>
     BUG: Wrap std::vector< itk.Point ><br>
     BUG: Fix wrapping of LandmarkBasedTransformInitiali<wbr>zer<br>
     BUG: Rename UnsharpMaskingImageFilter to UnsharpMaskImageFilter<br>
     DOC: Add Dženan Zukić to .mailmap<br>
<br>
Max Smolens (4):<br>
     COMP: CID-1266557 StatisticsLabelMapFilter uninitialized scalar field<br>
     BUG: CID-1355438 QuadEdgeTest1 resource leaks<br>
     COMP: CID-1355472 MIRegistrationFunction unused value<br>
     COMP: Fix link errors for VNL template instantiations on Windows<br>
<br>
Mayeul Chassagnard (7):<br>
     BUG: Test added and error fixed in HDF5ImageIO<br>
     ENH: Update add_library TO itk_module_add_library<br>
     COMP: Set Policy CMP0023 target_link_libraries for<br>
Modules/ThirdParty/VNLI...<br>
     BUG: Add ITK_TEMPLATE_EXPORT to template classes<br>
     BUG: Fix errors linked to dyn_cast merge<br>
     BUG: Restore old ITKModule_TEMPLATE_EXPORT specification for classes<br>
     BUG: dash3win7 dashboard build error unresolved external symbol<br>
<br>
Michka Popoff (3):<br>
     ENH: Update UpdatepygccxmlFromUpstream.sh for v1.8.0<br>
     ENH: Update igenerator.py for pygccxml v1.8.0<br>
     COMP: Use pygccxml's public API for apply definitions<br>
<br>
Pierre Barbier de Reuille (2):<br>
     COMP: Fix function naming error when using FFTWD<br>
     COMP: Fix function naming error when using FFTWD<br>
<br>
Sean McBride (1):<br>
     COMP: Bypass HDF5 bugs under TSan<br>
<br>
Simon Rit (2):<br>
     COMP: remove C++11 compiler warning for CUDA compilations<br>
     COMP: remove C++11 compiler warning for CUDA compilations<br>
<br>
Somesh Kashyap (2):<br>
     BUG: Override TransformCategoryType for<br>
AzimuthElevationToCartesianTra<wbr>nsform<br>
     BUG: -Added test case for  itkAzimuthElevationToCartesian<wbr>Transform<br>
<br>
Sumedha Singla (1):<br>
     ENH: Updated the git tag for ITK-Minimal-Path-Extraction remote module<br>
<br>
Taylor Braun-Jones (4):<br>
     COMP: Skip path length checks if ITK_SKIP_PATH_LENGTH_CHECKS is enabled<br>
     COMP: Fix truncation from double to float warning<br>
     DOC: Fix incorrect itkFactorylessNewMacro documentation<br>
     COMP: Only include the headers for required OpenCV modules<br>
<br>
Thien Nguyen (1):<br>
     PERF: SmapsFileParser unnecessary dynamic_cast<br>
<br>
VXL Maintainers (4):<br>
     VNL 2016-05-15 (14f97ab4)<br>
     VNL 2016-06-22 (23a93adb)<br>
     VNL 2016-06-29 (d62a2d70)<br>
     VNL 2016-07-06 (acfa62cc)<br>
<br>
Vladimir S. FONOV (1):<br>
     COMP: Build against GCC 5.3.1<br>
<br>
Zach Williamson (2):<br>
     ENH: Update Remote Module Tags<br>
     BUG: Fix Python Wrappings in C++11<br>
<br>
Ziv Yaniv (1):<br>
     BUG: Metric sampling percentage accepted values outside (0.0, 1.0].<br>
<br>
<br>
ITK Software Guide Changes<br>
------------------------------<wbr>----------<br>
<br>
Matt McCormick (8):<br>
     DOC: Move the location for obtaining the software<br>
     DOC: Remove reference to ITKApps<br>
     ENH: Bump ITK ExternalProject version to 2016-11-02 master<br>
     DOC: Document the ITK module registry<br>
     ENH: Bump ITK ExternalProject version to v4.11rc01 master<br>
     DOC: Update CMake hyperlinks<br>
     DOC: Update minimum required CMake version to 2.8.9<br>
     DOC: Add section on static and shared libraries.<br>
<br>
<br>
ITK Sphinx Examples Changes<br>
------------------------------<wbr>-------------<br>
<br>
Matt McCormick (6):<br>
     BUG: Use GDCM ITK module name<br>
     ENH: Rename ReadDICOMSeriesAndWrite3DImage<br>
     BUG: Add tests for ReadDICOMSeriesAndWrite3DImage<br>
     ENH: Bump ITK Superbuild version to 2016-09-20 master<br>
     ENH: Add Python version of ReadDICOMSeriesAndWrite3DImage<br>
     ENH: Add Python version of CreateAnRGBImage<br>
<br>
Michka Popoff (5):<br>
     ENH: Use same Python interpreter as ITK for wrapping tests<br>
     BUG: Fix ResampleAnImage example (Python3)<br>
     ENH: Add Python example for ApplyAFilterOnlyToASpecifiedRe<wbr>gionOfAnImage<br>
     ENH: Add 7 Python examples to Core/Common<br>
     ENH: Add BoundingBoxOfAPointSet Python example<br>
<br>
<br>
------------------------------<wbr>-----------------------<br>
Errors or omissions? Please fix them here:<br>
<br>
<br>
<a href="https://docs.google.com/document/d/1UQAh7_mDjps0GZYX62biTwFrA54KRvf__4oeT0ymzZg/edit" rel="noreferrer" target="_blank">https://docs.google.com/docume<wbr>nt/d/1UQAh7_mDjps0GZYX62biTwFr<wbr>A54KRvf__4oeT0ymzZg/edit</a><br>
______________________________<wbr>_________________<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" 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" rel="noreferrer" target="_blank">http://www.kitware.com/opensou<wbr>rce/opensource.html</a><br>
<br>
Kitware offers ITK Training Courses, for more information visit:<br>
<a href="http://kitware.com/products/protraining.php" rel="noreferrer" target="_blank">http://kitware.com/products/pr<wbr>otraining.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" rel="noreferrer" target="_blank">http://www.itk.org/Wiki/ITK_FA<wbr>Q</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/insight-developers" rel="noreferrer" target="_blank">http://public.kitware.com/mail<wbr>man/listinfo/insight-developer<wbr>s</a><br>
</blockquote></div><br></div>
</div></div><br>______________________________<wbr>_______<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" 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" rel="noreferrer" target="_blank">http://www.kitware.com/<wbr>opensource/opensource.html</a><br>
<br>
Kitware offers ITK Training Courses, for more information visit:<br>
<a href="http://www.kitware.com/products/protraining.php" rel="noreferrer" target="_blank">http://www.kitware.com/<wbr>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" rel="noreferrer" target="_blank">http://www.itk.org/Wiki/ITK_<wbr>FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/insight-users" rel="noreferrer" target="_blank">http://public.kitware.com/<wbr>mailman/listinfo/insight-users</a><br>
<br></blockquote></div><br></div>