WSI Readers#
All readers are registered under the READERS space.
from wsidata import READERS
To open a slide with any available reader:
READERS.try_open("sample.svs") # Select a good one
READERS.try_open("sample.svs", reader="bioformats") # Only try bioformats
To retrieve a reader class
ReaderClass = READERS['openslide']
reader = ReaderClass('sample.svs')
The base class for all reader |
|
Use OpenSlide to interface with image files. |
|
Use TiffSlide to interface with image files. |
|
Use FastSlide to interface with image files. |
|
Use Bio-Formats to interface with image files. |
|
Use CuCIM to interface with image files. |
|
Use pyisyntax to interface with Philips iSyntax whole-slide images. |
|
Use pylibCZIrw to interface with Zeiss CZI whole-slide images. |
|
A wrapper around spatialdata to interface with image files. |