opencv/modules/imgproc
Roman Donchenko 2dc8642508 Changed convexHull's documentation to essentially invert the meaning of `clockwise`.
The orientation of convexHull's result is currently the opposite of what the
documentation would suggest:

>>> import cv2, numpy as np
>>> points = np.array([[0,0],[0,1],[1,0]], dtype=np.int32)
>>> cv2.convexHull(points, clockwise=False)
array([[[1, 0]],
       [[0, 1]],
       [[0, 0]]], dtype=int32)
>>> cv2.convexHull(points, clockwise=True)
array([[[0, 0]],
       [[0, 1]],
       [[1, 0]]], dtype=int32)

Changing the function itself is probably not a good idea at this point, so
this fixes the documentation by flipping the coordinate system.

I also removed the mention of the origin, since it's irrelevant for this
function.
2013-04-26 14:22:55 +04:00
..
doc Changed convexHull's documentation to essentially invert the meaning of `clockwise`. 2013-04-26 14:22:55 +04:00
include/opencv2/imgproc CPU implementation of CLAHE 2013-03-25 17:44:31 +04:00
perf Eliminate the need of ::testsing::ValuesIn() for CV_ENUM 2013-04-15 19:39:49 +04:00
src Build warning fixes. 2013-04-04 07:29:53 -07:00
test Added tests for RGB to YUV420p color conversion 2013-02-25 17:01:07 +04:00
CMakeLists.txt Global CMake reorganization: 2012-02-03 11:26:49 +00:00