Commit 5f1282af authored by Vladislav Vinogradov's avatar Vladislav Vinogradov

fix documentation warnings

parent 8a178da1
...@@ -89,7 +89,7 @@ public: ...@@ -89,7 +89,7 @@ public:
preferable choices for SIFT and SURF descriptors, NORM_HAMMING should be used with ORB, BRISK and preferable choices for SIFT and SURF descriptors, NORM_HAMMING should be used with ORB, BRISK and
BRIEF). BRIEF).
*/ */
static Ptr<DescriptorMatcher> createBFMatcher(int norm = cv::NORM_L2); static Ptr<DescriptorMatcher> createBFMatcher(int normType = cv::NORM_L2);
// //
// Utility // Utility
...@@ -248,9 +248,6 @@ public: ...@@ -248,9 +248,6 @@ public:
less than k possible matches in total. less than k possible matches in total.
@param mask Mask specifying permissible matches between an input query and train matrices of @param mask Mask specifying permissible matches between an input query and train matrices of
descriptors. 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. @param stream CUDA stream.
These extended variants of DescriptorMatcher::matchAsync methods find several best matches for each query These extended variants of DescriptorMatcher::matchAsync methods find several best matches for each query
...@@ -335,9 +332,6 @@ public: ...@@ -335,9 +332,6 @@ public:
in Pixels)! in Pixels)!
@param mask Mask specifying permissible matches between an input query and train matrices of @param mask Mask specifying permissible matches between an input query and train matrices of
descriptors. 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. @param stream CUDA stream.
For each query descriptor, the methods find such training descriptors that the distance between the For each query descriptor, the methods find such training descriptors that the distance between the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment