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
8b44a42a
Commit
8b44a42a
authored
Feb 10, 2014
by
Vladislav Vinogradov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decrease input size for several gpu tests to fix "timed out" error:
* BruteForceNonLocalMeans * OpticalFlowBM
parent
1d68a899
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
test_denoising.cpp
modules/gpu/test/test_denoising.cpp
+3
-0
test_optflow.cpp
modules/gpu/test/test_optflow.cpp
+4
-2
No files found.
modules/gpu/test/test_denoising.cpp
View file @
8b44a42a
...
...
@@ -114,6 +114,7 @@ GPU_TEST_P(BruteForceNonLocalMeans, Regression)
cv
::
Mat
bgr
=
readImage
(
"denoising/lena_noised_gaussian_sigma=20_multi_0.png"
,
cv
::
IMREAD_COLOR
);
ASSERT_FALSE
(
bgr
.
empty
());
cv
::
resize
(
bgr
,
bgr
,
cv
::
Size
(
256
,
256
));
cv
::
Mat
gray
;
cv
::
cvtColor
(
bgr
,
gray
,
CV_BGR2GRAY
);
...
...
@@ -130,6 +131,8 @@ GPU_TEST_P(BruteForceNonLocalMeans, Regression)
cv
::
Mat
bgr_gold
=
readImage
(
"denoising/nlm_denoised_lena_bgr.png"
,
cv
::
IMREAD_COLOR
);
cv
::
Mat
gray_gold
=
readImage
(
"denoising/nlm_denoised_lena_gray.png"
,
cv
::
IMREAD_GRAYSCALE
);
ASSERT_FALSE
(
bgr_gold
.
empty
()
||
gray_gold
.
empty
());
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
,
1e-4
);
EXPECT_MAT_NEAR
(
gray_gold
,
dgray
,
1e-4
);
...
...
modules/gpu/test/test_optflow.cpp
View file @
8b44a42a
...
...
@@ -483,13 +483,15 @@ GPU_TEST_P(OpticalFlowBM, Accuracy)
cv
::
Mat
frame0
=
readImage
(
"opticalflow/rubberwhale1.png"
,
cv
::
IMREAD_GRAYSCALE
);
ASSERT_FALSE
(
frame0
.
empty
());
cv
::
resize
(
frame0
,
frame0
,
cv
::
Size
(),
0.5
,
0.5
);
cv
::
Mat
frame1
=
readImage
(
"opticalflow/rubberwhale2.png"
,
cv
::
IMREAD_GRAYSCALE
);
ASSERT_FALSE
(
frame1
.
empty
());
cv
::
resize
(
frame1
,
frame1
,
cv
::
Size
(),
0.5
,
0.5
);
cv
::
Size
block_size
(
16
,
16
);
cv
::
Size
block_size
(
8
,
8
);
cv
::
Size
shift_size
(
1
,
1
);
cv
::
Size
max_range
(
16
,
16
);
cv
::
Size
max_range
(
8
,
8
);
cv
::
gpu
::
GpuMat
d_velx
,
d_vely
,
buf
;
cv
::
gpu
::
calcOpticalFlowBM
(
loadMat
(
frame0
),
loadMat
(
frame1
),
...
...
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