opencv/modules/imgproc/include/opencv2
abidrahmank 37f4e400e4 Added cv2.boxPoints() functionality to Python bindings (Feature #2023)
http://www.code.opencv.org/issues/2023

eg:

In [3]: box = ((10,10),(5,5),0)

In [4]: cv2.boxPoints(box)
Out[4]:
array([[  7.5,  12.5],
       [  7.5,   7.5],
       [ 12.5,   7.5],
       [ 12.5,  12.5]], dtype=float32)
2013-06-24 12:13:59 +05:30
..
imgproc Minimize usages of legacy C API inside the library 2013-04-16 12:00:02 +04:00
imgproc.hpp Added cv2.boxPoints() functionality to Python bindings (Feature #2023) 2013-06-24 12:13:59 +05:30