I want to obtain a relative 3D rotation from the homography between two images. A way of doing this would be decomposing the homography matrix (maybe using opencv decomposeHomographyMat) . However, I want to do this with an uncalibrated camera (no intrinsics matrix to use in the homography decomposition). Also, I'm interested in the general case of any rigid transformation between the cameras that took the images, not necessarily a pure rotation.
Is this possible at all? any references? it feels to me there should be some way of obtaining at least an estimate of this relative rotation without the intrinsics matrix.