Closed robofar closed 4 months ago
Hi, different datasets save different format of camera poses, you can choose whatever convenient to you. Here we follow the original pose definition in 3DGS for the Camera
class, where R=c2w[:3, :3]
and T=w2c[:3, 3]
. So in your mentioned getWorld2View2
, the R
should be transposed to construct Rt=w2c
.
Hello. I want to write custom dataset loader. Dataset gives position and orientation of camera (in world frame).
I just want to know, for R and T, should I save
w2c
transformation orc2w
transformation. When I sayc2w
I mean, transformation that is constructed directly from the position and orientation of camera/vehicle given by dataset.I am asking, because I was trying something, but it did not work. So I want to confirm. Another question, for method
getWorld2View2
why you are transposing rotation matrix?