Where are the docs for Python's cv2.stereoRectify?

asked 2015-08-21 17:19:32 -0600

benbloom gravatar image

They don't seem to be in the normal place.

Though, the function cv2.stereoRectify(...) does seem to exist (Eclipse finds it in the cv2 .so file).

Does anyone know where the docs are? Or does anyone even have the docstring?

edit retag flag offensive close merge delete

Comments

can't tell about 2.4, but opencv3 has:

>>> help(cv2.stereoRectify)
Help on built-in function stereoRectify:

stereoRectify(...)
    stereoRectify(cameraMatrix1, distCoeffs1, cameraMatrix2, distCoeffs2, imageS
ize, R, T[, R1[, R2[, P1[, P2[, Q[, flags[, alpha[, newImageSize]]]]]]]]) -> R1,
 R2, P1, P2, Q, validPixROI1, validPixROI2
berak gravatar imageberak ( 2015-08-21 23:26:31 -0600 )edit