Hi, yes you got it right:
- Socket 0 is RGB (middle one)
- Socket 1 is right stereo
- Socket 2 is left stereo
The toCameraSocket
tells which camera the position is relative to. Usually they are relative to socket 0 (RGB), which is the center and used as origin.
So for example, if you see:
"specTranslation": { "x": -7.5, ... },
"toCameraSocket": 2
that means this camera is 7.5 cm to the left of camera 2, not from the center directly. You have to check which socket itβs using as reference.
In your calibration:
- Left cam (socket 2) is at +3.75 cm from RGB
- Right cam (socket 1) is at β7.5 cm from left β so it ends up at β3.75 cm from RGB
This gives stereo baseline of 7.5 cm, and RGB camera is in the middle, between the two.
Hope it helps !