forked from scikit-image/scikit-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TODO.txt
56 lines (53 loc) · 2.84 KB
/
TODO.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Remember to list any API changes below in `doc/source/api_changes.txt`.
Version 0.14
------------
* Finalize ``skimage.future.graph`` API.
* Remove deprecated ``ntiles_*` kwargs in ``equalize_adapthist``.
* Remove deprecated ``skimage.restoration.nl_means_denoising``.
* Remove deprecated ``skimage.filters.gaussian_filter``.
* Remove deprecated ``skimage.filters.gabor_filter``.
* Remove deprecated ``skimage.measure.LineModel`` and
add an alias LineModel = LineModelND. While the deprecated LineModel has for
parameters `(dist, theta)`, LineModelND has the more general parameters
`(origin, direction)`.
* Remove deprecated old syntax support for ``skimage.transform.integrate``.
* Remove deprecated ``skimage.measure.structural_similarity`` alias and
deprecation warning test for this alias.
* Remove deprecated ``sigma_range`` kwargs in ``skimage.restoration.denoise_bilateral``
and corresponding tests.
* Remove deprecation error on the usage of ``ntiles_x``, ``ntiles_y`` in
``skimage.exposure.equalize_adapthist`` and the corresponding test.
* Remove the freeimage plugin shim to imageio.
* Remove deprecated `normalise` and corresponding test for ``skimage.feature.hog``.
* Remove deprecated ``marching_cubes`` from ``skimage.measure``.
Version 0.15
------------
* Finalize ``skimage.future.manual_segmentation`` API.
* In ``skimage.util.dtype_limits``, set default behavior of `clip_negative` to `False`.
* In ``skimage.transform.radon``, set default behavior of `circle` to `True`.
* In ``skimage.transform.iradon``, set default behavior of `circle` to `True`.
* In ``skimage.transform.swirl``, set default behavior of `mode` to `reflect`.
* In ``skimage.restoration.denoise_bilateral``, set default behavior of
`multichannel` to False
* In ``skimage.restoration.denoise_nl_means``, set default behavior of
`multichannel` to False
* Change the default value of `block_norm` in ``skimage.feature.hog` to L2-Hys,
update the reference .npy in ``skimage.data`` and `skimage/feature/tests/test_hog.py`.
* Remove deprecated function ``threshold_adaptive`` in
``skimage/filters/thresholding.py``.
* In ``skimage.transform.resize``, set default value of ``mode`` to
``'reflect'``.
* In ``skimage.transform.rescale``, set default value of ``mode`` to
``'reflect'``.
Version 0.16
------------
* In ``skimage.transform.resize``, ``skimage.transform.pyramid_reduce``,
``skimage.transform.pyramid_laplacian``,
``skimage.transform.pyramid_gaussian``,
``skimage.transform.pyramid_expandset``, set default value of
``multichannel`` to False
* Remove ``_multichannel_default`` from ``skimage.transform._warps.py``, and no
longer call it from within the ``resize`` or ``pyramid_*`` transforms.
* Remove checks for the ``multichannel`` deprecation warnings in several tests
in ``skimage.transform.tests.test_pyramids.py`` and
``skimage.transform.tests.test_warps.py``.