openMP---第一篇
openMP 处理for循环 ///////////////////////////////////////////////////////////////////////////////////////////// / template <typename PointInT, typename PointOutT> void pcl::MovingLeastSquares <PointInT, PointOutT>::performProcessing (PointCloudOut & output) { // Compute the number of coefficients nr_coeff_ = (order_ + 1 ) * (order_ + 2 ) / 2 ; size_t mls_result_index = 0 ; #ifdef _OPENMP // (Maximum) number of threads const unsigned int threads = threads_ == 0 ? 1 : threads_; // Create temporaries for each thread in order to avoid synchronization typename PointCloudOut::CloudVectorType projected