Attribute error: module ‘open3d’ has no attribute ‘data’
Attribute error: module ‘open3d’ has no attribute ‘data’
Open3d 在 anaconda 导航器上不可用,所以我使用 conda 安装命令在 anaconda 提示符下安装了它。
我想尝试来自 http://www.open3d.org/docs/release/tutorial/geometry/surface_reconstruction.html
的球旋转算法的基本代码
import open3d as o3d
import os
import sys
bunny = o3d.data.BunnyMesh()
gt_mesh = o3d.io.read_triangle_mesh(bunny.path)
gt_mesh.compute_vertex_normals()
但即使是 运行 第一行我也收到错误
Attribute error: module ‘open3d’ has no attribute ‘data’
我不知道这是为什么。
在 0.15 版中添加了对 open3d.data 的支持。升级 Open3d 版本然后试试这个 API.
Open3d 在 anaconda 导航器上不可用,所以我使用 conda 安装命令在 anaconda 提示符下安装了它。
我想尝试来自 http://www.open3d.org/docs/release/tutorial/geometry/surface_reconstruction.html
的球旋转算法的基本代码import open3d as o3d
import os
import sys
bunny = o3d.data.BunnyMesh()
gt_mesh = o3d.io.read_triangle_mesh(bunny.path)
gt_mesh.compute_vertex_normals()
但即使是 运行 第一行我也收到错误
Attribute error: module ‘open3d’ has no attribute ‘data’
我不知道这是为什么。
在 0.15 版中添加了对 open3d.data 的支持。升级 Open3d 版本然后试试这个 API.