0

I have two images taken from a stereo camera.How can I find Translation and Rotation Matrix using OpenCv ?

Aizen
  • 543
  • 1
  • 8
  • 17

1 Answers1

2

You can calibrate your cameras by using the function below. It will give you the translation and rotation matrices:

cv::stereoCalibrate()

More information here

JonasVautherin
  • 6,088
  • 6
  • 44
  • 72