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

6 ビュー (過去 30 日間)
Goku
Goku 2017 年 8 月 28 日
コメント済み: Elizabeth Reese 2017 年 8 月 30 日
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 件のコメント
Elizabeth Reese
Elizabeth Reese 2017 年 8 月 30 日
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.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeCamera Calibration についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by