Skip to content

Commit 7fb9926

Browse files
🐛 Add Warning for VahadaneExtractor Algorithm Instability (TissueImageAnalytics#871)
- Adds a warning to the `VahadaneExtractor` to inform users about the algorithm's instability due to changes in the dictionary learning algorithm in `scikit-learn versions > 0.23.0 (see issue TissueImageAnalytics#382)`. - The docstrings are updated accordingly to reflect this warning. - No other functionality is altered. --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 12d435e commit 7fb9926

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

tests/test_stainnorm.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,9 @@ def test_macenko_normalize(source_image: Path, norm_macenko: Path) -> None:
148148
assert np.mean(np.absolute(macenko_img / 255.0 - transform / 255.0)) < 1e-2
149149

150150

151-
def test_vahadane_normalize(source_image: Path, norm_vahadane: Path) -> None:
151+
def test_vahadane_normalize(
152+
source_image: Path, norm_vahadane: Path, caplog: pytest.LogCaptureFixture
153+
) -> None:
152154
"""Test for stain normalization with stain matrix from Vahadane et al."""
153155
source_img = imread(Path(source_image))
154156
target_img = stain_norm_target()
@@ -158,7 +160,7 @@ def test_vahadane_normalize(source_image: Path, norm_vahadane: Path) -> None:
158160
norm = get_normalizer("vahadane")
159161
norm.fit(target_img) # get stain information of target image
160162
transform = norm.transform(source_img) # transform source image
161-
163+
assert "Vahadane stain extraction/normalization algorithms" in caplog.text
162164
assert np.shape(transform) == np.shape(source_img)
163165
assert np.mean(np.absolute(vahadane_img / 255.0 - transform / 255.0)) < 1e-1
164166

tiatoolbox/tools/stainextract.py

+17-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import numpy as np
66
from sklearn.decomposition import DictionaryLearning
77

8+
from tiatoolbox import logger
89
from tiatoolbox.utils.misc import get_luminosity_tissue_mask
910
from tiatoolbox.utils.transforms import rgb2od
1011

@@ -238,6 +239,13 @@ class VahadaneExtractor:
238239
This class contains code inspired by StainTools
239240
[https://github.com/Peter554/StainTools] written by Peter Byfield.
240241
242+
.. warning::
243+
Vahadane stain extraction/normalization algorithms are unstable
244+
after the update to `dictionary learning` algorithm in
245+
scikit-learn > v0.23.0 (see issue #382). Please be advised and
246+
consider using other stain extraction (normalization) algorithms
247+
or toolboxes, such as https://github.com/CielAl/torch-staintools
248+
241249
Args:
242250
luminosity_threshold (float):
243251
Threshold used for tissue area selection.
@@ -259,6 +267,14 @@ def __init__(
259267
regularizer: float = 0.1,
260268
) -> None:
261269
"""Initialize :class:`VahadaneExtractor`."""
270+
# Issue a warning about the algorithm's stability
271+
logger.warning(
272+
"Vahadane stain extraction/normalization algorithms are unstable "
273+
"after the update to `dictionary learning` algorithm in "
274+
"scikit-learn > v0.23.0 (see issue #382). Please be advised and "
275+
"consider using other stain extraction (normalization) algorithms.",
276+
stacklevel=2,
277+
)
262278
self.__luminosity_threshold = luminosity_threshold
263279
self.__regularizer = regularizer
264280

@@ -267,7 +283,7 @@ def get_stain_matrix(self: VahadaneExtractor, img: np.ndarray) -> np.ndarray:
267283
268284
Args:
269285
img (:class:`numpy.ndarray`):
270-
Input image used for stain matrix estimation
286+
Input image used for stain matrix estimation.
271287
272288
Returns:
273289
:class:`numpy.ndarray`:

0 commit comments

Comments
 (0)