I have two images I1
and I2
, and I get the rotation matrix R (3*3)
and the translation vector T (3*1)
between this two images. Now I want to apply this R
and T
in I1
to get the aligned image J
from I1
. I try this code but didn't work :
J=(I1.*R)+T;
some help please