add missing template parameters

This commit is contained in:
Jane Tournois 2022-10-13 17:11:39 +02:00
parent 536c35fac5
commit 45c8d0ef99
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ void detect_features_on_bbox_with_know_word_type(const CGAL::Image_3& image,
using Polylines = std::vector<Polyline_type>;
Polylines polylines_on_bbox;
CGAL::polylines_to_protect(image, polylines_on_bbox);
CGAL::polylines_to_protect<Point_3, Word_type>(image, polylines_on_bbox);
domain.add_features(polylines_on_bbox.begin(), polylines_on_bbox.end());
}