Skip to content
Snippets Groups Projects
Commit 43a91553 authored by Sergi Hernandez's avatar Sergi Hernandez
Browse files

Removed some cout's.

parent 0ae9013f
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,6 @@ void ObstacleDetectionNormalsAlgorithm::cloud_all(const pcl::PointCloud<pcl::Poi
{
if (cloud_out->points[pointIndex].x > this->config_.filter_min_dist)
{
std::cout << "(" << rowIndex << "," << pointIndex << "): " << cloud_out->points[pointIndex].normal_z << "," << this->config_.max_inc << std::endl;
if (fabs(cloud_out->points[pointIndex].normal_z) > cos(this->config_.max_inc))
{
cloud_out->points[pointIndex].r=0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment