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
f2d2c8db
Commit
f2d2c8db
authored
Nov 29, 2011
by
Alexander Mordvintsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
exposed SurfFeatureDetector and SurfDescriptorExtractor to python
parent
782ccc18
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
features2d.hpp
modules/features2d/include/opencv2/features2d/features2d.hpp
+4
-4
No files found.
modules/features2d/include/opencv2/features2d/features2d.hpp
View file @
f2d2c8db
...
...
@@ -1516,10 +1516,10 @@ protected:
SIFT
sift
;
};
class
CV_EXPORTS
SurfFeatureDetector
:
public
FeatureDetector
class
CV_EXPORTS
_W
SurfFeatureDetector
:
public
FeatureDetector
{
public
:
SurfFeatureDetector
(
double
hessianThreshold
=
400.
,
int
octaves
=
3
,
int
octaveLayers
=
4
,
bool
upright
=
false
);
CV_WRAP
SurfFeatureDetector
(
double
hessianThreshold
=
400.
,
int
octaves
=
3
,
int
octaveLayers
=
4
,
bool
upright
=
false
);
virtual
void
read
(
const
FileNode
&
fn
);
virtual
void
write
(
FileStorage
&
fs
)
const
;
...
...
@@ -1901,10 +1901,10 @@ protected:
/*
* SurfDescriptorExtractor
*/
class
CV_EXPORTS
SurfDescriptorExtractor
:
public
DescriptorExtractor
class
CV_EXPORTS
_W
SurfDescriptorExtractor
:
public
DescriptorExtractor
{
public
:
SurfDescriptorExtractor
(
int
nOctaves
=
4
,
int
nOctaveLayers
=
2
,
bool
extended
=
false
,
bool
upright
=
false
);
CV_WRAP
SurfDescriptorExtractor
(
int
nOctaves
=
4
,
int
nOctaveLayers
=
2
,
bool
extended
=
false
,
bool
upright
=
false
);
virtual
void
read
(
const
FileNode
&
fn
);
virtual
void
write
(
FileStorage
&
fs
)
const
;
...
...
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