Skip to content

Commit 08e4bf6

Browse files
feat: parameter tweaking in DFPointCloud
1 parent efee4e5 commit 08e4bf6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/diffCheck/geometry/DFPointCloud.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ namespace diffCheck::geometry
156156
}
157157
for (auto &normal : O3DPointCloud->normals_)
158158
{
159-
if(normal.z() < -0.8)
159+
if(normal.z() < -0.1)
160160
{
161161
normal = -normal;
162162
}
@@ -173,7 +173,7 @@ namespace diffCheck::geometry
173173
this->Normals.clear();
174174
for (int i = 0; i < cilantroPointCloud->normals.cols(); i++)
175175
{
176-
if(cilantroPointCloud->normals.col(i).z() < -0.8)
176+
if(cilantroPointCloud->normals.col(i).z() < -0.1)
177177
{
178178
cilantroPointCloud->normals.col(i) = -cilantroPointCloud->normals.col(i);
179179
}

0 commit comments

Comments
 (0)