From 27d46c93b5c914bff0fe71984a20b698ae87de2a Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Tue, 3 Mar 2015 01:54:24 -0800 Subject: [PATCH] Add 0.11 release notes --- CONTRIBUTORS.txt | 4 +- RELEASE.txt | 2 +- doc/release/release_0.10.txt | 6 +- doc/release/release_0.11.txt | 96 ++++++++++++++++++++++++++++++++ doc/release/release_dev.txt | 10 +--- doc/release/release_template.txt | 2 + 6 files changed, 108 insertions(+), 12 deletions(-) create mode 100644 doc/release/release_0.11.txt diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index b8ecee0e..bc58df84 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -211,5 +211,7 @@ Adaptation of ImageJ Autothresholder.Li, fixed Qhull error QH6228 - Mike Sarahan - Sub-pixel registration + Sub-pixel shift registration +- Jim Fienup, Alexander Iacchetta + In-depth review of sub-pixel shift registration diff --git a/RELEASE.txt b/RELEASE.txt index 78f2d0b2..66860662 100644 --- a/RELEASE.txt +++ b/RELEASE.txt @@ -7,7 +7,7 @@ How to make a new release of ``skimage`` 1. Review and cleanup ``doc/release/release_dev.txt`` - - To show a list of contributors and changes, run + - To show a list of merges and contributors, run ``doc/release/contribs.py ``. 2. Rename to ``doc/release/release_X.txt`` diff --git a/doc/release/release_0.10.txt b/doc/release/release_0.10.txt index e2c3b34d..1c14e781 100644 --- a/doc/release/release_0.10.txt +++ b/doc/release/release_0.10.txt @@ -80,7 +80,7 @@ surname: - Jaime Frio - Jostein Bø Fløystad - Neeraj Gangwar -- Christopher Gohlke +- Christoph Gohlke - Michael Hansen - Almar Klein - Jeremy Metz @@ -91,13 +91,13 @@ surname: - Thomas Robitaille - Michal Romaniuk - Johannes L. Schönberger -- Steven Sylvester +- Steven Silvester - Julian Taylor - Gregor Thalhammer - Matthew Trentacoste - Siva Prasad Varma - Guillem Palou Visa - Stefan van der Walt -- Josh Warner +- Joshua Warner - Tony S Yu - radioxoma diff --git a/doc/release/release_0.11.txt b/doc/release/release_0.11.txt new file mode 100644 index 00000000..30b358d9 --- /dev/null +++ b/doc/release/release_0.11.txt @@ -0,0 +1,96 @@ +Announcement: scikit-image 0.11.0 +================================= + +We're happy to announce the release of scikit-image v0.11.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 + +Highlights +---------- +For this release, we merged over 200 pull requests with bug fixes, +cleanups, improved documentation and new features. Highlights +include: + +- Region Adjacency Graphs + - Color distance RAGs (#1031) + - Threshold Cut on RAGs (#1031) + - Similarity RAGs (#1080) + - Normalized Cut on RAGs (#1080) + - RAG drawing (#1087) + - Hierarchical merging (#1100) +- Sub-pixel shift registration (#1066) +- Non-local means denoising (#874) +- Sliding window histogram (#1127) +- More illuminants in color conversion (#1130) +- Handling of CMYK images (#1360) +- `stop_probability` for RANSAC (#1176) +- Li thresholding (#1376) +- Signed edge operators (#1240) +- Full ndarray support for `peak_local_max` (#1355) +- Improve conditioning of geometric transformations (#1319) +- Standardize handling of multi-image files (#1200) +- Ellipse structuring element (#1298) +- Multi-line drawing tool (#1065), line handle style (#1179) +- Point in polygon testing (#1123) +- Rotation around a specified center (#1168) +- Add `shape` option to drawing functions (#1222) +- Faster regionprops (#1351) +- `skimage.future` package (#1365) +- More robust I/O module (#1189) + +API Changes +----------- +- The ``skimage.filter`` subpackage has been renamed to ``skimage.filters``. +- Some edge detectors returned values greater than 1--their results are now + appropriately scaled with a factor of ``sqrt(2)``. + +Contributors to this release +---------------------------- +(Listed alphabetically by last name) + +- Fedor Baart +- Vighnesh Birodkar +- François Boulogne +- Nelson Brown +- Alexey Buzmakov +- Julien Coste +- Phil Elson +- Adam Feuer +- Jim Fienup +- Geoffrey French +- Emmanuelle Gouillart +- Charles Harris +- Jonathan Helmus +- Alexander Iacchetta +- Ivana Kajić +- Kevin Keraudren +- Almar Klein +- Gregory R. Lee +- Jeremy Metz +- Stuart Mumford +- Damian Nadales +- Pablo Márquez Neila +- Juan Nunez-Iglesias +- Rebecca Roisin +- Jasper St. Pierre +- Jacopo Sabbatini +- Michael Sarahan +- Salvatore Scaramuzzino +- Phil Schaf +- Johannes Schönberger +- Tim Seifert +- Arve Seljebu +- Steven Silvester +- Julian Taylor +- Matěj Týč +- Alexey Umnov +- Pratap Vardhan +- Stefan van der Walt +- Joshua Warner +- Tony S Yu diff --git a/doc/release/release_dev.txt b/doc/release/release_dev.txt index 77c8d102..1123eb77 100644 --- a/doc/release/release_dev.txt +++ b/doc/release/release_dev.txt @@ -14,13 +14,9 @@ http://scikit-image.org New Features ------------ -Region Adjacency Graphs - - Color distance RAGs (#1031) - - Threshold Cut on RAGs (#1031) - - Similarity RAGs (#1080) - - Normalized Cut on RAGs (#1080) - - RAG Drawing (#1087) -Sliding Windowed Histogram (#1127) + + + Improvements ------------ diff --git a/doc/release/release_template.txt b/doc/release/release_template.txt index 1123eb77..2d200c7c 100644 --- a/doc/release/release_template.txt +++ b/doc/release/release_template.txt @@ -34,3 +34,5 @@ Deprecations ------------ +Contributors to this release +----------------------------