Skip to content

Commit 5f1cecb

Browse files
authored
πŸ§‘β€πŸ’» Refine PatchExtractor Error Message (TissueImageAnalytics#883)
- Fix Misleading error message TissueImageAnalytics#881
1 parent ca13e7f commit 5f1cecb

File tree

3 files changed

+31
-4
lines changed

3 files changed

+31
-4
lines changed

β€Žtests/test_patch_extraction.py

+20
Original file line numberDiff line numberDiff line change
@@ -663,3 +663,23 @@ def test_mask_based_patch_extractor_ndpi(
663663
len_region1 = len(patches)
664664

665665
assert len_all > len_region2 > len_region1
666+
667+
668+
def test_invalid_points_type() -> None:
669+
"""Test invalid locations_list type for PointsPatchExtractor."""
670+
img = np.zeros((256, 256, 3))
671+
coords = [[10, 10]]
672+
msg = "Please input correct locations_list. "
673+
msg += "Supported types: np.ndarray, DataFrame, str, Path."
674+
with pytest.raises(
675+
TypeError,
676+
match=msg,
677+
):
678+
patchextraction.get_patch_extractor(
679+
"point", input_img=img, locations_list=coords, patch_size=38
680+
)
681+
682+
patches = patchextraction.get_patch_extractor(
683+
"point", input_img=img, locations_list=np.array(coords), patch_size=38
684+
)
685+
assert len(patches) > 0

β€Žtiatoolbox/tools/patchextraction.py

+7-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
from tiatoolbox import logger
1212
from tiatoolbox.utils import misc
13-
from tiatoolbox.utils.exceptions import MethodNotSupportedError
13+
from tiatoolbox.utils.exceptions import FileNotSupportedError, MethodNotSupportedError
1414
from tiatoolbox.utils.visualization import AnnotationRenderer
1515
from tiatoolbox.wsicore import wsireader
1616

@@ -772,7 +772,12 @@ def __init__(
772772
pad_constant_values=pad_constant_values,
773773
within_bound=within_bound,
774774
)
775-
self.locations_df = misc.read_locations(input_table=locations_list)
775+
try:
776+
self.locations_df = misc.read_locations(input_table=locations_list)
777+
except (TypeError, FileNotSupportedError) as exc:
778+
msg = "Please input correct locations_list. "
779+
msg += "Supported types: np.ndarray, DataFrame, str, Path."
780+
raise TypeError(msg) from exc
776781
self.locations_df["x"] = self.locations_df["x"] - int(
777782
(self.patch_size[1] - 1) / 2,
778783
)

β€Žtiatoolbox/utils/misc.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ def read_locations(
531531
out_table = pd.read_json(input_table)
532532
return __assign_unknown_class(out_table)
533533

534-
msg = "File type not supported."
534+
msg = "File type not supported. Supported types: .npy, .csv, .json"
535535
raise FileNotSupportedError(msg)
536536

537537
if isinstance(input_table, np.ndarray):
@@ -540,7 +540,9 @@ def read_locations(
540540
if isinstance(input_table, pd.DataFrame):
541541
return __assign_unknown_class(input_table)
542542

543-
msg = "Please input correct image path or an ndarray image."
543+
msg = "File type not supported. "
544+
msg += "Supported types: str, Path, PathLike, np.ndarray, pd.DataFrame"
545+
544546
raise TypeError(msg)
545547

546548

0 commit comments

Comments
Β (0)