Ask Your Question

RandomGuy's profile - activity

2016-10-25 11:06:16 -0600 commented question Definition of python functions

I am looking for python definitions for some opencv functions. By pyton definition I mean, what are the input and output parameters.

I couldn't python definitions for functions that were newly added in OpenCV 3.0.

In particular, I am looking for python definitions for following functions: cv2.findEssentialMat cv2.recoverPose

--RG

2016-10-24 23:35:08 -0600 asked a question Definition of python functions

Hi,

I am using camera pose estimation python functions in OpenCV 3.0.0:

E, mask = cv2.findEssentialMat(p1, p0, focal, pp, cv2.RANSAC, 0.999, 1.0); R, t = recoverPose(E, p1, p0, focal, pp, mask);

The definition seems to be wrong.

Where can I find the python definitions of these 3.0.0 functions.

Thanks.