diff --git "a/essays/\350\257\273\350\256\272\346\226\207BinarizedNormedGradientsforObjectnessEstimationat300fps.md" "b/essays/\350\257\273\350\256\272\346\226\207BinarizedNormedGradientsforObjectnessEstimationat300fps.md" index 91367fa..9062e2a 100644 --- "a/essays/\350\257\273\350\256\272\346\226\207BinarizedNormedGradientsforObjectnessEstimationat300fps.md" +++ "b/essays/\350\257\273\350\256\272\346\226\207BinarizedNormedGradientsforObjectnessEstimationat300fps.md" @@ -54,3 +54,12 @@ StageI也就是训练w参数居然用了13s,StageII用了344s居然,单张 ![DRandMABO](../images/读论文BinarizedNormedGradientsforObjectnessEstimationat300fps/DRandMABO.png) +上面的精度曲线称为DR-#WIN curves,源自TPAMI 2012的一篇论文:Measuring the objectness of image windows。原文还提出了将窗口数量比如[[0,5000]归一化到[0,1]之间,用曲线下的面积作为目标检测的度量结果,并称之为the area under the curve(AUC),这样AUC的范围就在[0,1]之间了。 + +### 检测精度DR的计算 + +DR的计算是参考[The PASCAL Visual Object Classes (VOC) Challenge](http://pascallin.ecs.soton.ac.uk/challenges/VOC/pubs/everingham10.pdf),目标检测任务中DR的计算的是true/false positive精度,将算法检测目标结果放到groud truth中,将“预测目标区域与groud truth区域的交集”除以“预测目标区域与groud truth区域的并集”作为DR: + + + +DR自少在50%以上才算目标检测正确,其实,50%已经是很低的了,几乎不能做为检测结果,难怪那些个算法(BING这篇文章也是)随随便便都到95%以上了。 diff --git "a/html/\350\257\273\350\256\272\346\226\207BinarizedNormedGradientsforObjectnessEstimationat300fps.html" "b/html/\350\257\273\350\256\272\346\226\207BinarizedNormedGradientsforObjectnessEstimationat300fps.html" index a7795c3..ccabb08 100644 --- "a/html/\350\257\273\350\256\272\346\226\207BinarizedNormedGradientsforObjectnessEstimationat300fps.html" +++ "b/html/\350\257\273\350\256\272\346\226\207BinarizedNormedGradientsforObjectnessEstimationat300fps.html" @@ -22,7 +22,9 @@

Tags: Image

@@ -64,6 +66,11 @@

关于程序

DRandMABO

DRandMABO

+

上面的精度曲线称为DR-#WIN curves,源自TPAMI 2012的一篇论文:Measuring the objectness of image windows。原文还提出了将窗口数量比如[[0,5000]归一化到[0,1]之间,用曲线下的面积作为目标检测的度量结果,并称之为the area under the curve(AUC),这样AUC的范围就在[0,1]之间了。

+

检测精度DR的计算

+

DR的计算是参考The PASCAL Visual Object Classes (VOC) Challenge,目标检测任务中DR的计算的是true/false positive精度,将算法检测目标结果放到groud truth中,将“预测目标区域与groud truth区域的交集”除以“预测目标区域与groud truth区域的并集”作为DR:

+

+

DR自少在50%以上才算目标检测正确,其实,50%已经是很低的了,几乎不能做为检测结果,难怪那些个算法(BING这篇文章也是)随随便便都到95%以上了。