-
-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
small bug with ros-noetic-ros-numpy #366
Comments
Thanks! I guess it is the issue tracked in eric-wieser/ros_numpy#37 and fixed by eric-wieser/ros_numpy#36. Probably we can just add a patch for it, are you interested in contributing the patch to the repo? |
An alternative may be to switch to the ros-o version: https://github.com/ros-o/ros_numpy . |
Hi Silvio, |
Yes please, that'd be great! |
I added the patch, but it needs rebuilding |
Will be part of #418 |
Solution to issue cannot be found in the documentation.
Issue
Hi all,
I have found a small bug that is related to the fact that numpy 1.24.3 does not support anymore numpy.float . in the script point_cloud2.py line 224
def get_xyz_points(cloud_array, remove_nans=True, dtype=np.float):
should be changed to
def get_xyz_points(cloud_array, remove_nans=True, dtype=float):
after that it seems to work
Installed packages
Environment info
The text was updated successfully, but these errors were encountered: