Commit 8bb26fa5 authored by Vladislav Vinogradov's avatar Vladislav Vinogradov Committed by Alexander Smorkalov

Revert "disable gpu CvtColor.*2HSV tests:"

This reverts commit 952027a8.
(cherry picked from commit b6ba1f22)
parent 48612d7c
...@@ -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, DISABLED_BGR2HSV) GPU_TEST_P(CvtColor, BGR2HSV)
{ {
if (depth == CV_16U) if (depth == CV_16U)
return; return;
...@@ -856,7 +856,7 @@ GPU_TEST_P(CvtColor, DISABLED_BGR2HSV) ...@@ -856,7 +856,7 @@ GPU_TEST_P(CvtColor, DISABLED_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, DISABLED_RGB2HSV) GPU_TEST_P(CvtColor, RGB2HSV)
{ {
if (depth == CV_16U) if (depth == CV_16U)
return; return;
...@@ -872,7 +872,7 @@ GPU_TEST_P(CvtColor, DISABLED_RGB2HSV) ...@@ -872,7 +872,7 @@ GPU_TEST_P(CvtColor, DISABLED_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, DISABLED_RGB2HSV4) GPU_TEST_P(CvtColor, RGB2HSV4)
{ {
if (depth == CV_16U) if (depth == CV_16U)
return; return;
...@@ -896,7 +896,7 @@ GPU_TEST_P(CvtColor, DISABLED_RGB2HSV4) ...@@ -896,7 +896,7 @@ GPU_TEST_P(CvtColor, DISABLED_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, DISABLED_RGBA2HSV4) GPU_TEST_P(CvtColor, RGBA2HSV4)
{ {
if (depth == CV_16U) if (depth == CV_16U)
return; return;
......
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