From: Jose-Luis Blanco-Claraco Date: Mon, 21 Oct 2013 19:17:15 +0000 (+0200) Subject: Added comment to features2d_init.cpp explaining the reason for the extra parameters. X-Git-Tag: submit/tizen_ivi/20141117.190038~2^2~874^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=77023e23667b8a4cce531d7ba62d8572a74f16a6;p=profile%2Fivi%2Fopencv.git Added comment to features2d_init.cpp explaining the reason for the extra parameters. --- diff --git a/modules/features2d/src/features2d_init.cpp b/modules/features2d/src/features2d_init.cpp index a49ea9f..fb4a0ce 100644 --- a/modules/features2d/src/features2d_init.cpp +++ b/modules/features2d/src/features2d_init.cpp @@ -176,7 +176,7 @@ CV_INIT_ALGORITHM(DenseFeatureDetector, "Feature2D.Dense", obj.info()->addParam(obj, "varyImgBoundWithScale", obj.varyImgBoundWithScale)); CV_INIT_ALGORITHM(GridAdaptedFeatureDetector, "Feature2D.Grid", - obj.info()->addParam(obj, "detector", obj.detector, false, 0, 0, "Detector algorithm."); + obj.info()->addParam(obj, "detector", obj.detector, false, 0, 0, "Detector algorithm."); // Extra params added to avoid VS2013 fatal error in opencv2/core.hpp (decl. of addParam) obj.info()->addParam(obj, "maxTotalKeypoints", obj.maxTotalKeypoints); obj.info()->addParam(obj, "gridRows", obj.gridRows); obj.info()->addParam(obj, "gridCols", obj.gridCols));