Commit 4fd00c1a authored by Alexander Alekhin's avatar Alexander Alekhin Committed by GitHub

Merge pull request #7714 from onixie:master

Fix docs explaining the returnPoints argument of convexHull.
parents 7db43f9f b8791265
...@@ -3930,8 +3930,8 @@ to the right, and its Y axis pointing upwards. ...@@ -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 @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 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 output array is std::vector, the flag is ignored, and the output depends on the type of the
vector: std::vector\<int\> implies returnPoints=true, std::vector\<Point\> implies vector: std::vector\<int\> implies returnPoints=false, std::vector\<Point\> implies
returnPoints=false. returnPoints=true.
*/ */
CV_EXPORTS_W void convexHull( InputArray points, OutputArray hull, CV_EXPORTS_W void convexHull( InputArray points, OutputArray hull,
bool clockwise = false, bool returnPoints = true ); bool clockwise = false, bool returnPoints = true );
......
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