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
d58d2777
Commit
d58d2777
authored
May 19, 2015
by
Vladislav Vinogradov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
do not loose logs from nvidia tests
parent
95eed59f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
10 deletions
+20
-10
main_nvidia.cpp
modules/gpu/test/nvidia/main_nvidia.cpp
+20
-10
No files found.
modules/gpu/test/nvidia/main_nvidia.cpp
View file @
d58d2777
...
...
@@ -340,7 +340,8 @@ bool nvidia_NPPST_Integral_Image(const std::string& test_data_path, OutputLevel
bool
nvidia_NPPST_Squared_Integral_Image
(
const
std
::
string
&
test_data_path
,
OutputLevel
outputLevel
)
{
path
=
test_data_path
;
ncvSetDebugOutputHandler
(
devNullOutput
);
if
(
outputLevel
!=
OutputLevelFull
)
ncvSetDebugOutputHandler
(
devNullOutput
);
NCVAutoTestLister
testListerSII
(
"NPPST Squared Integral Image"
,
outputLevel
);
...
...
@@ -354,7 +355,8 @@ bool nvidia_NPPST_Squared_Integral_Image(const std::string& test_data_path, Outp
bool
nvidia_NPPST_RectStdDev
(
const
std
::
string
&
test_data_path
,
OutputLevel
outputLevel
)
{
path
=
test_data_path
;
ncvSetDebugOutputHandler
(
devNullOutput
);
if
(
outputLevel
!=
OutputLevelFull
)
ncvSetDebugOutputHandler
(
devNullOutput
);
NCVAutoTestLister
testListerRStdDev
(
"NPPST RectStdDev"
,
outputLevel
);
...
...
@@ -368,7 +370,8 @@ bool nvidia_NPPST_RectStdDev(const std::string& test_data_path, OutputLevel outp
bool
nvidia_NPPST_Resize
(
const
std
::
string
&
test_data_path
,
OutputLevel
outputLevel
)
{
path
=
test_data_path
;
ncvSetDebugOutputHandler
(
devNullOutput
);
if
(
outputLevel
!=
OutputLevelFull
)
ncvSetDebugOutputHandler
(
devNullOutput
);
NCVAutoTestLister
testListerResize
(
"NPPST Resize"
,
outputLevel
);
...
...
@@ -384,7 +387,8 @@ bool nvidia_NPPST_Resize(const std::string& test_data_path, OutputLevel outputLe
bool
nvidia_NPPST_Vector_Operations
(
const
std
::
string
&
test_data_path
,
OutputLevel
outputLevel
)
{
path
=
test_data_path
;
ncvSetDebugOutputHandler
(
devNullOutput
);
if
(
outputLevel
!=
OutputLevelFull
)
ncvSetDebugOutputHandler
(
devNullOutput
);
NCVAutoTestLister
testListerNPPSTVectorOperations
(
"NPPST Vector Operations"
,
outputLevel
);
...
...
@@ -398,7 +402,8 @@ bool nvidia_NPPST_Vector_Operations(const std::string& test_data_path, OutputLev
bool
nvidia_NPPST_Transpose
(
const
std
::
string
&
test_data_path
,
OutputLevel
outputLevel
)
{
path
=
test_data_path
;
ncvSetDebugOutputHandler
(
devNullOutput
);
if
(
outputLevel
!=
OutputLevelFull
)
ncvSetDebugOutputHandler
(
devNullOutput
);
NCVAutoTestLister
testListerTranspose
(
"NPPST Transpose"
,
outputLevel
);
...
...
@@ -414,7 +419,8 @@ bool nvidia_NPPST_Transpose(const std::string& test_data_path, OutputLevel outpu
bool
nvidia_NCV_Vector_Operations
(
const
std
::
string
&
test_data_path
,
OutputLevel
outputLevel
)
{
path
=
test_data_path
;
ncvSetDebugOutputHandler
(
devNullOutput
);
if
(
outputLevel
!=
OutputLevelFull
)
ncvSetDebugOutputHandler
(
devNullOutput
);
NCVAutoTestLister
testListerVectorOperations
(
"Vector Operations"
,
outputLevel
);
...
...
@@ -429,7 +435,8 @@ bool nvidia_NCV_Vector_Operations(const std::string& test_data_path, OutputLevel
bool
nvidia_NCV_Haar_Cascade_Loader
(
const
std
::
string
&
test_data_path
,
OutputLevel
outputLevel
)
{
path
=
test_data_path
;
ncvSetDebugOutputHandler
(
devNullOutput
);
if
(
outputLevel
!=
OutputLevelFull
)
ncvSetDebugOutputHandler
(
devNullOutput
);
NCVAutoTestLister
testListerHaarLoader
(
"Haar Cascade Loader"
,
outputLevel
);
...
...
@@ -441,7 +448,8 @@ bool nvidia_NCV_Haar_Cascade_Loader(const std::string& test_data_path, OutputLev
bool
nvidia_NCV_Haar_Cascade_Application
(
const
std
::
string
&
test_data_path
,
OutputLevel
outputLevel
)
{
path
=
test_data_path
;
ncvSetDebugOutputHandler
(
devNullOutput
);
if
(
outputLevel
!=
OutputLevelFull
)
ncvSetDebugOutputHandler
(
devNullOutput
);
NCVAutoTestLister
testListerHaarAppl
(
"Haar Cascade Application"
,
outputLevel
);
...
...
@@ -455,7 +463,8 @@ bool nvidia_NCV_Haar_Cascade_Application(const std::string& test_data_path, Outp
bool
nvidia_NCV_Hypotheses_Filtration
(
const
std
::
string
&
test_data_path
,
OutputLevel
outputLevel
)
{
path
=
test_data_path
;
ncvSetDebugOutputHandler
(
devNullOutput
);
if
(
outputLevel
!=
OutputLevelFull
)
ncvSetDebugOutputHandler
(
devNullOutput
);
NCVAutoTestLister
testListerHypFiltration
(
"Hypotheses Filtration"
,
outputLevel
);
...
...
@@ -469,7 +478,8 @@ bool nvidia_NCV_Hypotheses_Filtration(const std::string& test_data_path, OutputL
bool
nvidia_NCV_Visualization
(
const
std
::
string
&
test_data_path
,
OutputLevel
outputLevel
)
{
path
=
test_data_path
;
ncvSetDebugOutputHandler
(
devNullOutput
);
if
(
outputLevel
!=
OutputLevelFull
)
ncvSetDebugOutputHandler
(
devNullOutput
);
NCVAutoTestLister
testListerVisualize
(
"Visualization"
,
outputLevel
);
...
...
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