OpenCV contains a lot of support for 3D reconstruction from stereo cameras. In my case i have two cameras, and I want to know 3D coordinates of some point.
What i have:
What I want to get: Coordinates this point in 3D
I have answered the same question in this other post.
If you have extrinsic parameters, then you have the camera pose. With the camera pose and the the 2D point, you can proyect the 3D points (for each camera should be the same result if your 2D points and extrinsics are correct). You just need to convert pose to homography. I explain it in the post I linked.
Good luck!