Commit 61cb83b4 authored by Andrey Kamaev's avatar Andrey Kamaev

Fixed small bug in summary.py

parent 555ed036
...@@ -4,8 +4,8 @@ using namespace std; ...@@ -4,8 +4,8 @@ using namespace std;
using namespace cv; using namespace cv;
using namespace perf; using namespace perf;
using namespace testing; using namespace testing;
using std::tr1::make_tuple; using std::tr1::make_tuple;
using std::tr1::get; using std::tr1::get;
CV_ENUM(BorderMode, BORDER_CONSTANT, BORDER_REPLICATE); CV_ENUM(BorderMode, BORDER_CONSTANT, BORDER_REPLICATE);
...@@ -25,7 +25,6 @@ PERF_TEST_P( TestWarpAffine, WarpAffine, ...@@ -25,7 +25,6 @@ PERF_TEST_P( TestWarpAffine, WarpAffine,
{ {
Size sz; Size sz;
int borderMode, interType; int borderMode, interType;
//tr1::tie(sz, borderMode, interType) = GetParam();
sz = get<0>(GetParam()); sz = get<0>(GetParam());
borderMode = get<1>(GetParam()); borderMode = get<1>(GetParam());
interType = get<2>(GetParam()); interType = get<2>(GetParam());
...@@ -35,7 +34,7 @@ PERF_TEST_P( TestWarpAffine, WarpAffine, ...@@ -35,7 +34,7 @@ PERF_TEST_P( TestWarpAffine, WarpAffine,
Mat warpMat = getRotationMatrix2D(Point2f(src.cols/2.f, src.rows/2.f), 30., 2.2); Mat warpMat = getRotationMatrix2D(Point2f(src.cols/2.f, src.rows/2.f), 30., 2.2);
Mat dst(sz, CV_8UC4); Mat dst(sz, CV_8UC4);
//declare.in(src).out(dst); declare.in(src).out(dst);
TEST_CYCLE() warpAffine( src, dst, warpMat, sz, interType, borderMode, Scalar::all(150) ); TEST_CYCLE() warpAffine( src, dst, warpMat, sz, interType, borderMode, Scalar::all(150) );
...@@ -53,7 +52,6 @@ PERF_TEST_P( TestWarpPerspective, WarpPerspective, ...@@ -53,7 +52,6 @@ PERF_TEST_P( TestWarpPerspective, WarpPerspective,
{ {
Size sz; Size sz;
int borderMode, interType; int borderMode, interType;
//tr1::tie(sz, borderMode, interType) = GetParam();
sz = get<0>(GetParam()); sz = get<0>(GetParam());
borderMode = get<1>(GetParam()); borderMode = get<1>(GetParam());
interType = get<2>(GetParam()); interType = get<2>(GetParam());
...@@ -71,7 +69,7 @@ PERF_TEST_P( TestWarpPerspective, WarpPerspective, ...@@ -71,7 +69,7 @@ PERF_TEST_P( TestWarpPerspective, WarpPerspective,
warpMat.at<double>(2, 2) = 1; warpMat.at<double>(2, 2) = 1;
Mat dst(sz, CV_8UC4); Mat dst(sz, CV_8UC4);
//declare.in(src).out(dst); declare.in(src).out(dst);
TEST_CYCLE() warpPerspective( src, dst, warpMat, sz, interType, borderMode, Scalar::all(150) ); TEST_CYCLE() warpPerspective( src, dst, warpMat, sz, interType, borderMode, Scalar::all(150) );
......
...@@ -6,7 +6,7 @@ convert = lambda text: int(text) if text.isdigit() else text ...@@ -6,7 +6,7 @@ convert = lambda text: int(text) if text.isdigit() else text
alphanum_keyselector = lambda key: [ convert(c) for c in re.split('([0-9]+)', key) ] alphanum_keyselector = lambda key: [ convert(c) for c in re.split('([0-9]+)', key) ]
def getSetName(tset, idx, columns, short = True): def getSetName(tset, idx, columns, short = True):
if columns and len(columns) >= idx: if columns and len(columns) > idx:
prefix = columns[idx] prefix = columns[idx]
else: else:
prefix = None prefix = None
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment