Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
f7c14d90
Commit
f7c14d90
authored
Mar 22, 2020
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stereo(perf): use SANITY_CHECK_NOTHING()
parent
0a32fc3b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
perf_bm.cpp
modules/stereo/perf/perf_bm.cpp
+2
-2
perf_descriptor.cpp
modules/stereo/perf/perf_descriptor.cpp
+4
-4
No files found.
modules/stereo/perf/perf_bm.cpp
View file @
f7c14d90
...
...
@@ -74,7 +74,7 @@ PERF_TEST_P( s_bm, sgm_perf,
{
sgbm
->
compute
(
left
,
right
,
out1
);
}
SANITY_CHECK
(
out1
);
SANITY_CHECK
_NOTHING
(
);
}
PERF_TEST_P
(
s_bm
,
bm_perf
,
testing
::
Combine
(
...
...
@@ -115,7 +115,7 @@ PERF_TEST_P( s_bm, bm_perf,
{
sbm
->
compute
(
left
,
right
,
out1
);
}
SANITY_CHECK
(
out1
);
SANITY_CHECK
_NOTHING
(
);
}
...
...
modules/stereo/perf/perf_descriptor.cpp
View file @
f7c14d90
...
...
@@ -66,7 +66,7 @@ PERF_TEST_P( descript_params, census_sparse_descriptor,
{
censusTransform
(
left
,
9
,
out1
,
CV_SPARSE_CENSUS
);
}
SANITY_CHECK
(
out1
);
SANITY_CHECK
_NOTHING
(
);
}
PERF_TEST_P
(
descript_params
,
star_census_transform
,
testing
::
Combine
(
...
...
@@ -88,7 +88,7 @@ PERF_TEST_P( descript_params, star_census_transform,
{
starCensusTransform
(
left
,
9
,
out1
);
}
SANITY_CHECK
(
out1
);
SANITY_CHECK
_NOTHING
(
);
}
PERF_TEST_P
(
descript_params
,
modified_census_transform
,
testing
::
Combine
(
...
...
@@ -112,7 +112,7 @@ PERF_TEST_P( descript_params, modified_census_transform,
{
modifiedCensusTransform
(
left
,
9
,
out1
,
CV_MODIFIED_CENSUS_TRANSFORM
);
}
SANITY_CHECK
(
out1
);
SANITY_CHECK
_NOTHING
(
);
}
PERF_TEST_P
(
descript_params
,
center_symetric_census
,
testing
::
Combine
(
...
...
@@ -136,7 +136,7 @@ PERF_TEST_P( descript_params, center_symetric_census,
{
symetricCensusTransform
(
left
,
7
,
out1
,
CV_CS_CENSUS
);
}
SANITY_CHECK
(
out1
);
SANITY_CHECK
_NOTHING
(
);
}
...
...
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