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
d579d3e5
Commit
d579d3e5
authored
Oct 23, 2014
by
Vladislav Vinogradov
Committed by
Alexander Smorkalov
Nov 04, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
increase epsilons for some tests, which functions use floating point arithm
(cherry picked from commit
5c07e0b6
)
parent
5a771766
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
perf_imgproc.cpp
modules/gpu/perf/perf_imgproc.cpp
+3
-3
perf_video.cpp
modules/gpu/perf/perf_video.cpp
+1
-1
test_denoising.cpp
modules/gpu/test/test_denoising.cpp
+2
-2
No files found.
modules/gpu/perf/perf_imgproc.cpp
View file @
d579d3e5
...
...
@@ -1413,7 +1413,7 @@ PERF_TEST_P(Sz_Depth_Code, ImgProc_CvtColor,
TEST_CYCLE
()
cv
::
gpu
::
cvtColor
(
d_src
,
dst
,
info
.
code
,
info
.
dcn
);
GPU_SANITY_CHECK
(
dst
,
1e-
4
);
GPU_SANITY_CHECK
(
dst
,
1e-
2
);
}
else
{
...
...
@@ -1609,7 +1609,7 @@ PERF_TEST_P(Sz_Depth_Cn, ImgProc_ImagePyramidBuild,
cv
::
gpu
::
GpuMat
dst
;
d_pyr
.
getLayer
(
dst
,
dstSize
);
GPU_SANITY_CHECK
(
dst
);
GPU_SANITY_CHECK
(
dst
,
1e-3
);
}
else
{
...
...
@@ -1646,7 +1646,7 @@ PERF_TEST_P(Sz_Depth_Cn, ImgProc_ImagePyramidGetLayer,
TEST_CYCLE
()
d_pyr
.
getLayer
(
dst
,
dstSize
);
GPU_SANITY_CHECK
(
dst
);
GPU_SANITY_CHECK
(
dst
,
1e-3
);
}
else
{
...
...
modules/gpu/perf/perf_video.cpp
View file @
d579d3e5
...
...
@@ -143,7 +143,7 @@ PERF_TEST_P(ImagePair, Video_CreateOpticalFlowNeedleMap,
TEST_CYCLE
()
cv
::
gpu
::
createOpticalFlowNeedleMap
(
u
,
v
,
vertex
,
colors
);
GPU_SANITY_CHECK
(
vertex
,
1e-
6
);
GPU_SANITY_CHECK
(
vertex
,
1e-
5
);
GPU_SANITY_CHECK
(
colors
);
}
else
...
...
modules/gpu/test/test_denoising.cpp
View file @
d579d3e5
...
...
@@ -134,8 +134,8 @@ GPU_TEST_P(BruteForceNonLocalMeans, Regression)
cv
::
resize
(
bgr_gold
,
bgr_gold
,
cv
::
Size
(
256
,
256
));
cv
::
resize
(
gray_gold
,
gray_gold
,
cv
::
Size
(
256
,
256
));
EXPECT_MAT_NEAR
(
bgr_gold
,
dbgr
,
1
e-4
);
EXPECT_MAT_NEAR
(
gray_gold
,
dgray
,
1
e-4
);
EXPECT_MAT_NEAR
(
bgr_gold
,
dbgr
,
1
);
EXPECT_MAT_NEAR
(
gray_gold
,
dgray
,
1
);
}
INSTANTIATE_TEST_CASE_P
(
GPU_Denoising
,
BruteForceNonLocalMeans
,
ALL_DEVICES
);
...
...
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