#include <gpu.hpp>
| Enumerator |
|---|
| LOCATION_ROW |
|
| RESPONSE_ROW |
|
| ROWS_COUNT |
|
| cv::gpu::FAST_GPU::FAST_GPU |
( |
int |
threshold, |
|
|
bool |
nonmaxSuppression = true, |
|
|
double |
keypointsRatio = 0.05 |
|
) |
| |
|
explicit |
| int cv::gpu::FAST_GPU::calcKeyPointsLocation |
( |
const GpuMat & |
image, |
|
|
const GpuMat & |
mask |
|
) |
| |
find keypoints and compute it's response if nonmaxSuppression is true return count of detected keypoints
| void cv::gpu::FAST_GPU::convertKeypoints |
( |
const Mat & |
h_keypoints, |
|
|
std::vector< KeyPoint > & |
keypoints |
|
) |
| |
convert keypoints to KeyPoint vector
| void cv::gpu::FAST_GPU::downloadKeypoints |
( |
const GpuMat & |
d_keypoints, |
|
|
std::vector< KeyPoint > & |
keypoints |
|
) |
| |
download keypoints from device to host memory
| int cv::gpu::FAST_GPU::getKeyPoints |
( |
GpuMat & |
keypoints | ) |
|
get final array of keypoints performs nonmax suppression if needed return final count of keypoints
finds the keypoints using FAST detector supports only CV_8UC1 images
| void cv::gpu::FAST_GPU::release |
( |
| ) |
|
release temporary buffer's memory
| const int cv::gpu::FAST_GPU::FEATURE_SIZE = 7 |
|
static |
| double cv::gpu::FAST_GPU::keypointsRatio |
max keypoints = keypointsRatio * img.size().area()
| bool cv::gpu::FAST_GPU::nonmaxSuppression |
| int cv::gpu::FAST_GPU::threshold |
The documentation for this class was generated from the following file: