I am currently working on a project which tracks an object in 3D using two cameras. I am following a similar structure to this paper: Practical 3D Tracking Using Low-Cost Cameras. I have two cameras and have completed the calibration. I currently have an image like shown in my diagram:
From which I have the centre of the object. In the article they state that "The lines pointing towards the object from each camera give the location of the selected object in 3D". I am wondering what these vectors are and how to implement them. I am really stumped at the moment and any help would be much appreciated.
P.S
To be clear this question is specifically relating to what these vectors and and how I find them and use them.

Here is what the math looks like in 2D. 3D is similar, you just have some extra angles. First, you need a reference frame. Assume camera positions are $(C_{1x}, C_{1y})$ and $(C_{2x}, C_{2y})$, and rotated in such a way that the centers of the image are looking in directions that make angles $\alpha_1$ and $\alpha_2$ with respect to the $x$ axis. When you process the image, the object is found at angles $\beta_1$ and $\beta_2$ from the axis in the center of the image. Then we just write the equation of the line containing the object and a camera: $$\tan(\alpha_i+\beta_i)=\frac{y-C_{iy}}{x-C_{ix}}$$ You have two equations (one for each camera) with the object at the intersection of the two lines, so you need to calculate the two unknowns $x$ and $y$.