answered Mar 13 '17
The conversion between them is simple. Invert the rotation (transpose), then the translation is the negative of the rotated translation.
Mat R; Rodrigues(rvec, R); R = R.t(); tvec = -R*tvec; Rodrigues(R, rvec);