From f6f0f7eec46a048c9835d1c4ed3e9b023dac104c Mon Sep 17 00:00:00 2001 From: emmanuelle Date: Thu, 4 Feb 2016 22:54:29 +0100 Subject: [PATCH 1/3] First version of release notes for 0.12 --- doc/release/release_0.12.txt | 151 +++++++++++++++++++++++++++++++++++ doc/release/release_dev.txt | 7 +- 2 files changed, 155 insertions(+), 3 deletions(-) create mode 100644 doc/release/release_0.12.txt diff --git a/doc/release/release_0.12.txt b/doc/release/release_0.12.txt new file mode 100644 index 00000000..1af97cf2 --- /dev/null +++ b/doc/release/release_0.12.txt @@ -0,0 +1,151 @@ +Announcement: scikit-image 0.12.0 +================================= + +We're happy to announce the release of scikit-image v0.12.0! + +scikit-image is an image processing toolbox for SciPy that includes algorithms +for segmentation, geometric transformations, color space manipulation, +analysis, filtering, morphology, feature detection, and more. + +For more information, examples, and documentation, please visit our website: + +http://scikit-image.org + +and our gallery of examples + +http://scikit-image.org/docs/dev/auto_examples/ + +Highlights and new features +--------------------------- + +For this release, we merged over 200 pull requests with bug fixes, +cleanups, improved documentation and new features. Highlights +include: + + +- Parallelization framework using ``dask``:``skimage.util.apply_parallel`` + (#1493) +- Laplacian operator ``filters.laplace`` (#1763) +- Synthetic 2-D and 3-D binary data with rounded blobs (#1485) +- Plugin for ``imageio`` library (#1575) +- Inpainting algorithm (#1804) +- Partial support of 3-D images for ``skimage.measure.regionprops`` + (#1505) +- Multi-block local binary patterns (MB-LBP) for texture classification (#1536) +- Seam Carving (resizing without distortion) (#1459) +- Simple image comparison metrics (PSNR, NRMSE) (#1897) +- Region boundary based region adjacency graphs (RAG) (#1495) +- Construction of RAG from label images (#1826) +- ``morphology.remove_small_holes`` now complements + ``morphology.remove_small_objects`` (#1689) +- Faster cython implementation of ``morphology.skeletonize`` +- More appropriate default weights in + ``restoration.denoise_tv_chambolle`` and ``feature.peak_local_max`` +- Correction of bug in the computation of the Euler characteristic in + ``measure.regionprops``. +- Replace jet by viridis as default colormap +- Alpha layer support for ``color.gray2rgb`` + +Documentation: + +- New organization of gallery of examples in sections +- More frequent update of online documentation + +API Changes +----------- + +- ``equalize_adapthist`` now takes a ``kernel_size`` keyword argument, + replacing the ``ntiles_*`` arguments. +- The functions ``blob_dog``, ``blob_log`` and ``blob_doh`` now return + float arrays instead of integer arrays. +- ``transform.integrate`` now takes lists of tuples instead of integers + to define the window over which to integrate. + +Deprecations +------------ + +- ``filters.gaussian_filter`` has been renamed ``filters.gaussian`` +- ``filters.gabor_filter`` has been renamed ``filters.gabor`` +- ``restoration.nl_means_denoising`` has been renamed + ``restoration.denoise_nl_means`` +- ``measure.LineModel`` was deprecated in favor of ``measure.LineModelND`` +- ``measure.structural_similarity`` has been renamed + ``measure.compare_ssim`` +- ``data.lena`` has been deprecated, and gallery examples use instead the + ``data.astronaut()`` picture. +- The measure of structural similarity (``measure.compare_ssim``) is now + n-dimensional and supports color channels as well. +- We fixed an issue related to incorrect propagation in plateaus in + ``segmentation.watershed`` + +Contributors to this release +---------------------------- +(Listed alphabetically by last name) + +- Ömer Özak +- K.-Michael Aye +- Connelly Barnes +- Sumit Binnani +- Vighnesh Birodkar +- François Boulogne +- Matthew Brett +- Steven Brown +- Arnaud De Bruecker +- Olivier Debeir +- Charles Deledalle +- endolith +- Eric Lubeck +- Victor Escorcia +- Ivo Flipse +- Joel Frederico +- Cédric Gilon +- Christoph Gohlke +- Korijn van Golen +- Emmanuelle Gouillart +- J. Goutin +- Blake Griffith +- M. Hawker +- Jonathan Helmus +- Dhruv Jawali +- Lee Kamentsky +- Kevin Keraudren +- Julius Bier Kirkegaard +- David Koeller +- Gustav Larsson +- Gregory R. Lee +- Guillaume Lemaitre +- Benny Lichtner +- Himanshu Mishra +- Juan Nunez-Iglesias +- Leena P. +- Michael Pacer +- Daniil Pakhomov +- David Perez-Suarez +- Egor Panfilov +- David PS +- Sergio Pascual +- Ariel Rokem +- Nicolas Rougier +- Christian Sachs +- Kshitij Saraogi +- Martin Savc +- Johannes Schönberger +- Arve Seljebu +- Tim Sheerman-Chase +- Scott Sievert +- Steven Silvester +- Alexandre Fioravante de Siqueira +- Daichi Suzuo +- Noah Trebesch +- Pratap Vardhan +- Gael Varoquaux +- Stefan van der Walt +- Joshua Warner +- Josh Warner +- Warren Weckesser +- Daniel Wennberg +- John Wiggins +- Robin Wilson +- Olivia Wilson + + diff --git a/doc/release/release_dev.txt b/doc/release/release_dev.txt index 237b6b57..2d200c7c 100644 --- a/doc/release/release_dev.txt +++ b/doc/release/release_dev.txt @@ -15,9 +15,8 @@ http://scikit-image.org New Features ------------ -- ``skimage.util.apply_parallel`` (#1493) -- Plugin for ``imageio`` library (#1575) -- Inpainting algorithm (#1804) + + Improvements ------------ @@ -35,3 +34,5 @@ Deprecations ------------ +Contributors to this release +---------------------------- From 5bf67460af6a31042a57324bbdd719ebb0eb865e Mon Sep 17 00:00:00 2001 From: emmanuelle Date: Thu, 4 Feb 2016 23:04:13 +0100 Subject: [PATCH 2/3] Minor change in order of contributors --- doc/release/release_0.12.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/release/release_0.12.txt b/doc/release/release_0.12.txt index 1af97cf2..eafb41de 100644 --- a/doc/release/release_0.12.txt +++ b/doc/release/release_0.12.txt @@ -82,7 +82,6 @@ Contributors to this release ---------------------------- (Listed alphabetically by last name) -- Ömer Özak - K.-Michael Aye - Connelly Barnes - Sumit Binnani @@ -117,6 +116,7 @@ Contributors to this release - Benny Lichtner - Himanshu Mishra - Juan Nunez-Iglesias +- Ömer Özak - Leena P. - Michael Pacer - Daniil Pakhomov From 17b43daa56f69248f259a706af281afeab1f964d Mon Sep 17 00:00:00 2001 From: emmanuelle Date: Thu, 4 Feb 2016 23:05:28 +0100 Subject: [PATCH 3/3] Correction in release notes (wrong section) --- doc/release/release_0.12.txt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/doc/release/release_0.12.txt b/doc/release/release_0.12.txt index eafb41de..84a8dfae 100644 --- a/doc/release/release_0.12.txt +++ b/doc/release/release_0.12.txt @@ -45,6 +45,12 @@ include: ``measure.regionprops``. - Replace jet by viridis as default colormap - Alpha layer support for ``color.gray2rgb`` +- The measure of structural similarity (``measure.compare_ssim``) is now + n-dimensional and supports color channels as well. +- We fixed an issue related to incorrect propagation in plateaus in + ``segmentation.watershed`` + + Documentation: @@ -73,10 +79,6 @@ Deprecations ``measure.compare_ssim`` - ``data.lena`` has been deprecated, and gallery examples use instead the ``data.astronaut()`` picture. -- The measure of structural similarity (``measure.compare_ssim``) is now - n-dimensional and supports color channels as well. -- We fixed an issue related to incorrect propagation in plateaus in - ``segmentation.watershed`` Contributors to this release ----------------------------