Skip to content

Commit

Permalink
Merge pull request opencv#95 from apavlenko/perf-test/warp
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Kamaev committed Oct 24, 2012
2 parents 6c59225 + a94e80b commit ca20228
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions modules/imgproc/perf/perf_warp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ PERF_TEST_P( TestWarpAffine, WarpAffine,
Size sz;
int borderMode, interType;
sz = get<0>(GetParam());
borderMode = get<1>(GetParam());
interType = get<2>(GetParam());
interType = get<1>(GetParam());
borderMode = get<2>(GetParam());

Mat src, img = imread(getDataPath("cv/shared/fruits.png"));
cvtColor(img, src, COLOR_BGR2RGBA, 4);
Expand All @@ -58,8 +58,8 @@ PERF_TEST_P( TestWarpPerspective, WarpPerspective,
Size sz;
int borderMode, interType;
sz = get<0>(GetParam());
borderMode = get<1>(GetParam());
interType = get<2>(GetParam());
interType = get<1>(GetParam());
borderMode = get<2>(GetParam());


Mat src, img = imread(getDataPath("cv/shared/fruits.png"));
Expand Down Expand Up @@ -98,9 +98,9 @@ PERF_TEST_P( TestWarpPerspectiveNear_t, WarpPerspectiveNear,
Size size;
int borderMode, interType, type;
size = get<0>(GetParam());
borderMode = get<1>(GetParam());
interType = get<2>(GetParam());
type = get<3>(GetParam());
interType = get<1>(GetParam());
borderMode = get<2>(GetParam());
type = get<3>(GetParam());

Mat src, img = imread(getDataPath("cv/shared/5MP.png"));

Expand Down

0 comments on commit ca20228

Please sign in to comment.