@@ -326,7 +326,7 @@ namespace pcl
326326 // thrust::counting_iterator<int> first (0);
327327 // Input: Point Cloud, Indices
328328 // Output: Hypotheses
329- transform (// first, first + max_iterations,
329+ thrust:: transform (// first, first + max_iterations,
330330 // index_sequence_begin,
331331 // index_sequence_begin + max_iterations,
332332 randoms.begin (), randoms.begin () + max_iterations,
@@ -360,7 +360,7 @@ namespace pcl
360360 // thrust::counting_iterator<int> first (0);
361361 // Input: Point Cloud, Indices
362362 // Output: Hypotheses
363- transform (// first, first + max_iterations,
363+ thrust:: transform (// first, first + max_iterations,
364364 // index_sequence_begin,
365365 // index_sequence_begin + max_iterations,
366366 randoms.begin (), randoms.begin () + max_iterations,
@@ -555,7 +555,7 @@ namespace pcl
555555 coefficients.z = model_coefficients[2 ];
556556 coefficients.w = model_coefficients[3 ];
557557
558- return (int ) count_if (
558+ return (int ) thrust:: count_if (
559559 make_zip_iterator (make_tuple (input_->points .begin (), indices_->begin ())),
560560 make_zip_iterator (make_tuple (input_->points .begin (), indices_->begin ())) +
561561 indices_->size (),
@@ -608,7 +608,7 @@ namespace pcl
608608 {
609609 // pcl::ScopeTime t ("transform");
610610 // Send the data to the device
611- transform (
611+ thrust:: transform (
612612 make_zip_iterator (make_tuple (input_->points .begin (), indices_->begin ())),
613613 make_zip_iterator (make_tuple (input_->points .begin (), indices_->begin ())) +
614614 nr_points,
@@ -667,7 +667,7 @@ namespace pcl
667667 {
668668 // pcl::ScopeTime t ("transform");
669669 // Send the data to the device
670- transform (
670+ thrust:: transform (
671671 make_zip_iterator (make_tuple (input_->points .begin (), indices_->begin ())),
672672 make_zip_iterator (make_tuple (input_->points .begin (), indices_->begin ())) +
673673 nr_points,
0 commit comments