UkcheolShin / MS2-MultiSpectralStereoDataset

This is the official GitHub page of the Multi-Spectral Stereo (MS2) dataset described in CVPR 2023 paper.
https://sites.google.com/view/multi-spectral-stereo-dataset
47 stars 4 forks source link

How to get the extrinsic parameters between left rgb and left thr? #2

Closed JialeiXu closed 1 year ago

JialeiXu commented 1 year ago

Thank you for your work! According to your code: ext_NIR2THR = np.concatenate([calib['R_nir2thr'], calib['T_nir2thr']0.001], axis=1) # mm -> m scale conversion. ext_NIR2RGB = np.concatenate([calib['R_nir2rgb'], calib['T_nir2rgb']0.001], axis=1) ext_THR2NIR = np.linalg.inv(np.concatenate([ext_NIR2THR, [[0,0,0,1]]],axis=0)) ext_THR2RGB = np.matmul(np.concatenate([ext_NIR2RGB, [[0,0,0, 1]]],axis=0), ext_THR2NIR) ext_RGB2NIR = np.linalg.inv(np.concatenate([ext_NIR2RGB, [[0,0,0,1]]],axis=0)) ext_RGB2THR = np.linalg.inv(ext_THR2RGB)

I get the ext_RGB2THR, can it express extrinsic parameters from left rgb to left thr?

UkcheolShin commented 1 year ago

Yes, it indicates the extrinsic parameter from left RGB to left thermal camera.

JialeiXu commented 1 year ago

Thanks