Skip to content

Commit 82cb030

Browse files
MaximMilashchenkoMaksim Milaschenkomshabunin
authored
barcode perf tests (#3482)
--------- Co-authored-by: Maksim Milaschenko <[email protected]> Co-authored-by: Maksim Shabunin <[email protected]>
1 parent deb2255 commit 82cb030

File tree

3 files changed

+133
-0
lines changed

3 files changed

+133
-0
lines changed

modules/barcode/perf/perf_barcode.cpp

+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
// This file is part of OpenCV project.
2+
// It is subject to the license terms in the LICENSE file found in the top-level directory
3+
// of this distribution and at http://opencv.org/license.html.
4+
5+
#include "perf_precomp.hpp"
6+
7+
namespace opencv_test{namespace{
8+
9+
typedef ::perf::TestBaseWithParam< tuple<string, cv::Size> > Perf_Barcode_multi;
10+
typedef ::perf::TestBaseWithParam< tuple<string, cv::Size> > Perf_Barcode_single;
11+
12+
PERF_TEST_P_(Perf_Barcode_multi, detect)
13+
{
14+
const string root = "cv/barcode/multiple/";
15+
const string name_current_image = get<0>(GetParam());
16+
const cv::Size sz = get<1>(GetParam());
17+
const string image_path = findDataFile(root + name_current_image);
18+
19+
Mat src = imread(image_path);
20+
ASSERT_FALSE(src.empty()) << "Can't read image: " << image_path;
21+
cv::resize(src, src, sz);
22+
23+
vector< Point > corners;
24+
auto bardet = barcode::BarcodeDetector();
25+
bool res = false;
26+
TEST_CYCLE()
27+
{
28+
res = bardet.detect(src, corners);
29+
}
30+
SANITY_CHECK_NOTHING();
31+
ASSERT_TRUE(res);
32+
}
33+
34+
PERF_TEST_P_(Perf_Barcode_multi, detect_decode)
35+
{
36+
const string root = "cv/barcode/multiple/";
37+
const string name_current_image = get<0>(GetParam());
38+
const cv::Size sz = get<1>(GetParam());
39+
const string image_path = findDataFile(root + name_current_image);
40+
41+
Mat src = imread(image_path);
42+
ASSERT_FALSE(src.empty()) << "Can't read image: " << image_path;
43+
cv::resize(src, src, sz);
44+
45+
vector<cv::String> decoded_info;
46+
vector<barcode::BarcodeType> decoded_type;
47+
vector< Point > corners;
48+
auto bardet = barcode::BarcodeDetector();
49+
bool res = false;
50+
TEST_CYCLE()
51+
{
52+
res = bardet.detectAndDecode(src, decoded_info, decoded_type, corners);
53+
}
54+
SANITY_CHECK_NOTHING();
55+
ASSERT_TRUE(res);
56+
}
57+
58+
PERF_TEST_P_(Perf_Barcode_single, detect)
59+
{
60+
const string root = "cv/barcode/single/";
61+
const string name_current_image = get<0>(GetParam());
62+
const cv::Size sz = get<1>(GetParam());
63+
const string image_path = findDataFile(root + name_current_image);
64+
65+
Mat src = imread(image_path);
66+
ASSERT_FALSE(src.empty()) << "Can't read image: " << image_path;
67+
cv::resize(src, src, sz);
68+
69+
vector< Point > corners;
70+
auto bardet = barcode::BarcodeDetector();
71+
bool res = false;
72+
TEST_CYCLE()
73+
{
74+
res = bardet.detect(src, corners);
75+
}
76+
SANITY_CHECK_NOTHING();
77+
ASSERT_TRUE(res);
78+
}
79+
80+
PERF_TEST_P_(Perf_Barcode_single, detect_decode)
81+
{
82+
const string root = "cv/barcode/single/";
83+
const string name_current_image = get<0>(GetParam());
84+
const cv::Size sz = get<1>(GetParam());
85+
const string image_path = findDataFile(root + name_current_image);
86+
87+
Mat src = imread(image_path);
88+
ASSERT_FALSE(src.empty()) << "Can't read image: " << image_path;
89+
cv::resize(src, src, sz);
90+
91+
vector<cv::String> decoded_info;
92+
vector<barcode::BarcodeType> decoded_type;
93+
vector< Point > corners;
94+
auto bardet = barcode::BarcodeDetector();
95+
bool res = false;
96+
TEST_CYCLE()
97+
{
98+
res = bardet.detectAndDecode(src, decoded_info, decoded_type, corners);
99+
}
100+
SANITY_CHECK_NOTHING();
101+
ASSERT_TRUE(res);
102+
}
103+
104+
INSTANTIATE_TEST_CASE_P(/*nothing*/, Perf_Barcode_multi,
105+
testing::Combine(
106+
testing::Values("4_barcodes.jpg"),
107+
testing::Values(cv::Size(2041, 2722), cv::Size(1361, 1815), cv::Size(680, 907))));
108+
INSTANTIATE_TEST_CASE_P(/*nothing*/, Perf_Barcode_single,
109+
testing::Combine(
110+
testing::Values("book.jpg", "bottle_1.jpg", "bottle_2.jpg"),
111+
testing::Values(cv::Size(480, 360), cv::Size(640, 480), cv::Size(800, 600))));
112+
113+
}} //namespace

modules/barcode/perf/perf_main.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// This file is part of OpenCV project.
2+
// It is subject to the license terms in the LICENSE file found in the top-level directory
3+
// of this distribution and at http://opencv.org/license.html.
4+
5+
#include "perf_precomp.hpp"
6+
7+
using namespace perf;
8+
9+
CV_PERF_TEST_MAIN(barcode)

modules/barcode/perf/perf_precomp.hpp

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// This file is part of OpenCV project.
2+
// It is subject to the license terms in the LICENSE file found in the top-level directory
3+
// of this distribution and at http://opencv.org/license.html.
4+
5+
#ifndef __OPENCV_PERF_PRECOMP_HPP__
6+
#define __OPENCV_PERF_PRECOMP_HPP__
7+
8+
#include "opencv2/ts.hpp"
9+
#include "opencv2/barcode.hpp"
10+
11+
#endif

0 commit comments

Comments
 (0)