Binary-Segmentation-Evaluation-Tool icon indicating copy to clipboard operation
Binary-Segmentation-Evaluation-Tool copied to clipboard

This repo is developed for evaluating binary image segmentation results. Measures, such as MAE, Precision, Recall, F-measure, PR curves and F-measure curves are included.

Results 5 Binary-Segmentation-Evaluation-Tool issues
Sort by recently updated
recently updated
newest added

I modify to my own data, why is the output 0

solution: since the difference between Windows and Linux, you have got to replace `gt_name = gt_name_list[i].split('/')[-1]` with `gt_name = gt_name_list[i].split('/')[-1].split('\\')[-1]`, which located at 56, 140 in measures.py

Hello could you upload the relaxed F-measure metric code?, thank you so much.

I want to plot 6 dataset simultaneously in single figure. But following error come during runtime. plt.plot(REC[i], PRE[i],lineSylClr[i],linewidth=linewidth[i],label=method_names[i]) IndexError: list index out of range Which function should I change ?