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
cf08b726
Commit
cf08b726
authored
May 22, 2014
by
Vlad Shakhuro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix argument types
parent
22b165ca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
icfdetector.hpp
modules/adas/include/opencv2/adas/icfdetector.hpp
+1
-1
waldboost.hpp
modules/adas/include/opencv2/adas/waldboost.hpp
+4
-4
No files found.
modules/adas/include/opencv2/adas/icfdetector.hpp
View file @
cf08b726
...
...
@@ -78,7 +78,7 @@ public:
One value per bbox — confidence of detector that corresponding
bbox contatins object
*/
void
detect
(
const
Mat
&
image
,
void
detect
(
InputArray
image
,
std
::
vector
<
Rect
>&
bboxes
,
std
::
vector
<
float
>&
confidence_values
)
const
;
...
...
modules/adas/include/opencv2/adas/waldboost.hpp
View file @
cf08b726
...
...
@@ -59,7 +59,7 @@ public:
Returns chosen feature index. Feature enumeration starts from 0
*/
int
train
(
const
Mat
_
<
int
>&
data
,
const
Mat_
<
int
>
&
labels
);
int
train
(
const
Mat
&
data
,
const
Mat
&
labels
);
/* Predict object class given
...
...
@@ -101,8 +101,8 @@ public:
Returns feature indices chosen for cascade.
Feature enumeration starts from 0
*/
std
::
vector
<
int
>
train
(
const
Mat
_
<
int
>
&
data
,
const
Mat
_
<
int
>
&
labels
);
std
::
vector
<
int
>
train
(
const
Mat
&
data
,
const
Mat
&
labels
);
/* Predict object class given object that can compute object features
...
...
@@ -111,7 +111,7 @@ public:
Returns confidence_value — measure of confidense that object
is from class +1
*/
float
predict
(
const
ACFFeatureEvaluator
&
feature_evaluator
);
float
predict
(
const
Ptr
<
ACFFeatureEvaluator
>
&
feature_evaluator
);
private
:
/* Parameters for cascade training */
...
...
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