Assume a pinhole camera (basically a camera with no lens, just a small hole light must pass though to reach a detector) is looking at an object which has well defined dimensions in 3D (we can describe it for (x,y,z)). This camera can have any orientation we wish (so we, basically, know its orientation). how do i go about calculating the way the image will be formed on the camera image sensor? I already know the two basic equations would be of the form:
$x=\frac{t_{11}X+t_{12}Y+t_{13}}{t_{31}X+t_{32}Y+t_{33}}$ and $y=\frac{t_{21}X+t_{22}Y+t_{23}}{t_{31}X+t_{32}Y+t_{33}}$
yet i can't seem to figure out the values for the $t_{ij}$ coefficients. from what i gather, they'll be somhow connected to the extrinsic rotation matrix $ C =\begin{bmatrix} r_{11} & r_{12} & r_{13} & t_{1} \\ r_{21} & r_{22} & r_{23} & t_{2} \\ r_{31} & r_{32} & r_{33} & t_{3} \end{bmatrix}$
but I'm not sure how.