I'm trying to implement some form of a stereo vision. I have 2 images of the same scene, taken from different positions. I calculated the rotation + translation matrix between each other (3x4 matrix) I want to activate the rotation part of the matrix (first 3x3 block) on one image (2D RGB matrix) to rectify it. so it will be rotated and appear to be from the same angle as the other image (without the translation, same angle of the camera, but different position).
I am using python, I tried to look in open cv - here but I couldn't find the function that does this.
any ideas?
thanks!