Commit 77f22fe3 authored by Vladislav Vinogradov's avatar Vladislav Vinogradov

minor fix of gpu perf tests

parent 159cc29b
...@@ -25,7 +25,7 @@ GPU_PERF_TEST(Remap, cv::gpu::DeviceInfo, cv::Size, MatType, Interpolation, Bord ...@@ -25,7 +25,7 @@ GPU_PERF_TEST(Remap, cv::gpu::DeviceInfo, cv::Size, MatType, Interpolation, Bord
cv::remap(src, dst, xmap, ymap, interpolation, borderMode); cv::remap(src, dst, xmap, ymap, interpolation, borderMode);
declare.time(3.0); declare.time(20.0);
TEST_CYCLE() TEST_CYCLE()
{ {
...@@ -62,7 +62,7 @@ GPU_PERF_TEST(Resize, cv::gpu::DeviceInfo, cv::Size, MatType, Interpolation, Sca ...@@ -62,7 +62,7 @@ GPU_PERF_TEST(Resize, cv::gpu::DeviceInfo, cv::Size, MatType, Interpolation, Sca
cv::resize(src, dst, cv::Size(), f, f, interpolation); cv::resize(src, dst, cv::Size(), f, f, interpolation);
declare.time(1.0); declare.time(20.0);
TEST_CYCLE() TEST_CYCLE()
{ {
...@@ -101,6 +101,8 @@ GPU_PERF_TEST(WarpAffine, cv::gpu::DeviceInfo, cv::Size, MatType, Interpolation, ...@@ -101,6 +101,8 @@ GPU_PERF_TEST(WarpAffine, cv::gpu::DeviceInfo, cv::Size, MatType, Interpolation,
cv::warpAffine(src, dst, M, size, interpolation, borderMode); cv::warpAffine(src, dst, M, size, interpolation, borderMode);
declare.time(20.0);
TEST_CYCLE() TEST_CYCLE()
{ {
cv::warpAffine(src, dst, M, size, interpolation, borderMode); cv::warpAffine(src, dst, M, size, interpolation, borderMode);
...@@ -139,6 +141,8 @@ GPU_PERF_TEST(WarpPerspective, cv::gpu::DeviceInfo, cv::Size, MatType, Interpola ...@@ -139,6 +141,8 @@ GPU_PERF_TEST(WarpPerspective, cv::gpu::DeviceInfo, cv::Size, MatType, Interpola
cv::warpPerspective(src, dst, M, size, interpolation, borderMode); cv::warpPerspective(src, dst, M, size, interpolation, borderMode);
declare.time(20.0);
TEST_CYCLE() TEST_CYCLE()
{ {
cv::warpPerspective(src, dst, M, size, interpolation, borderMode); cv::warpPerspective(src, dst, M, size, interpolation, borderMode);
......
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