First time here? Check out the FAQ!
answered 2017-03-13 17:46:14 -0600
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);