You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I use it with a "standard" pointT-type it works fine.
If I use my own datatype it compiles, but I get undefined reference to the function above (pcl_ros::transformPointCloud) while linking.
I had included this file, but it does not changed anything. Same error.
My work arround:
I copied the function into my file and this works. Normaly this should not be necessary. :)
@Scytenpcl_ros/transforms.h only contains the declaration of the templated function. pcl_ros/impl/transforms.hpp contains the implementation. If the implementation is available to your compiler, it can instantiate it with any point type.
Hi Community,
I have an issue using this function
If I use it with a "standard" pointT-type it works fine.
If I use my own datatype it compiles, but I get undefined reference to the function above (pcl_ros::transformPointCloud) while linking.
PCL requires
#define PCL_NO_PRECOMPILE
to work with new point types (https://pointclouds.org/documentation/tutorials/adding_custom_ptype.html)
My pointT is
Is this define used by ros_pcl?
Has someone tested new pointTypes with ros_pcl?
The text was updated successfully, but these errors were encountered: