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
12cd3b55
Commit
12cd3b55
authored
Feb 01, 2018
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #10756 from terfendail:orb_firstlevel
parents
bbfa2390
26321795
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
features2d.hpp
modules/features2d/include/opencv2/features2d.hpp
+1
-1
orb.cpp
modules/features2d/src/orb.cpp
+1
-1
No files found.
modules/features2d/include/opencv2/features2d.hpp
View file @
12cd3b55
...
@@ -307,7 +307,7 @@ public:
...
@@ -307,7 +307,7 @@ public:
input_image_linear_size/pow(scaleFactor, nlevels - firstLevel).
input_image_linear_size/pow(scaleFactor, nlevels - firstLevel).
@param edgeThreshold This is size of the border where the features are not detected. It should
@param edgeThreshold This is size of the border where the features are not detected. It should
roughly match the patchSize parameter.
roughly match the patchSize parameter.
@param firstLevel The level of py
t
ramid to put source image to. Previous layers are filled
@param firstLevel The level of pyramid to put source image to. Previous layers are filled
with upscaled source image.
with upscaled source image.
@param WTA_K The number of points that produce each element of the oriented BRIEF descriptor. The
@param WTA_K The number of points that produce each element of the oriented BRIEF descriptor. The
default value 2 means the BRIEF where we take a random point pair and compare their brightnesses,
default value 2 means the BRIEF where we take a random point pair and compare their brightnesses,
...
...
modules/features2d/src/orb.cpp
View file @
12cd3b55
...
@@ -673,7 +673,7 @@ public:
...
@@ -673,7 +673,7 @@ public:
void
setEdgeThreshold
(
int
edgeThreshold_
)
{
edgeThreshold
=
edgeThreshold_
;
}
void
setEdgeThreshold
(
int
edgeThreshold_
)
{
edgeThreshold
=
edgeThreshold_
;
}
int
getEdgeThreshold
()
const
{
return
edgeThreshold
;
}
int
getEdgeThreshold
()
const
{
return
edgeThreshold
;
}
void
setFirstLevel
(
int
firstLevel_
)
{
CV_Assert
(
firstLevel
>=
0
);
firstLevel
=
firstLevel_
;
}
void
setFirstLevel
(
int
firstLevel_
)
{
CV_Assert
(
firstLevel
_
>=
0
);
firstLevel
=
firstLevel_
;
}
int
getFirstLevel
()
const
{
return
firstLevel
;
}
int
getFirstLevel
()
const
{
return
firstLevel
;
}
void
setWTA_K
(
int
wta_k_
)
{
wta_k
=
wta_k_
;
}
void
setWTA_K
(
int
wta_k_
)
{
wta_k
=
wta_k_
;
}
...
...
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