Skip to content
Snippets Groups Projects
Commit dbdbdf69 authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

couts and prints

parent 4b53de7f
No related branches found
No related tags found
2 merge requests!30Release after RAL,!29After 2nd RAL submission
......@@ -409,7 +409,8 @@ MatchPolyline2DPtr computeBestSqDist(const Eigen::MatrixXs& _points_A, bool _fir
best_match->normalized_score_ = normalized_score;
best_match->overlap_dist_ = overlap_dist;
best_match->print();
if (print)
best_match->print();
}
}
......@@ -541,7 +542,7 @@ MatchPolyline2DList computeBestRigidTrans(const Eigen::MatrixXs& _points_A, bool
* 2. A closed: [-last_A, 0]
*/
int last_A, last_B, offset, max_offset, min_offset, from_A, to_A, from_B, to_B, N_overlap;
int last_A, last_B, offset, max_offset, min_offset, from_A, to_A, from_B, to_B, N_overlap(0);
last_A = _points_A.cols() - 1;
last_B = _points_B.cols() - 1;
......
This diff is collapsed.
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