naturerobots / mesh_tools

Tools and Messages for Annotated 3D Triangle Meshes in ROS
https://wiki.ros.org/mesh_tools
BSD 3-Clause "New" or "Revised" License
229 stars 42 forks source link

Feature: mesh file import #21

Closed amock closed 8 months ago

amock commented 1 year ago

As soon as Assimp is installed on the system, it becomes possible to load other common mesh formats besides h5. Assimp can be installed by

sudo apt-get install libassimp-dev

The complete change is optional. rviz_map_plugin should work without installing Assimp. If you want to have Assimp as a required dependency, change

find_package(assimp)

to

find_package(assimp REQUIRED)