├── .gitignore ├── LICENSE ├── README.md ├── bfscore.pptx ├── bfscore.py ├── data ├── crf_1.png ├── gt_0.png ├── gt_1.png └── pred_0.png └── evaluate_single_image.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minar09/bfscore_python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minar09/bfscore_python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minar09/bfscore_python/HEAD/README.md -------------------------------------------------------------------------------- /bfscore.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minar09/bfscore_python/HEAD/bfscore.pptx -------------------------------------------------------------------------------- /bfscore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minar09/bfscore_python/HEAD/bfscore.py -------------------------------------------------------------------------------- /data/crf_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minar09/bfscore_python/HEAD/data/crf_1.png -------------------------------------------------------------------------------- /data/gt_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minar09/bfscore_python/HEAD/data/gt_0.png -------------------------------------------------------------------------------- /data/gt_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minar09/bfscore_python/HEAD/data/gt_1.png -------------------------------------------------------------------------------- /data/pred_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minar09/bfscore_python/HEAD/data/pred_0.png -------------------------------------------------------------------------------- /evaluate_single_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minar09/bfscore_python/HEAD/evaluate_single_image.py --------------------------------------------------------------------------------