From b879126584d1f3f8d2422e15047cf6bbb6500f1d Mon Sep 17 00:00:00 2001 From: monoid911 Date: Wed, 23 Nov 2016 20:43:52 +0900 Subject: [PATCH] Fix docs explaining the returnPoints argument of convexHull. --- modules/imgproc/include/opencv2/imgproc.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/imgproc/include/opencv2/imgproc.hpp b/modules/imgproc/include/opencv2/imgproc.hpp index 2a3173c..007a238 100644 --- a/modules/imgproc/include/opencv2/imgproc.hpp +++ b/modules/imgproc/include/opencv2/imgproc.hpp @@ -3930,8 +3930,8 @@ to the right, and its Y axis pointing upwards. @param returnPoints Operation flag. In case of a matrix, when the flag is true, the function returns convex hull points. Otherwise, it returns indices of the convex hull points. When the output array is std::vector, the flag is ignored, and the output depends on the type of the -vector: std::vector\ implies returnPoints=true, std::vector\ implies -returnPoints=false. +vector: std::vector\ implies returnPoints=false, std::vector\ implies +returnPoints=true. */ CV_EXPORTS_W void convexHull( InputArray points, OutputArray hull, bool clockwise = false, bool returnPoints = true ); -- 2.7.4