This is my problem (each landmark is a marker) :
I need to express R1->R2. Aruco gives me transform between R1->RR and R2->RR.
R1 = T1.RR (with T1 = transfo matrix containing rvec and tvec)
R2 = T2.RR <=> RR = inv(T2).R2
<=> R1 = T1.inv(T2).R2
The problem is that for me, I should have R1 = inv(T2).T1.R2 but I don't know where I'm wrong ...
Thanks, Alan