Event-AHU/COESOT

toolkit results I plot is different with your figures in this repo readme?

Closed this issue · 5 comments

I just downlaod you provided tracking results and plot SR, PR, NPR figures. But I find SR figure is same with yours. But PR and NPR values are different?
image
image

Hi, I'm not sure where is the difference. I have run the script again derectly to generate SR/PR. They are the same with the paper. Have you changed some thing?

I have found the reason why you plot 0.705 as PR

you select the PR with plot Success when ranking_type = 'AUC';
Bu that PR is not correct, you need to select PR when ranking_type = 'threshold';

so solution is:

% if strcmp(metric_type, 'error') && strcmp(ranking_type, 'AUC') % for ranking_type = 'AUC'
if strcmp(metric_type, 'overlap') && strcmp(ranking_type, 'threshold') % for ranking_type = 'threshold'
continue;
end

to modify as following:
image

我已经加你微信了,因为你qq一直没回我XD