Commit 2bef73c9 authored by Roman Donchenko's avatar Roman Donchenko Committed by OpenCV Buildbot

Merge pull request #2249 from jet47:gpu-tests-disable

parents a518d7a1 952027a8
...@@ -672,7 +672,7 @@ PERF_TEST_P(Sz, ImgProc_ColumnSum, ...@@ -672,7 +672,7 @@ PERF_TEST_P(Sz, ImgProc_ColumnSum,
DEF_PARAM_TEST(Image_AppertureSz_L2gradient, string, int, bool); DEF_PARAM_TEST(Image_AppertureSz_L2gradient, string, int, bool);
PERF_TEST_P(Image_AppertureSz_L2gradient, ImgProc_Canny, PERF_TEST_P(Image_AppertureSz_L2gradient, DISABLED_ImgProc_Canny,
Combine(Values("perf/800x600.png", "perf/1280x1024.png", "perf/1680x1050.png"), Combine(Values("perf/800x600.png", "perf/1280x1024.png", "perf/1680x1050.png"),
Values(3, 5), Values(3, 5),
Bool())) Bool()))
...@@ -1777,7 +1777,7 @@ PERF_TEST_P(Image, ImgProc_HoughLinesP, ...@@ -1777,7 +1777,7 @@ PERF_TEST_P(Image, ImgProc_HoughLinesP,
DEF_PARAM_TEST(Sz_Dp_MinDist, cv::Size, float, float); DEF_PARAM_TEST(Sz_Dp_MinDist, cv::Size, float, float);
PERF_TEST_P(Sz_Dp_MinDist, ImgProc_HoughCircles, PERF_TEST_P(Sz_Dp_MinDist, DISABLED_ImgProc_HoughCircles,
Combine(GPU_TYPICAL_MAT_SIZES, Combine(GPU_TYPICAL_MAT_SIZES,
Values(1.0f, 2.0f, 4.0f), Values(1.0f, 2.0f, 4.0f),
Values(1.0f))) Values(1.0f)))
......
...@@ -840,7 +840,7 @@ GPU_TEST_P(CvtColor, YCrCb42RGBA) ...@@ -840,7 +840,7 @@ GPU_TEST_P(CvtColor, YCrCb42RGBA)
EXPECT_MAT_NEAR(dst_gold, dst, 1e-5); EXPECT_MAT_NEAR(dst_gold, dst, 1e-5);
} }
GPU_TEST_P(CvtColor, BGR2HSV) GPU_TEST_P(CvtColor, DISABLED_BGR2HSV)
{ {
if (depth == CV_16U) if (depth == CV_16U)
return; return;
...@@ -856,7 +856,7 @@ GPU_TEST_P(CvtColor, BGR2HSV) ...@@ -856,7 +856,7 @@ GPU_TEST_P(CvtColor, BGR2HSV)
EXPECT_MAT_NEAR(dst_gold, dst, depth == CV_32F ? 1e-2 : 1); EXPECT_MAT_NEAR(dst_gold, dst, depth == CV_32F ? 1e-2 : 1);
} }
GPU_TEST_P(CvtColor, RGB2HSV) GPU_TEST_P(CvtColor, DISABLED_RGB2HSV)
{ {
if (depth == CV_16U) if (depth == CV_16U)
return; return;
...@@ -872,7 +872,7 @@ GPU_TEST_P(CvtColor, RGB2HSV) ...@@ -872,7 +872,7 @@ GPU_TEST_P(CvtColor, RGB2HSV)
EXPECT_MAT_NEAR(dst_gold, dst, depth == CV_32F ? 1e-2 : 1); EXPECT_MAT_NEAR(dst_gold, dst, depth == CV_32F ? 1e-2 : 1);
} }
GPU_TEST_P(CvtColor, RGB2HSV4) GPU_TEST_P(CvtColor, DISABLED_RGB2HSV4)
{ {
if (depth == CV_16U) if (depth == CV_16U)
return; return;
...@@ -896,7 +896,7 @@ GPU_TEST_P(CvtColor, RGB2HSV4) ...@@ -896,7 +896,7 @@ GPU_TEST_P(CvtColor, RGB2HSV4)
EXPECT_MAT_NEAR(dst_gold, h_dst, depth == CV_32F ? 1e-2 : 1); EXPECT_MAT_NEAR(dst_gold, h_dst, depth == CV_32F ? 1e-2 : 1);
} }
GPU_TEST_P(CvtColor, RGBA2HSV4) GPU_TEST_P(CvtColor, DISABLED_RGBA2HSV4)
{ {
if (depth == CV_16U) if (depth == CV_16U)
return; return;
......
...@@ -422,7 +422,7 @@ PARAM_TEST_CASE(Subtract_Array, cv::gpu::DeviceInfo, cv::Size, std::pair<MatDept ...@@ -422,7 +422,7 @@ PARAM_TEST_CASE(Subtract_Array, cv::gpu::DeviceInfo, cv::Size, std::pair<MatDept
} }
}; };
GPU_TEST_P(Subtract_Array, Accuracy) GPU_TEST_P(Subtract_Array, DISABLED_Accuracy)
{ {
cv::Mat mat1 = randomMat(size, stype); cv::Mat mat1 = randomMat(size, stype);
cv::Mat mat2 = randomMat(size, stype); cv::Mat mat2 = randomMat(size, stype);
......
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