1

I am trying to find the Pose of a object using POSIT algorithm.Implementing the code in python. In tutorials that I found on google all examples are in c++. But how to do that in python.

In c++

cvPOSIT( positObject, &imagePoints[0], FOCAL_LENGTH, criteria, rotation_matrix, translation_vector );

What is the function call line for cvPOSIT in python cv2?

1 Answer 1

4

cvPOSIT is obsolete, and it's functionality is replaced by solvePnP. There's a great tutorial here, and heaps more information out there that should be easier to find now.

Sign up to request clarification or add additional context in comments.

1 Comment

As per cvPOSIT algo we need minimum of 4 non-coplanar object coordinate points right to find Pose of object. What about this in solvePnP

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.