From: Vladislav Vinogradov Date: Thu, 15 Jan 2015 07:34:43 +0000 (+0300) Subject: fix documentation warnings X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~2714^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dccdadc38a0268720eef4bb8bdc9bce836d90af6;p=platform%2Fupstream%2Fopencv.git fix documentation warnings --- diff --git a/modules/cudaobjdetect/include/opencv2/cudaobjdetect.hpp b/modules/cudaobjdetect/include/opencv2/cudaobjdetect.hpp index 31a6a94..ce916b2 100644 --- a/modules/cudaobjdetect/include/opencv2/cudaobjdetect.hpp +++ b/modules/cudaobjdetect/include/opencv2/cudaobjdetect.hpp @@ -52,13 +52,13 @@ /** @addtogroup cuda @{ - @defgroup cuda_objdetect Object Detection + @defgroup cudaobjdetect Object Detection @} */ namespace cv { namespace cuda { -//! @addtogroup cuda_objdetect +//! @addtogroup cudaobjdetect //! @{ // @@ -172,10 +172,6 @@ public: @param img Source image. See cuda::HOGDescriptor::detect for type limitations. @param found_locations Detected objects boundaries. @param confidences Optional output array for confidences. - @param hit_threshold Threshold for the distance between features and SVM classifying plane. See - cuda::HOGDescriptor::detect for details. - @param win_stride Window stride. It must be a multiple of block stride. - @param padding Mock parameter to keep the CPU interface compatibility. It must be (0,0). */ virtual void detectMultiScale(InputArray img, std::vector& found_locations, @@ -248,6 +244,7 @@ public: @param image Matrix of type CV_8U containing an image where objects should be detected. @param objects Buffer to store detected objects (rectangles). + @param stream CUDA stream. To get final array of detected objects use CascadeClassifier::convert method.