fix documentation warnings

pull/3596/head
Vladislav Vinogradov 10 years ago
parent 8a178da1a4
commit 5f1282afdb
  1. 8
      modules/cudafeatures2d/include/opencv2/cudafeatures2d.hpp

@ -89,7 +89,7 @@ public:
preferable choices for SIFT and SURF descriptors, NORM_HAMMING should be used with ORB, BRISK and
BRIEF).
*/
static Ptr<DescriptorMatcher> createBFMatcher(int norm = cv::NORM_L2);
static Ptr<DescriptorMatcher> createBFMatcher(int normType = cv::NORM_L2);
//
// Utility
@ -248,9 +248,6 @@ public:
less than k possible matches in total.
@param mask Mask specifying permissible matches between an input query and train matrices of
descriptors.
@param compactResult Parameter used when the mask (or masks) is not empty. If compactResult is
false, the matches vector has the same size as queryDescriptors rows. If compactResult is true,
the matches vector does not contain matches for fully masked-out query descriptors.
@param stream CUDA stream.
These extended variants of DescriptorMatcher::matchAsync methods find several best matches for each query
@ -335,9 +332,6 @@ public:
in Pixels)!
@param mask Mask specifying permissible matches between an input query and train matrices of
descriptors.
@param compactResult Parameter used when the mask (or masks) is not empty. If compactResult is
false, the matches vector has the same size as queryDescriptors rows. If compactResult is true,
the matches vector does not contain matches for fully masked-out query descriptors.
@param stream CUDA stream.
For each query descriptor, the methods find such training descriptors that the distance between the

Loading…
Cancel
Save