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
764d55b8
Commit
764d55b8
authored
Jan 13, 2015
by
Vladislav Vinogradov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add extended documentation for Features2DAsync
parent
f960a570
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
1 deletion
+26
-1
cudafeatures2d.hpp
modules/cudafeatures2d/include/opencv2/cudafeatures2d.hpp
+26
-1
No files found.
modules/cudafeatures2d/include/opencv2/cudafeatures2d.hpp
View file @
764d55b8
...
...
@@ -233,28 +233,47 @@ private:
// Feature2DAsync
//
/** @brief Abstract base class for CUDA asynchronous 2D image feature detectors and descriptor extractors.
*/
class
CV_EXPORTS
Feature2DAsync
{
public
:
virtual
~
Feature2DAsync
();
/** @brief Detects keypoints in an image.
@param image Image.
@param keypoints The detected keypoints.
@param mask Mask specifying where to look for keypoints (optional). It must be a 8-bit integer
matrix with non-zero values in the region of interest.
@param stream CUDA stream.
*/
virtual
void
detectAsync
(
InputArray
image
,
OutputArray
keypoints
,
InputArray
mask
=
noArray
(),
Stream
&
stream
=
Stream
::
Null
());
/** @brief Computes the descriptors for a set of keypoints detected in an image.
@param image Image.
@param keypoints Input collection of keypoints.
@param descriptors Computed descriptors. Row j is the descriptor for j-th keypoint.
@param stream CUDA stream.
*/
virtual
void
computeAsync
(
InputArray
image
,
OutputArray
keypoints
,
OutputArray
descriptors
,
Stream
&
stream
=
Stream
::
Null
());
/** Detects keypoints and computes the descriptors. */
virtual
void
detectAndComputeAsync
(
InputArray
image
,
InputArray
mask
,
OutputArray
keypoints
,
OutputArray
descriptors
,
bool
useProvidedKeypoints
=
false
,
bool
useProvidedKeypoints
=
false
,
Stream
&
stream
=
Stream
::
Null
());
/** Converts keypoints array from internal representation to standard vector. */
virtual
void
convert
(
InputArray
gpu_keypoints
,
std
::
vector
<
KeyPoint
>&
keypoints
)
=
0
;
};
...
...
@@ -263,6 +282,8 @@ public:
// FastFeatureDetector
//
/** @brief Wrapping class for feature detection using the FAST method.
*/
class
CV_EXPORTS
FastFeatureDetector
:
public
cv
::
FastFeatureDetector
,
public
Feature2DAsync
{
public
:
...
...
@@ -288,6 +309,10 @@ public:
// ORB
//
/** @brief Class implementing the ORB (*oriented BRIEF*) keypoint detector and descriptor extractor
*
* @sa cv::ORB
*/
class
CV_EXPORTS
ORB
:
public
cv
::
ORB
,
public
Feature2DAsync
{
public
:
...
...
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