Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
2bef73c9
Commit
2bef73c9
authored
Jan 31, 2014
by
Roman Donchenko
Committed by
OpenCV Buildbot
Jan 31, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2249 from jet47:gpu-tests-disable
parents
a518d7a1
952027a8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
perf_imgproc.cpp
modules/gpu/perf/perf_imgproc.cpp
+2
-2
test_color.cpp
modules/gpu/test/test_color.cpp
+4
-4
test_core.cpp
modules/gpu/test/test_core.cpp
+1
-1
No files found.
modules/gpu/perf/perf_imgproc.cpp
View file @
2bef73c9
...
@@ -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.0
f
,
2.0
f
,
4.0
f
),
Values
(
1.0
f
,
2.0
f
,
4.0
f
),
Values
(
1.0
f
)))
Values
(
1.0
f
)))
...
...
modules/gpu/test/test_color.cpp
View file @
2bef73c9
...
@@ -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
;
...
...
modules/gpu/test/test_core.cpp
View file @
2bef73c9
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment