A 1500x1500 H&E image of HGSC containing stroma.
Note
Pairs with hgsc_stroma_nuclei()
.
Examples:
>>> import matplotlib.pyplot as plt
>>> from histolytics.data import hgsc_stroma_he
>>> fig, ax = plt.subplots(figsize=(4, 4))
>>> im = hgsc_stroma_he()
>>> ax.imshow(im)
>>> ax.set_axis_off()

Source code in src/histolytics/data/fetch.py
| def hgsc_stroma_he():
"""A 1500x1500 H&E image of HGSC containing stroma.
Note:
Pairs with `hgsc_stroma_nuclei()`.
Examples:
>>> import matplotlib.pyplot as plt
>>> from histolytics.data import hgsc_stroma_he
>>> fig, ax = plt.subplots(figsize=(4, 4))
>>> im = hgsc_stroma_he()
>>> ax.imshow(im)
>>> ax.set_axis_off()

"""
return FileHandler.read_img(BASE_PATH / "hgsc_stromal_he.png")
|