Sample data for the careamics napari plugin.
care_u2os_data()
Load CARE U2OS data.
Returns:
Type | Description |
LayerDataTuple | |
Source code in src/careamics_napari/sample_data.py
| def care_u2os_data() -> LayerDataTuple:
"""Load CARE U2OS data.
Returns
-------
LayerDataTuple
Data and layer name.
"""
ntf.show_info("Downloading data might take a few minutes.")
return _load_u2os_care()
|
n2n_sem_data()
Load N2N SEM data.
Returns:
Type | Description |
LayerDataTuple | |
Source code in src/careamics_napari/sample_data.py
| def n2n_sem_data() -> LayerDataTuple:
"""Load N2N SEM data.
Returns
-------
LayerDataTuple
Data and layer name.
"""
ntf.show_info("Downloading data might take a few minutes.")
return _load_sem_n2n()
|
n2v_sem_data()
Load N2V SEM data.
Returns:
Type | Description |
LayerDataTuple | |
Source code in src/careamics_napari/sample_data.py
| def n2v_sem_data() -> LayerDataTuple:
"""Load N2V SEM data.
Returns
-------
LayerDataTuple
Data and layer name.
"""
ntf.show_info("Downloading data might take a few minutes.")
return _load_sem_n2v()
|