cv2.fitEllipse(): Wrong interface specification (Bug #2783)
Description
In the documentation of fitEllipse() the python interface is given as:
Nx2 numpy array (Python interface)
But actually it is
Nx1x2 numpy.int32 array (Python interface)
Associated revisions
fixed problem with Nx2 numpy arrays in geometrical functions (#2783)
Merge pull request #2783 from daferna2:master
History
Updated by Vadim Pisarevsky about 12 years ago
thanks for the report! the problem should now be fixed in 2.4 branch (i.e. cv2.fitEllipse should accept Nx2 arrays)
- Status changed from Open to Done