Skip to content
Snippets Groups Projects
Commit 81dc4cde authored by Andreu Corominas-Murtra's avatar Andreu Corominas-Murtra
Browse files

working copy of find corners from lines

parent 667cc813
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -21,7 +21,18 @@ int CornerFinder::findCorners( const Eigen::MatrixXs & _points, std::list<lasers ...@@ -21,7 +21,18 @@ int CornerFinder::findCorners( const Eigen::MatrixXs & _points, std::list<lasers
int CornerFinder::findCorners( const std::list<laserscanutils::LineSegment> & _lines, std::list<laserscanutils::CornerPoint> & _corner_list) const int CornerFinder::findCorners( const std::list<laserscanutils::LineSegment> & _lines, std::list<laserscanutils::CornerPoint> & _corner_list) const
{ {
//TODO // //local vars
// std::list<laserscanutils::LineSegment>::iterator line_i, line_j;
//
// //loop over all lines , ij, and look for vertices greater than some threshold
// for (line_i = _lines.begin(); line_i != _lines.end(); line_i++)
// {
// for (line_j = _lines.begin(); line_j != _lines.end(); line_j++)
// {
//
// }
// }
} }
}//namespace }//namespace
......
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