From 7f9fe6f1f28cc2edcbcfce4bb9808d02a2d8b69c Mon Sep 17 00:00:00 2001 From: Kim Lindberg Schwaner Date: Fri, 11 Aug 2017 14:18:53 +0200 Subject: [PATCH] Fix doxy comment for BFMatcher::create() A missing asterisk caused doxygen to not generate documentation for the BFMatcher::create() method. --- modules/features2d/include/opencv2/features2d.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/features2d/include/opencv2/features2d.hpp b/modules/features2d/include/opencv2/features2d.hpp index 70fe4094b0..d484dc9dc2 100644 --- a/modules/features2d/include/opencv2/features2d.hpp +++ b/modules/features2d/include/opencv2/features2d.hpp @@ -1032,7 +1032,7 @@ public: virtual bool isMaskSupported() const { return true; } - /* @brief Brute-force matcher create method. + /** @brief Brute-force matcher create method. @param normType One of NORM_L1, NORM_L2, NORM_HAMMING, NORM_HAMMING2. L1 and L2 norms are preferable choices for SIFT and SURF descriptors, NORM_HAMMING should be used with ORB, BRISK and BRIEF, NORM_HAMMING2 should be used with ORB when WTA_K==3 or 4 (see ORB::ORB constructor