├── LICENSE ├── README.md ├── __init__.py ├── example_notebooks ├── 1. Metrics module.ipynb └── 2. Region Metrics module.ipynb ├── metrics.py ├── region_metrics.py ├── test_data ├── 23578960_15.tif ├── 23578960_15_sub_gt_shapes.geojson ├── 23578960_15_y_pred.tif ├── 23578960_15_y_pred_resc.tif └── 23578960_15_y_true.tif └── visualization.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itracasa/seg-eval/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itracasa/seg-eval/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_notebooks/1. Metrics module.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itracasa/seg-eval/HEAD/example_notebooks/1. Metrics module.ipynb -------------------------------------------------------------------------------- /example_notebooks/2. Region Metrics module.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itracasa/seg-eval/HEAD/example_notebooks/2. Region Metrics module.ipynb -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itracasa/seg-eval/HEAD/metrics.py -------------------------------------------------------------------------------- /region_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itracasa/seg-eval/HEAD/region_metrics.py -------------------------------------------------------------------------------- /test_data/23578960_15.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itracasa/seg-eval/HEAD/test_data/23578960_15.tif -------------------------------------------------------------------------------- /test_data/23578960_15_sub_gt_shapes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itracasa/seg-eval/HEAD/test_data/23578960_15_sub_gt_shapes.geojson -------------------------------------------------------------------------------- /test_data/23578960_15_y_pred.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itracasa/seg-eval/HEAD/test_data/23578960_15_y_pred.tif -------------------------------------------------------------------------------- /test_data/23578960_15_y_pred_resc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itracasa/seg-eval/HEAD/test_data/23578960_15_y_pred_resc.tif -------------------------------------------------------------------------------- /test_data/23578960_15_y_true.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itracasa/seg-eval/HEAD/test_data/23578960_15_y_true.tif -------------------------------------------------------------------------------- /visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itracasa/seg-eval/HEAD/visualization.py --------------------------------------------------------------------------------