Tensor4D icon indicating copy to clipboard operation
Tensor4D copied to clipboard

Camera External Parameter Matrix in NPZ Files

Open CrescentVelvet opened this issue 1 year ago • 1 comments

Camera External Parameter Matrix in NPZ Files, world_mat. The row vector length of the 3 * 3 rotation matrix of this matrix is not 1, but more than 1000. May I ask why this is. I want to use my own dataset to understand how to handle the camera external parameter matrix to ensure smooth program operation.

CrescentVelvet avatar May 06 '23 07:05 CrescentVelvet

Sorry for the delayed response, as I was busy with another project. "world_mat" can be considered as the projection matrix. It is obtained by multiplying the intrinsic and extrinsic camera parameters, which may result in larger values in the first three dimensions. Its definition aligns with the camera matrix in the NeuS dataset. Additionally, we have included a preprocessing code in the "scripts" folder that converts OpenCV camera parameters to our dataset camera parameters. Please feel free to refer to it for help.

DSaurus avatar Jun 03 '23 18:06 DSaurus