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
c9fb3913
Commit
c9fb3913
authored
May 21, 2015
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #234 from berak/wrap_xfeatures2d
wrapping remaining xfeature2d classes to scripting
parents
ea682d6f
c17dbb45
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
xfeatures2d.hpp
modules/xfeatures2d/include/opencv2/xfeatures2d.hpp
+8
-8
No files found.
modules/xfeatures2d/include/opencv2/xfeatures2d.hpp
View file @
c9fb3913
...
...
@@ -76,7 +76,7 @@ They are competitive alternatives to existing keypoints in particular for embedd
- An example on how to use the FREAK descriptor can be found at
opencv_source_code/samples/cpp/freak_demo.cpp
*/
class
CV_EXPORTS
FREAK
:
public
Feature2D
class
CV_EXPORTS
_W
FREAK
:
public
Feature2D
{
public
:
...
...
@@ -92,7 +92,7 @@ public:
@param nOctaves Number of octaves covered by the detected keypoints.
@param selectedPairs (Optional) user defined selected pairs indexes,
*/
static
Ptr
<
FREAK
>
create
(
bool
orientationNormalized
=
true
,
CV_WRAP
static
Ptr
<
FREAK
>
create
(
bool
orientationNormalized
=
true
,
bool
scaleNormalized
=
true
,
float
patternScale
=
22.0
f
,
int
nOctaves
=
4
,
...
...
@@ -102,11 +102,11 @@ public:
/** @brief The class implements the keypoint detector introduced by @cite Agrawal08, synonym of StarDetector. :
*/
class
CV_EXPORTS
StarDetector
:
public
FeatureDetector
class
CV_EXPORTS
_W
StarDetector
:
public
Feature2D
{
public
:
//! the full constructor
static
Ptr
<
StarDetector
>
create
(
int
maxSize
=
45
,
int
responseThreshold
=
30
,
CV_WRAP
static
Ptr
<
StarDetector
>
create
(
int
maxSize
=
45
,
int
responseThreshold
=
30
,
int
lineThresholdProjected
=
10
,
int
lineThresholdBinarized
=
8
,
int
suppressNonmaxSize
=
5
);
...
...
@@ -123,10 +123,10 @@ public:
opencv_source_code/samples/cpp/brief_match_test.cpp
*/
class
CV_EXPORTS
BriefDescriptorExtractor
:
public
DescriptorExtractor
class
CV_EXPORTS
_W
BriefDescriptorExtractor
:
public
Feature2D
{
public
:
static
Ptr
<
BriefDescriptorExtractor
>
create
(
int
bytes
=
32
);
CV_WRAP
static
Ptr
<
BriefDescriptorExtractor
>
create
(
int
bytes
=
32
);
};
/** @brief Class implementing the locally uniform comparison image descriptor, described in @cite LUCID
...
...
@@ -134,14 +134,14 @@ public:
An image descriptor that can be computed very fast, while being
about as robust as, for example, SURF or BRIEF.
*/
class
CV_EXPORTS
LUCID
:
public
DescriptorExtractor
class
CV_EXPORTS
_W
LUCID
:
public
Feature2D
{
public
:
/**
* @param lucid_kernel kernel for descriptor construction, where 1=3x3, 2=5x5, 3=7x7 and so forth
* @param blur_kernel kernel for blurring image prior to descriptor construction, where 1=3x3, 2=5x5, 3=7x7 and so forth
*/
static
Ptr
<
LUCID
>
create
(
const
int
lucid_kernel
,
const
int
blur_kernel
);
CV_WRAP
static
Ptr
<
LUCID
>
create
(
const
int
lucid_kernel
,
const
int
blur_kernel
);
};
...
...
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