Skip to content

Commit

Permalink
increase voxel size to improve test reliability
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminum committed Dec 19, 2024
1 parent ba2a6b1 commit 585ac77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/tests/t/pipelines/registration/Registration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ GetRegistrationTestData(core::Dtype& dtype, core::Device& device) {
data::DemoICPPointClouds pcd_fragments;
t::io::ReadPointCloud(pcd_fragments.GetPaths()[0], source_tpcd);
t::io::ReadPointCloud(pcd_fragments.GetPaths()[1], target_tpcd);
source_tpcd = source_tpcd.To(device).VoxelDownSample(0.02);
target_tpcd = target_tpcd.To(device).VoxelDownSample(0.02);
source_tpcd = source_tpcd.To(device).VoxelDownSample(0.05);
target_tpcd = target_tpcd.To(device).VoxelDownSample(0.05);

// Convert color to float values.
for (auto& kv : source_tpcd.GetPointAttr()) {
Expand Down

0 comments on commit 585ac77

Please sign in to comment.