Skip to content

Commit 4e15c80

Browse files
committed
Add comments
1 parent d5f1ff1 commit 4e15c80

File tree

1 file changed

+41
-41
lines changed

1 file changed

+41
-41
lines changed

src/xyz_kitti.h

+41-41
Original file line numberDiff line numberDiff line change
@@ -104,47 +104,47 @@ typedef struct kitti_calib_t {
104104
char calib_time_velo_to_cam[100];
105105
double corner_dist;
106106

107-
double S_00[2];
108-
double K_00[9];
109-
double D_00[5];
110-
double R_00[9];
111-
double T_00[3];
112-
double S_rect_00[2];
113-
double R_rect_00[9];
114-
double P_rect_00[12];
115-
116-
double S_01[2];
117-
double K_01[9];
118-
double D_01[5];
119-
double R_01[9];
120-
double T_01[3];
121-
double S_rect_01[2];
122-
double R_rect_01[9];
123-
double P_rect_01[12];
124-
125-
double S_02[2];
126-
double K_02[9];
127-
double D_02[5];
128-
double R_02[9];
129-
double T_02[3];
130-
double S_rect_02[2];
131-
double R_rect_02[9];
132-
double P_rect_02[12];
133-
134-
double S_03[2];
135-
double K_03[9];
136-
double D_03[5];
137-
double R_03[9];
138-
double T_03[3];
139-
double S_rect_03[2];
140-
double R_rect_03[9];
141-
double P_rect_03[12];
142-
143-
double R_velo_imu[9];
144-
double T_velo_imu[3];
145-
146-
double R_cam_velo[9];
147-
double T_cam_velo[3];
107+
double S_00[2]; // Image size [pixels]
108+
double K_00[9]; // Camera 0 intrinsics
109+
double D_00[5]; // Camera 0 distortion coefficients
110+
double R_00[9]; // Rotation from camera 0 to camera 0
111+
double T_00[3]; // Translation from camera 0 to camera 0
112+
double S_rect_00[2]; // Image size after rectifcation [pixels]
113+
double R_rect_00[9]; // Rotation after rectification
114+
double P_rect_00[12]; // Projection matrix after rectification
115+
116+
double S_01[2]; // Image size [pixels]
117+
double K_01[9]; // Camera 1 intrinsics
118+
double D_01[5]; // Camera 1 distortion coefficients
119+
double R_01[9]; // Rotation from camera 0 to camera 1
120+
double T_01[3]; // Translation from camera 0 to camera 1
121+
double S_rect_01[2]; // Image size after rectifcation [pixels]
122+
double R_rect_01[9]; // Rotation after rectification
123+
double P_rect_01[12]; // Projection matrix after rectification
124+
125+
double S_02[2]; // Image size [pixels]
126+
double K_02[9]; // Camera 2 intrinsics
127+
double D_02[5]; // Camera 2 distortion coefficients
128+
double R_02[9]; // Rotation from camera 0 to camera 2
129+
double T_02[3]; // Translation from camera 0 to camera 2
130+
double S_rect_02[2]; // Image size after rectifcation [pixels]
131+
double R_rect_02[9]; // Rotation after rectification
132+
double P_rect_02[12]; // Projection matrix after rectification
133+
134+
double S_03[2]; // Image size [pixels]
135+
double K_03[9]; // Camera 3 intrinsics
136+
double D_03[5]; // Camera 3 distortion coefficients
137+
double R_03[9]; // Rotation from camera 0 to camera 3
138+
double T_03[3]; // Translation from camera 0 to camera 3
139+
double S_rect_03[2]; // Image size after rectifcation [pixels]
140+
double R_rect_03[9]; // Rotation after rectification
141+
double P_rect_03[12]; // Projection matrix after rectification
142+
143+
double R_velo_imu[9]; // Rotation from imu to velodyne
144+
double T_velo_imu[3]; // Translation from imu to velodyne
145+
146+
double R_cam_velo[9]; // Rotation from velodyne to camera
147+
double T_cam_velo[3]; // Translation from velodyne to camera
148148
double delta_f[2];
149149
double delta_c[2];
150150
} kitti_calib_t;

0 commit comments

Comments
 (0)