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
a324c6c6
Commit
a324c6c6
authored
May 28, 2015
by
cbalint13
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor DAISY for more opencv style.
parent
309274a4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
xfeatures2d.hpp
modules/xfeatures2d/include/opencv2/xfeatures2d.hpp
+8
-8
daisy.cpp
modules/xfeatures2d/src/daisy.cpp
+0
-0
No files found.
modules/xfeatures2d/include/opencv2/xfeatures2d.hpp
View file @
a324c6c6
...
...
@@ -222,36 +222,36 @@ public:
/**
* @param y position y on image
* @param x position x on image
* @param ori
entation
orientation on image (0->360)
* @param ori orientation on image (0->360)
* @param descriptor supplied array for descriptor storage
*/
virtual
void
get_d
escriptor
(
double
y
,
double
x
,
int
orientation
,
float
*
descriptor
)
const
=
0
;
virtual
void
GetD
escriptor
(
double
y
,
double
x
,
int
orientation
,
float
*
descriptor
)
const
=
0
;
/**
* @param y position y on image
* @param x position x on image
* @param orientation orientation on image (0->360)
* @param H homography matrix for warped grid
* @param descriptor supplied array for descriptor storage
* @param H homography matrix for warped grid
*/
virtual
bool
get_descriptor
(
double
y
,
double
x
,
int
orientation
,
double
*
H
,
float
*
descriptor
)
const
=
0
;
virtual
bool
GetDescriptor
(
double
y
,
double
x
,
int
orientation
,
float
*
descriptor
,
double
*
H
)
const
=
0
;
/**
* @param y position y on image
* @param x position x on image
* @param ori
entation
orientation on image (0->360)
* @param ori orientation on image (0->360)
* @param descriptor supplied array for descriptor storage
*/
virtual
void
get_unnormalized_d
escriptor
(
double
y
,
double
x
,
int
orientation
,
float
*
descriptor
)
const
=
0
;
virtual
void
GetUnnormalizedD
escriptor
(
double
y
,
double
x
,
int
orientation
,
float
*
descriptor
)
const
=
0
;
/**
* @param y position y on image
* @param x position x on image
* @param orientation orientation on image (0->360)
* @param H homography matrix for warped grid
* @param descriptor supplied array for descriptor storage
* @param H homography matrix for warped grid
*/
virtual
bool
get_unnormalized_descriptor
(
double
y
,
double
x
,
int
orientation
,
double
*
H
,
float
*
descriptor
)
const
=
0
;
virtual
bool
GetUnnormalizedDescriptor
(
double
y
,
double
x
,
int
orientation
,
float
*
descriptor
,
double
*
H
)
const
=
0
;
};
...
...
modules/xfeatures2d/src/daisy.cpp
View file @
a324c6c6
This diff is collapsed.
Click to expand it.
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