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
0934344a
Commit
0934344a
authored
Sep 12, 2013
by
Mathieu Barnachon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update sample and code with external computation of HOG detector.
parent
2fe340bf
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
34 deletions
+1
-34
ml.hpp
modules/ml/include/opencv2/ml.hpp
+1
-2
svm.cpp
modules/ml/src/svm.cpp
+0
-32
train_HOG.cpp
samples/cpp/train_HOG.cpp
+0
-0
No files found.
modules/ml/include/opencv2/ml.hpp
View file @
0934344a
...
...
@@ -518,8 +518,7 @@ public:
virtual
CvSVMParams
get_params
()
const
{
return
params
;
};
CV_WRAP
virtual
void
clear
();
// return a single vector for HOG detector.
virtual
void
get_svm_detector
(
std
::
vector
<
float
>
&
detector
)
const
;
virtual
const
CvSVMDecisionFunc
*
get_decision_function
()
const
{
return
decision_func
;
}
static
CvParamGrid
get_default_grid
(
int
param_id
);
...
...
modules/ml/src/svm.cpp
View file @
0934344a
...
...
@@ -1245,38 +1245,6 @@ const float* CvSVM::get_support_vector(int i) const
return
sv
&&
(
unsigned
)
i
<
(
unsigned
)
sv_total
?
sv
[
i
]
:
0
;
}
void
CvSVM
::
get_svm_detector
(
std
::
vector
<
float
>
&
detector
)
const
{
CV_Assert
(
var_all
>
0
&&
sv_total
>
0
&&
sv
!=
0
&&
decision_func
!=
0
&&
decision_func
->
alpha
!=
0
&&
decision_func
->
sv_count
==
sv_total
);
float
svi
=
0.
f
;
detector
.
clear
();
//clear stuff in vector.
detector
.
reserve
(
var_all
+
1
);
//reserve place for memory efficiency.
/**
* detector^i = \sum_j support_vector_j^i * \alpha_j
* detector^dim = -\rho
*/
for
(
int
i
=
0
;
i
<
var_all
;
++
i
)
{
svi
=
0.
f
;
for
(
int
j
=
0
;
j
<
sv_total
;
++
j
)
{
if
(
decision_func
->
sv_index
!=
NULL
)
// sometime the sv_index isn't store on YML/XML.
svi
+=
(
float
)(
sv
[
decision_func
->
sv_index
[
j
]][
i
]
*
decision_func
->
alpha
[
j
]
);
else
svi
+=
(
float
)(
sv
[
j
][
i
]
*
decision_func
->
alpha
[
j
]
);
}
detector
.
push_back
(
svi
);
}
detector
.
push_back
(
(
float
)
-
decision_func
->
rho
);
}
bool
CvSVM
::
set_params
(
const
CvSVMParams
&
_params
)
{
bool
ok
=
false
;
...
...
samples/cpp/train_HOG.cpp
View file @
0934344a
This diff is collapsed.
Click to expand it.
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