You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PatchMatching/plot_success_curve_bbs_data.m

6 lines
241 B
Matlab

function plot_success_curve_bbs_data(fileName)
load(fileName);
methodsWithResults=fields(ROC);
lineType=plot_styles('BBS');
plot(thROC,ROC.(methodsWithResults{1}),lineType,'linewidth',3,'MarkerSize',10,'MarkerFaceColor',lineType(1));
drawnow