WHUHLX / CATS

60 stars 17 forks source link

Questions about CEval #6

Open WCJ1998 opened 3 years ago

WCJ1998 commented 3 years ago

Hello, I have read your paper carefully. Use the bsds.pth file you provided to test the CEval aspect of the generated image, I find that the results are different and there is a big gap. I would like to ask, does CEval perform the evaluation directly after removing NMS? looking forward to your reply

WHUHLX commented 2 years ago

Hello, thank you for your interest in our work. The CEval is performed after removing the NMS and a morphological thinning operation, and we named the combination of these two operations as a morphological non-maximal suppression scheme in the paper. The morphological operation is in the file named 'edgesEvalImg.m', and you can find the codes like below. The line commented is to remove the morphological operation.

if(thin), E1=double(bwmorph(E1,'thin',inf)); end % if(thin), E1=double(E1); end

wenya1994 commented 2 years ago

作者您好,您的RCF-CATS的SEval结果是没有NMS的操作吧,NMS的代码又是哪个呢?求告知,感谢🙏

WHUHLX commented 2 years ago

作者您好,您的RCF-CATS的SEval结果是没有NMS的操作吧,NMS的代码又是哪个呢?求告知,感谢🙏

您好,SEval结果是用了NMS的,CEval是没有用的。NMS代码在eval文件里面