├── .gitignore ├── COPYING ├── README.md ├── example.py ├── pyproject.toml ├── requirements.txt └── wsi_preprocessing ├── __init__.py ├── filters.py ├── slides.py ├── tiles.py └── timer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrla/wsi-preprocessing/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrla/wsi-preprocessing/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrla/wsi-preprocessing/HEAD/README.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrla/wsi-preprocessing/HEAD/example.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrla/wsi-preprocessing/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrla/wsi-preprocessing/HEAD/requirements.txt -------------------------------------------------------------------------------- /wsi_preprocessing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrla/wsi-preprocessing/HEAD/wsi_preprocessing/__init__.py -------------------------------------------------------------------------------- /wsi_preprocessing/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrla/wsi-preprocessing/HEAD/wsi_preprocessing/filters.py -------------------------------------------------------------------------------- /wsi_preprocessing/slides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrla/wsi-preprocessing/HEAD/wsi_preprocessing/slides.py -------------------------------------------------------------------------------- /wsi_preprocessing/tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrla/wsi-preprocessing/HEAD/wsi_preprocessing/tiles.py -------------------------------------------------------------------------------- /wsi_preprocessing/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrla/wsi-preprocessing/HEAD/wsi_preprocessing/timer.py --------------------------------------------------------------------------------