forked from scikit-image/scikit-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TODO.txt
55 lines (51 loc) · 2.58 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
Remember to list any API changes below in `doc/source/api_changes.txt`.
Version 0.14
------------
* Finalize ``skimage.future.graph`` API.
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'``.
* Remove deprecated ``skimage.util.montage2d`` and corresponding tests.
* In ``skimage.transform.resize`` change default argument from
``anti_aliasing=None`` to ``anti_aliasing=True``.
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``.
* Remove deprecated argument ``visualise`` from function skimage.feature.hog
* Remove deprecated module ``skimage.novice``
* In ``skimage.measure._regionprops``, remove all references to
``coordinates=``, ``_xycoordinates``, and ``_use_xy_warning``.
* In ``skimage.measure.moments_central``, remove ``cc`` and ``**kwargs``
arguments.
* In ``skimage.morphology.remove_small_holes``, remove ``min_size`` argument.
Other
-----
* Remove legacy pretty printing workaround for ``pytest`` in ``conftest.py``
once minimal required ``numpy`` is set to >= 1.14.0.
* Remove deprecated ``Hxx, Hxy, Hyy`` API of ``hessian_matrix_eigvals`` in
``skimage.feature.corner``.