File tree Expand file tree Collapse file tree 6 files changed +12
-2
lines changed
features/include/pcl/features
filters/include/pcl/filters
keypoints/include/pcl/keypoints
registration/include/pcl/registration
surface/include/pcl/surface Expand file tree Collapse file tree 6 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,8 @@ namespace pcl
114
114
const Eigen::Vector3f &normal,
115
115
Eigen::Vector3f &gradient);
116
116
117
- protected:
117
+ using PCLBase<PointInT>::num_threads_;
118
+
118
119
// /intensity field accessor structure
119
120
IntensitySelectorT intensity_;
120
121
};
Original file line number Diff line number Diff line change @@ -139,6 +139,9 @@ namespace pcl
139
139
140
140
inline const std::string&
141
141
getClassName () const { return (name_); }
142
+
143
+ protected:
144
+ using PCLBase<PointT>::num_threads_;
142
145
143
146
private:
144
147
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ namespace pcl
72
72
class RadiusOutlierRemoval : public FilterIndices <PointT>
73
73
{
74
74
protected:
75
+ using PCLBase<PointT>::num_threads_;
75
76
using PointCloud = typename FilterIndices<PointT>::PointCloud;
76
77
using PointCloudPtr = typename PointCloud::Ptr;
77
78
using PointCloudConstPtr = typename PointCloud::ConstPtr;
Original file line number Diff line number Diff line change @@ -165,6 +165,8 @@ namespace pcl
165
165
}
166
166
167
167
protected:
168
+ using PCLBase<PointInT>::num_threads_;
169
+
168
170
bool
169
171
initCompute () override ;
170
172
void detectKeypoints (PointCloudOut &output) override ;
Original file line number Diff line number Diff line change @@ -69,7 +69,6 @@ class CorrespondenceEstimationBase : public PCLBase<PointSource> {
69
69
using PCLBase<PointSource>::input_;
70
70
using PCLBase<PointSource>::indices_;
71
71
using PCLBase<PointSource>::setIndices;
72
- using PCLBase<PointSource>::num_threads_;
73
72
74
73
using KdTree = pcl::search::KdTree<PointTarget>;
75
74
using KdTreePtr = typename KdTree::Ptr;
@@ -323,6 +322,8 @@ class CorrespondenceEstimationBase : public PCLBase<PointSource> {
323
322
clone () const = 0 ;
324
323
325
324
protected:
325
+ using PCLBase<PointSource>::num_threads_;
326
+
326
327
/* * \brief The correspondence estimation method name. */
327
328
std::string corr_name_;
328
329
Original file line number Diff line number Diff line change @@ -231,6 +231,8 @@ namespace pcl
231
231
}
232
232
233
233
protected:
234
+ using PCLBase<PointNT>::num_threads_;
235
+
234
236
/* * \brief Class get name method. */
235
237
std::string
236
238
getClassName () const override { return (" Poisson" ); }
You can’t perform that action at this time.
0 commit comments