I have a question concerning a problem that was given in my Image Processing and Computer Vision Class:
Given: ->The intrinsic parameters of both cameras K=K'=1 [3x3 identity matrix] ->The fundamental matrix
Calculate i) the epipolar points of both cameras ii) the epipolar lines associated to point x=(2,2) (this is the point in the image plane of camera 1, i.e. the projection of a unknown 3D point seen by camera 1.
Solution: i) is easy. just solve the equations for F*e=0 and e'F=0 (i did that already) ii) i dont know for sure. I just know that i can calculate the epipolar line vector l by l=F*p (or Ftransposed for the other camera respectively, where p is a 3D point). is there a way to get the transformation matrix between the two cameras (i.e. the camera matrix of camera 2 if i assume camera 1 is alignet at the origin)
any help appreciated, Thanks in advance!