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

Fix tensor EstimatePointWiseNormalsWithFastEigen3x3 #6980

Merged
merged 3 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
- Fix projection of point cloud to Depth/RGBD image if no position attribute is provided (PR #6880)
- Support lowercase types when reading PCD files (PR #6930)
- Fix visualization/draw ICP example and add warnings (PR #6933)
- Fix tensor EstimatePointWiseNormalsWithFastEigen3x3 (PR #6980)
- Fix alpha shape reconstruction if alpha too small for point scale (PR #6998)

## 0.13
Expand Down
4 changes: 2 additions & 2 deletions cpp/open3d/t/geometry/kernel/PointCloudImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -956,8 +956,8 @@ OPEN3D_HOST_DEVICE void EstimatePointWiseNormalsWithFastEigen3x3(
normals_ptr[1] = 0.0;
normals_ptr[2] = 0.0;
return;
} else if (covariance_ptr[0] < covariance_ptr[4] &&
covariance_ptr[0] < covariance_ptr[8]) {
} else if (covariance_ptr[4] < covariance_ptr[0] &&
covariance_ptr[4] < covariance_ptr[8]) {
normals_ptr[0] = 0.0;
normals_ptr[1] = 1.0;
normals_ptr[2] = 0.0;
Expand Down
Loading