Skip to content

Replace VNL with Eigen in CorrespondenceFunction::ComputeUpdates #2388

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

Open
akenmorris opened this issue Jun 3, 2025 · 0 comments
Open

Replace VNL with Eigen in CorrespondenceFunction::ComputeUpdates #2388

akenmorris opened this issue Jun 3, 2025 · 0 comments
Assignees

Comments

@akenmorris
Copy link
Contributor

In a large dataset, the initial iterations are dominated by VNL matrix multiplication.

e.g.

gramMat = points_minus_mean.transpose() * points_minus_mean;
vnl_matrix_type Q = points_minus_mean * pinvMat;

Eigen is significantly faster and should be used instead.

@akenmorris akenmorris self-assigned this Jun 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant