Hi Eiscar,
actually the bundler format will give you information for each tie point in point cloud. Each tie pt would have a 3 line entry with:
<position> [a 3-vector describing the 3D position of the point]
<color> [a 3-vector describing the RGB color of the point]
<camera list> [a list of cameras with the pixel coordinates the point is measured in]
as in:6.3863331718e+00 -1.1468036016e+01 7.4827536788e+00 # 3d coords of tpt0
57 52 57 # color of tpt0
2 0 0 -1579.7280 1239.2141 1 0 -1279.4722 1113.8573 # tpt0 measured in 2 cameras (0 and 1) with keypt index and 2d pixel coordinates
1.1473254061e+00 3.6103886297e-01 5.1187924650e+00 # 3d coords of tpt1
114 125 172 # color of tpt1
4 0 3 -4805.8945 1145.1368 1 3 -4344.9888 1310.0009 6 0 4734.3164 1140.5669 7 0 4902.0049 1141.1263 # tpt1 measured in 4 cameras (0, 1, 6 and 7) with keypt index and 2d pixel coordinates
So you would not get all the keypoints info, though for each camera projection, you do get the keypoint index....