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
f722d4ff
Commit
f722d4ff
authored
Jun 24, 2014
by
Vlad Shakhuro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add default constructors to params classes
parent
94338228
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
xobjdetect.hpp
modules/xobjdetect/include/opencv2/xobjdetect.hpp
+7
-0
No files found.
modules/xobjdetect/include/opencv2/xobjdetect.hpp
View file @
f722d4ff
...
...
@@ -108,6 +108,9 @@ struct CV_EXPORTS WaldBoostParams
{
int
weak_count
;
float
alpha
;
WaldBoostParams
()
:
weak_count
(
100
),
alpha
(
0.01
)
{}
};
...
...
@@ -199,6 +202,10 @@ struct CV_EXPORTS ICFDetectorParams
int
model_n_rows
;
int
model_n_cols
;
double
overlap
;
ICFDetectorParams
()
:
feature_count
(
UINT_MAX
),
weak_count
(
100
),
model_n_rows
(
40
),
model_n_cols
(
40
),
overlap
(
0.0
)
{}
};
class
CV_EXPORTS
ICFDetector
...
...
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