Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Youssefi
otb
Commits
8eaa8ef9
Commit
8eaa8ef9
authored
15 years ago
by
Thomas Feuvrier
Browse files
Options
Downloads
Patches
Plain Diff
WRG: Remove warning for svm library: unused parameter in function
parent
406efe1d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Utilities/otbsvm/svm.h
+2
-2
2 additions, 2 deletions
Utilities/otbsvm/svm.h
with
2 additions
and
2 deletions
Utilities/otbsvm/svm.h
+
2
−
2
View file @
8eaa8ef9
...
...
@@ -202,7 +202,7 @@ public:
otbSetValueMacro(Double,double);
*/
virtual
double
operator
()(
const
svm_node
*
x
,
const
svm_node
*
y
,
const
svm_parameter
&
param
)
const
virtual
double
operator
()(
const
svm_node
*
/*x*/
,
const
svm_node
*
/*y*/
,
const
svm_parameter
&
/*
param
*/
)
const
{
itkGenericExceptionMacro
(
<<
"Kernel functor not definied (Null)"
);
return
static_cast
<
double
>
(
0.
);
...
...
@@ -213,7 +213,7 @@ public:
// index is the current value
// isAtEnd to indicate that it's the last possible derivation
// baseValue is the constant of the formula
virtual
double
derivative
(
const
svm_node
*
x
,
const
svm_node
*
y
,
const
svm_parameter
&
param
,
int
degree
,
int
index
,
bool
isAtEnd
,
double
constValue
)
const
virtual
double
derivative
(
const
svm_node
*
/*x*/
,
const
svm_node
*
/
*
y
*/
,
const
svm_parameter
&
/*
param
*/
,
int
/*
degree
*/
,
int
/*
index
*/
,
bool
/*
isAtEnd
*/
,
double
/*
constValue
*/
)
const
{
itkGenericExceptionMacro
(
<<
"derivative method not definied (Null)"
);
return
0.
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment