Skip to content

hgsc_tissue_wsi

A GeoDataframe of segmented tissue regions of a HGSC WSI.

Note

Pairs with: hgsc_nuclei_wsi().

Examples:

>>> from histolytics.data import hgsc_tissue_wsi
>>> ax = hgsc_tissue_wsi().plot(column="class_name")
>>> ax.set_axis_off()

out

Source code in src/histolytics/data/fetch.py
def hgsc_tissue_wsi():
    """A GeoDataframe of segmented tissue regions of a HGSC WSI.

    Note:
        Pairs with: `hgsc_nuclei_wsi()`.

    Examples:
        >>> from histolytics.data import hgsc_tissue_wsi
        >>> ax = hgsc_tissue_wsi().plot(column="class_name")
        >>> ax.set_axis_off()
    ![out](../../img/hgsc_wsi_tis.png)
    """
    return _load(BASE_PATH / "hgsc_tissue_wsi.parquet")