mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-28 04:39:13 +08:00
1b30c68d28
# The first commit's message is: Update equalize_adapthist to use new view_as_windows Try rbase again Update equalize_adapthist to use new view_as_windows Fix relative imports # This is the 2nd commit message: Style fixes # This is the 3rd commit message: Add a deprecation warning and add to api_changes.txt # This is the 4th commit message: Update TODO and switch to 0.13 deprecation # This is the 5th commit message: Preserve the current API as much as possible and defer to 0.14 # This is the 6th commit message: Move the new kwarg to the very end # This is the 7th commit message: Clarify deprecation warning # This is the 8th commit message: Update to use row/col in clahe # This is the 9th commit message: Update docstring # This is the 10th commit message: Use optimal_step to set up view_as_windows
40 lines
1.4 KiB
Plaintext
40 lines
1.4 KiB
Plaintext
Version 0.12
|
|
------------
|
|
- ``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.
|
|
|
|
Version 0.11
|
|
------------
|
|
- 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)``.
|
|
|
|
Version 0.10
|
|
------------
|
|
- Removed ``skimage.io.video`` functionality due to broken gstreamer bindings
|
|
|
|
Version 0.9
|
|
-----------
|
|
- No longer wrap ``imread`` output in an ``Image`` class
|
|
- Change default value of `sigma` parameter in ``skimage.segmentation.slic``
|
|
to 0
|
|
- ``hough_circle`` now returns a stack of arrays that are the same size as the
|
|
input image. Set the ``full_output`` flag to True for the old behavior.
|
|
- The following functions were deprecated over two releases:
|
|
`skimage.filter.denoise_tv_chambolle`,
|
|
`skimage.morphology.is_local_maximum`, `skimage.transform.hough`,
|
|
`skimage.transform.probabilistic_hough`,`skimage.transform.hough_peaks`.
|
|
Their functionality still exists, but under different names.
|
|
|
|
Version 0.4
|
|
-----------
|
|
- Switch mask and radius arguments for ``median_filter``
|
|
|
|
Version 0.3
|
|
-----------
|
|
- Remove ``as_grey``, ``dtype`` keyword from ImageCollection
|
|
- Remove ``dtype`` from imread
|
|
- Generalise ImageCollection to accept a load_func
|