We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efee4e5 commit 08e4bf6Copy full SHA for 08e4bf6
1 file changed
src/diffCheck/geometry/DFPointCloud.cc
@@ -156,7 +156,7 @@ namespace diffCheck::geometry
156
}
157
for (auto &normal : O3DPointCloud->normals_)
158
{
159
- if(normal.z() < -0.8)
+ if(normal.z() < -0.1)
160
161
normal = -normal;
162
@@ -173,7 +173,7 @@ namespace diffCheck::geometry
173
this->Normals.clear();
174
for (int i = 0; i < cilantroPointCloud->normals.cols(); i++)
175
176
- if(cilantroPointCloud->normals.col(i).z() < -0.8)
+ if(cilantroPointCloud->normals.col(i).z() < -0.1)
177
178
cilantroPointCloud->normals.col(i) = -cilantroPointCloud->normals.col(i);
179
0 commit comments