├── .gitignore ├── README.md ├── requirements.txt ├── run.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TissueImageAnalytics/PanNuke-metrics/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TissueImageAnalytics/PanNuke-metrics/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | docopt 2 | numpy==1.15.4 3 | pandas 4 | scipy 5 | -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TissueImageAnalytics/PanNuke-metrics/HEAD/run.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TissueImageAnalytics/PanNuke-metrics/HEAD/utils.py --------------------------------------------------------------------------------