Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Yes, SURF_GPU support separate keypoint detection and descriptor calculation:

SURF_GPU surf;
vector<KeyPoint> keypoints;
surf(image, mask, keypoints);
sort(keypoints);
GpuMat descriptors;
surf(image, mask, keypoints, descriptors, true); // true means use provided keypoints