所以我有一个包含许多成员的结构,包括一个指向 PCLVisualizer 对象的 boost 共享指针。PCLVisualizer 类是具有成员函数 updatePointcloud 的模板类。我正在尝试为模板 PointType 调用 updatePointCloud。请看下面的代码:
template <typename PointType>
class A {
struct gt_data_type {
model_struct line;
PointCloudTPtr input;
PointCloudTPtr output;
int step_size;
int segment_min_pts;
vector<float> directions;
float current_direction;
vector<line_segment> seeds;
Eigen::Vector4f prev_vector;
Eigen::Vector4f current_vector;
Eigen::Vector4f p;
typename pcl::search::KdTree<PointType>::Ptr tree;
pcl::visualization::PCLVisualizer::Ptr viewer;
line_segment prev_segment;
};
gt_data_type gt_data;
void foo(PointCloudTPtr output) {
pcl::visualization::PCLVisualizer::Ptr viewer(new pcl::visualization::PCLVisualizer("Track Viewer"));
gt_data.output = output;
gt_data.viewer = viewer;
// next line causes compile error
gt_data.viewer->updatePointCloud<PointType>(gt_data.output,"rail");
}
}
请注意,PointCloudTPtr 只是不同 shared_ptr 的 typedef。我在指示的行收到以下错误:
expected primary-expression before '>' token
如果我省略结构并通过这样做直接调用查看器成员函数:
viewer->updatePointCloud<PointType>(gt_data.output,"rail");
我的代码编译。我不明白为什么通过结构访问查看器会有什么不同。
任何帮助表示赞赏