Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

In rgbd_sequence, when tpose is not matched, why R, t are set to identity matrix? #7

Open
xy-guo opened this issue May 11, 2019 · 2 comments

Comments

@xy-guo
Copy link

xy-guo commented May 11, 2019

if tpose:
timestamp_pose = [tpose] + self.groundtruth_dict[tpose]
T = transform44(timestamp_pose)
T = np.linalg.inv(T) # convert to world to cam
R = T[:3,:3]
t = T[:3,3]
else:
R = np.eye(3)
t = np.array([0,0,0],dtype=np.float)

Dear authors,

In rgbd_sequence, when tpose is not matched, why R, t are set to identity matrix?

Thanks

@benjaminum
Copy link
Collaborator

This is a workaround to make the class work for the sequences without public ground truth.
For sequences with ground truth tpose should always be matched.

@xy-guo
Copy link
Author

xy-guo commented May 13, 2019

For some sequences such as fr1/desk2, there are actually several frames (9 out of 640 for fr1/desk2) not matched with ground-truth poses. This causes large evaluation errors.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants