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
9170ff6f
Commit
9170ff6f
authored
May 21, 2011
by
Vincent Rabaud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- assign some members outside the header (fixes #1081)
parent
92d1262f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
features2d.hpp
modules/features2d/include/opencv2/features2d/features2d.hpp
+2
-2
orb.cpp
modules/features2d/src/orb.cpp
+3
-0
No files found.
modules/features2d/include/opencv2/features2d/features2d.hpp
View file @
9170ff6f
...
...
@@ -415,9 +415,9 @@ public:
struct
CommonParams
{
static
const
unsigned
int
DEFAULT_N_LEVELS
=
3
;
static
const
float
DEFAULT_SCALE_FACTOR
=
1.2
;
static
const
float
DEFAULT_SCALE_FACTOR
;
static
const
unsigned
int
DEFAULT_FIRST_LEVEL
=
0
;
static
const
PatchSize
DEFAULT_PATCH_SIZE
=
PATCH_LEARNED_31
;
static
const
PatchSize
DEFAULT_PATCH_SIZE
;
/** default constructor */
CommonParams
(
float
scale_factor
=
DEFAULT_SCALE_FACTOR
,
unsigned
int
n_levels
=
DEFAULT_N_LEVELS
,
...
...
modules/features2d/src/orb.cpp
View file @
9170ff6f
...
...
@@ -447,6 +447,9 @@ std::vector<cv::Mat> ORB::OrbPatterns::rotated_patterns_ = OrbPatterns::generate
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
const
float
ORB
::
CommonParams
::
DEFAULT_SCALE_FACTOR
=
1.2
;
const
ORB
::
PatchSize
ORB
::
CommonParams
::
DEFAULT_PATCH_SIZE
=
ORB
::
PATCH_LEARNED_31
;
/** Constructor
* @param detector_params parameters to use
*/
...
...
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