How do I determine the position of camera2 after Stereo Camera calibration ?

6 vues (au cours des 30 derniers jours)
Goku
Goku le 28 Août 2017
Commenté : Elizabeth Reese le 30 Août 2017
I ran the MATLAB example:
openExample('vision/StereoCalibrationExample')
Now I would like to add two 3D points to the "showExtrinsics" figure. One at the Camera1 center and the other at Camera2 center. For which I use the code:
showExtrinsics(params);
hold on
scatter3(0,0,0,'*');
scatter3(params.TranslationOfCamera2(1),params.TranslationOfCamera2(2),params.TranslationOfCamera2(3),'*');
As you can see the plot is wrong, I even tried to interchange the Y and Z axis, I cannot figure out why. Could someone guide me?
  1 commentaire
Elizabeth Reese
Elizabeth Reese le 30 Août 2017
I think you are on the right track, but you can instead take the position of camera 1 and subtract the TranslationOfCamera2.
scatter3(-params.TranslationOfCamera2(1),-params.TranslationOfCamera2(2),-params.TranslationOfCamera2(3),'*');
By visual inspection, this puts the "*" in the center of the second camera.

Connectez-vous pour commenter.

Réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by