dnn: add an accuracy test for NMS
authorVladislav Sovrasov <sovrasov.vlad@gmail.com>
Tue, 17 Oct 2017 13:43:04 +0000 (16:43 +0300)
committerVladislav Sovrasov <sovrasov.vlad@gmail.com>
Wed, 25 Oct 2017 10:40:56 +0000 (13:40 +0300)
modules/dnn/src/layers/detection_output_layer.cpp
modules/dnn/src/nms.cpp
modules/dnn/src/nms.inl.hpp [moved from modules/dnn/include/opencv2/dnn/nms.inl.hpp with 100% similarity]
modules/dnn/test/test_nms.cpp [new file with mode: 0644]

index 970984b..2e381b2 100644 (file)
@@ -45,7 +45,7 @@
 #include <float.h>
 #include <string>
 #include <caffe.pb.h>
-#include <opencv2/dnn/nms.inl.hpp>
+#include "../nms.inl.hpp"
 
 namespace cv
 {
index af9e9c8..f56191f 100644 (file)
@@ -6,7 +6,7 @@
 // Third party copyrights are property of their respective owners.
 
 #include "precomp.hpp"
-#include <opencv2/dnn/nms.inl.hpp>
+#include <nms.inl.hpp>
 
 namespace cv
 {
diff --git a/modules/dnn/test/test_nms.cpp b/modules/dnn/test/test_nms.cpp
new file mode 100644 (file)
index 0000000..1359a77
--- /dev/null
@@ -0,0 +1,41 @@
+// This file is part of OpenCV project.
+// It is subject to the license terms in the LICENSE file found in the top-level directory
+// of this distribution and at http://opencv.org/license.html.
+//
+// Copyright (C) 2017, Intel Corporation, all rights reserved.
+// Third party copyrights are property of their respective owners.
+
+#include "test_precomp.hpp"
+
+namespace cvtest
+{
+
+TEST(NMS, Accuracy)
+{
+    //reference results obtained using tf.image.non_max_suppression with iou_threshold=0.5
+    std::string dataPath = findDataFile("dnn/nms_reference.yml");
+    FileStorage fs(dataPath, FileStorage::READ);
+
+    std::vector<Rect> bboxes;
+    std::vector<float> scores;
+    std::vector<int> ref_indices;
+
+    fs["boxes"] >> bboxes;
+    fs["probs"] >> scores;
+    fs["output"] >> ref_indices;
+
+    const float nms_thresh = .5f;
+    const float score_thresh = .01f;
+    std::vector<int> indices;
+    cv::dnn::NMSBoxes(bboxes, scores, score_thresh, nms_thresh, indices);
+
+    ASSERT_EQ(ref_indices.size(), indices.size());
+
+    std::sort(indices.begin(), indices.end());
+    std::sort(ref_indices.begin(), ref_indices.end());
+
+    for(size_t i = 0; i < indices.size(); i++)
+        ASSERT_EQ(indices[i], ref_indices[i]);
+}
+
+}//cvtest