ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Hello there,
I think your code is having a minor typo mistake.
PCFilter() : Node("pointcloud_filters") {
pub_ = this->create_publisher<pcl::PointCloud<pcl::PointXYZI>>("filters_output", 1);
...}
On this line you have added extra ">" Can you please have a look at this. <pcl::PointCloud<pcl::PointXYZI>>
2 | No.2 Revision |
Hello there,
I think your code is having a minor typo mistake.
PCFilter() : Node("pointcloud_filters") {
pub_ = this->create_publisher<pcl::PointCloud<pcl::PointXYZI>>("filters_output", 1);
1); # Typo Extra <
...}
On this line you have added extra ">" Can you please have a look at this. <pcl::PointCloud<pcl::PointXYZI>>
3 | No.3 Revision |
Hello there,
I think your code is having a minor typo mistake.
PCFilter() : Node("pointcloud_filters") {
pub_ = this->create_publisher<pcl::PointCloud<pcl::PointXYZI>>("filters_output", 1); # Typo Extra <
>
...}
On this line you have added extra ">" Can you please have a look at this. <pcl::PointCloud<pcl::PointXYZI>>
4 | No.4 Revision |
Hello there,
I think your code is having a minor typo mistake.
PCFilter() : Node("pointcloud_filters") {
pub_ = this->create_publisher<pcl::PointCloud<pcl::PointXYZI>>("filters_output", 1);
# Typo Extra >
...}
On this line you have added extra ">" Can you please have a look at this. <pcl::PointCloud<pcl::PointXYZI>>
Instead of that you can use:
typedef pcl::PointCloud<pcl::PointXYZ> PCLCloud;
graspub.publish(*grasp_points);
5 | No.5 Revision |
Hello there,
I think your code is having a minor typo mistake.
PCFilter() : Node("pointcloud_filters") {
pub_ = this->create_publisher<pcl::PointCloud<pcl::PointXYZI>>("filters_output", 1);
# Typo Extra >
...}
On this line you have added extra ">" Can you please have a look at this. <pcl::PointCloud<pcl::PointXYZI>>
Instead of that you can use:use: #q187588
typedef pcl::PointCloud<pcl::PointXYZ> PCLCloud;
graspub.publish(*grasp_points);