Skip to content

Commit

Permalink
Remove uneeded CLI output
Browse files Browse the repository at this point in the history
  • Loading branch information
arntanguy committed Oct 7, 2020
1 parent 9d32b3f commit e6970ed
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/mesh_sampling.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,6 @@ void create_cloud(const aiScene * scene, unsigned N, const bfs::path & out_path,
std::cerr << "Saving to " << out << " failed." << std::endl;
exit(1);
}
else
{
std::cout << "Pointcloud saved to " << out << std::endl;
}
}

int main(int argc, char ** argv)
Expand Down Expand Up @@ -128,7 +124,6 @@ int main(int argc, char ** argv)
return -1;
}

std::cout << "Sampling " << N << " points from " << in_path << std::endl;
if(cloud_type == "xyz")
{
create_cloud<pcl::PointXYZ>(mesh->scene(), N, out_p, cloud_binary);
Expand Down

0 comments on commit e6970ed

Please sign in to comment.