Find keypoints. If ``nonmaxSupression`` is true, responses are computed and eliminates keypoints with the smaller responses from 9-neighborhood regions.
.. ocv:function:: int ocl::FAST_OCL::calcKeyPointsLocation(const oclMat& image, const oclMat& mask)
:param image: Image where keypoints (corners) are detected. Only 8-bit grayscale images are supported.
:param mask: Optional input mask that marks the regions where we should detect features.
The function returns the amount of detected keypoints.
ocl::FAST_OCL::getKeyPoints
-----------------------------
Gets final array of keypoints.
.. ocv:function:: int ocl::FAST_OCL::getKeyPoints(oclMat& keypoints)
:param keypoints: The output vector of keypoints.
The function performs non-max suppression if needed and returns the final amount of keypoints.