Core features核心功能

  • Simple installation via conda and pip  通过conda和pip简单安装
  • 3D data structures  三维数据结构
  • 3D data processing algorithms  三维数据处理算法
  • Scene reconstruction现场重建
  • Surface alignment  表面对齐
  • PBR rendering  PBR呈现
  • 3D visualization  三维可视化
  • Python binding  Python绑定

 

 

www.open3d.org/docs/release/introduction.html

安装:

  pip

  

随机生成点云:

import numpy as np
import open3d as o3d

points = np.random.rand(10000, 3)
point_cloud = o3d.geometry.PointCloud()
point_cloud.points = o3d.utility.Vector3dVector(points)
o3d.visualization.draw_geometries([point_cloud])

 

posted on   黑逍逍  阅读(181)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 清华大学推出第四讲使用 DeepSeek + DeepResearch 让科研像聊天一样简单!
· 推荐几款开源且免费的 .NET MAUI 组件库
· 实操Deepseek接入个人知识库
· 易语言 —— 开山篇
· Trae初体验



点击右上角即可分享
微信分享提示