Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Openvibe Group
extras
Commits
c622c329
Commit
c622c329
authored
Jan 11, 2016
by
Jussi Lindgren
Browse files
Plugins: Fix to a compiler nag
parent
0001b770
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/processing/classification/src/algorithms/ovpCAlgorithmClassifierOneVsAll.cpp
View file @
c622c329
...
...
@@ -148,7 +148,7 @@ boolean CAlgorithmClassifierOneVsAll::classify(const IFeatureVector& rFeatureVec
{
l_oClassificationVector
.
push_back
(
CClassifierOutput
(
static_cast
<
float64
>
(
op_f64ClassificationStateClass
),
static_cast
<
IMatrix
*>
(
op_pClassificationValues
)));
}
this
->
getLogManager
()
<<
LogLevel_Debug
<<
l_iClassifierCounter
<<
" "
<<
(
float64
)
op_f64ClassificationStateClass
<<
" "
<<
(
*
op_pProbabilityValues
)[
0
]
<<
" "
<<
(
*
op_pProbabilityValues
)[
1
]
<<
"
\n
"
;
this
->
getLogManager
()
<<
LogLevel_Debug
<<
static_cast
<
int64
>
(
l_iClassifierCounter
)
<<
" "
<<
(
float64
)
op_f64ClassificationStateClass
<<
" "
<<
(
*
op_pProbabilityValues
)[
0
]
<<
" "
<<
(
*
op_pProbabilityValues
)[
1
]
<<
"
\n
"
;
}
//Now, we determine the best classification
...
...
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