Skip to content

Commit 7a168fa

Browse files
committed
Fix formatting
1 parent 572fb3b commit 7a168fa

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

registration/include/pcl/registration/ia_fpcs.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ namespace pcl {
4545
/** \brief Compute the mean point density of a given point cloud.
4646
* \param[in] cloud pointer to the input point cloud
4747
* \param[in] max_dist maximum distance of a point to be considered as a neighbor
48-
* \param[in] num_threads number of threads to use (default = 1, only used if OpenMP flag
49-
* is set) \return the mean point density of a given point cloud
48+
* \param[in] num_threads number of threads to use (default = 1, only used if OpenMP
49+
* flag is set) \return the mean point density of a given point cloud
5050
*/
5151
template <typename PointT>
5252
inline float
@@ -58,8 +58,8 @@ getMeanPointDensity(const typename pcl::PointCloud<PointT>::ConstPtr& cloud,
5858
* \param[in] cloud pointer to the input point cloud
5959
* \param[in] indices the vector of point indices to use from \a cloud
6060
* \param[in] max_dist maximum distance of a point to be considered as a neighbor
61-
* \param[in] num_threads number of threads to use (default = 1, only used if OpenMP flag
62-
* is set) \return the mean point density of a given point cloud
61+
* \param[in] num_threads number of threads to use (default = 1, only used if OpenMP
62+
* flag is set) \return the mean point density of a given point cloud
6363
*/
6464
template <typename PointT>
6565
inline float

registration/include/pcl/registration/impl/gicp.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ GeneralizedIterativeClosestPoint<PointSource, PointTarget, Scalar>::computeCovar
8484
if (cloud_covariances.size() < cloud->size())
8585
cloud_covariances.resize(cloud->size());
8686

87-
#pragma omp parallel for num_threads(num_threads_) schedule(dynamic, 32) \
87+
#pragma omp parallel for num_threads(num_threads_) schedule(dynamic, 32) \
8888
shared(cloud, cloud_covariances) firstprivate(mean, cov, nn_indices, nn_dist_sq)
8989
for (std::ptrdiff_t i = 0; i < static_cast<std::ptrdiff_t>(cloud->size()); ++i) {
9090
const PointT& query_point = (*cloud)[i];

0 commit comments

Comments
 (0)