Merge tag 'v0.10.1' into debian

* tag 'v0.10.1':
  Release v0.10.1
  Add release notes for 0.10
  Fix markup in DEPENDS
  Update MANIFEST to include all test data
This commit is contained in:
Yaroslav Halchenko
2014-08-27 03:59:31 -04:00
5 changed files with 107 additions and 4 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ functionality is only available with the following installed:
walker segmentation.
* `Pillow <https://pypi.python.org/pypi/Pillow>`__
(or <`PIL http://www.pythonware.com/products/pil/>`__)
(or `PIL <http://www.pythonware.com/products/pil/>`__)
The ``Pillow`` library (or equivalently ``PIL``) is used for Input/Output.
* `Astropy <http://www.astropy.org>`__ is required to use the FITS io plug-in.
+1 -1
View File
@@ -3,7 +3,7 @@ include setup*.py
include MANIFEST.in
include *.txt
include Makefile
recursive-include skimage *.pyx *.pxd *.pxi *.py *.c *.h *.ini *.md5
recursive-include skimage *.pyx *.pxd *.pxi *.py *.c *.h *.ini *.md5 *.npy *.txt
recursive-include skimage/data *
include doc/Makefile
+1 -1
View File
@@ -1,5 +1,5 @@
Name: scikit-image
Version: 0.10.0
Version: 0.10.1
Summary: Image processing routines for SciPy
Url: http://scikit-image.org
DownloadUrl: http://github.com/scikit-image/scikit-image
+103
View File
@@ -0,0 +1,103 @@
Announcement: scikit-image 0.10.0
=================================
We're happy to announce the release of scikit-image v0.10.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
New Features
------------
In addition to many bug fixes, (speed) improvements and new examples, the 118
pull requests (1112 commits) merged for this release include the following new
or improved features (PR number in brackets):
- BRIEF, ORB and CENSURE features (#834)
- Blob Detection (#903)
- Phase unwrapping (#644)
- Wiener deconvolution (#800)
- IPython notebooks in examples gallery (#1000)
- Luv colorspace conversion (#798)
- Viewer overlays (#810)
- ISODATA thresholding (#859)
- A new rank filter for summation (#844)
- Faster MCP with anisotropy support (#854)
- N-d peak finding (`peak_local_max`) (#906)
- `imread_collection` support for all plugins (#862)
- Enforce SLIC superpixels connectivity and add SLIC-zero (#857, #864)
- Correct mesh orientation (for use in external visualizers) in
marching cubes algorithm (#882)
- Loading from URL and alpha support in novice module (#916, #946)
- Equality for regionprops (#956)
API changes
-----------
The following backward-incompatible API changes were made between 0.9 and 0.10:
- Removed deprecated functions in `skimage.filter.rank.*`
- Removed deprecated parameter `epsilon` of `skimage.viewer.LineProfile`
- Removed backwards-compatability of `skimage.measure.regionprops`
- Removed {`ratio`, `sigma`} deprecation warnings of `skimage.segmentation.slic`
and also remove explicit `sigma` parameter from doc-string example
- Changed default mode of random_walker segmentation to 'cg_mg' > 'cg' > 'bf',
depending on which optional dependencies are available.
- Removed deprecated `out` parameter of `skimage.morphology.binary_*`
- Removed deprecated parameter `depth` in `skimage.segmentation.random_walker`
- Removed deprecated logger function in `skimage/__init__.py`
- Removed deprecated function `filter.median_filter`
- Removed deprecated `skimage.color.is_gray` and `skimage.color.is_rgb`
functions
- Removed deprecated `skimage.segmentation.visualize_boundaries`
- Removed deprecated `skimage.morphology.greyscale_*`
- Removed deprecated `skimage.exposure.equalize`
Contributors to this release
----------------------------
This release was made possible by the collaborative efforts of many
contributors, both new and old. They are listed in alphabetical order by
surname:
- Raphael Ackermann
- Ankit Agrawal
- Maximilian Albert
- Pietro Berkes
- Vighnesh Birodkar
- François Boulogne
- Olivier Debeir
- Christoph Deil
- Jaidev Deshpande
- Jaime Frio
- Jostein Bø Fløystad
- Neeraj Gangwar
- Christopher Gohlke
- Michael Hansen
- Almar Klein
- Jeremy Metz
- Juan Nunez-Iglesias
- François Orieux
- Guillem Palou
- Rishabh Raj
- Thomas Robitaille
- Michal Romaniuk
- Johannes L. Schönberger
- Steven Sylvester
- Julian Taylor
- Gregor Thalhammer
- Matthew Trentacoste
- Siva Prasad Varma
- Guillem Palou Visa
- Stefan van der Walt
- Josh Warner
- Tony S Yu
- radioxoma
+1 -1
View File
@@ -17,7 +17,7 @@ MAINTAINER_EMAIL = 'stefan@sun.ac.za'
URL = 'http://scikit-image.org'
LICENSE = 'Modified BSD'
DOWNLOAD_URL = 'http://github.com/scikit-image/scikit-image'
VERSION = '0.10.0'
VERSION = '0.10.1'
PYTHON_VERSION = (2, 5)
DEPENDENCIES = {
'numpy': (1, 6),