I have a 3D model and an image. I can manually adjust the perspective of the model using gluPerspective. I'm looking for a way to use corresponding points (probably at least 6 or 7) on the model and image to determine how to adjust the modelview matrix and projection matrix so that the model matches the image.
I've searched Google (mostly OpenCV), but everything seems to be about aligning two images or creating a model from an image. I already have the model. I just need to know what scale, rotation, camera position, and FOV is needed to make the model look like the image.
Ideally I was hoping to find a function that I could just input an array of image points and an array of model points and get back some transformation matrix. I could then somehow apply this matrix to the the model matrix and magically match the model to the image.
Thanks for any help.