Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用“mesh = o3d.io.read_triangle_mesh("data/1.obj")”时,我得到“[Open3D WARNING] Unable to load file data/1.obj with ASSIMP”。用 numpy 加载这个 obj 没有问题。有谁知道是什么问题?
确保路径正确。你可能需要这样的东西:
mesh = o3d.io.read_triangle_mesh("../data/1.obj")