Skip to content

Commit

Permalink
unknown
Browse files Browse the repository at this point in the history
  • Loading branch information
jvcleave committed Dec 22, 2012
1 parent fc96308 commit fb35f9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ofxPCL.h
Expand Up @@ -244,8 +244,8 @@ void movingLeastSquares(const T1 &cloud, T2 &output_cloud_with_normals, float se
mls.setSearchRadius(search_radius);

// Reconstruct
mls.setOutputNormals(mls_normals);
mls.reconstruct(mls_points);
//mls.setOutputNormals(mls_normals);
mls.process(mls_points);

output_cloud_with_normals = T2(new typename T2::value_type);
pcl::concatenateFields(mls_points, *mls_normals, *output_cloud_with_normals);
Expand Down Expand Up @@ -316,7 +316,7 @@ ofMesh gridProjection(const T &cloud_with_normals, float resolution = 1, int pad

// Get result
gp.setInputCloud(cloud_with_normals);
gp.setSearchMethod(tree);
//gp.setSearchMethod(tree);
gp.reconstruct(triangles);

convert(cloud_with_normals, mesh);
Expand Down

0 comments on commit fb35f9b

Please sign in to comment.