Open3d vs2022 c++ 读取 pcd文件代码
#include int main { using namespace open3d; // 指定PCD文件路径 std::string pcd_file = "d:/rabbit.pcd"; // 修改为你的PCD文件路径
#include int main { using namespace open3d; // 指定PCD文件路径 std::string pcd_file = "d:/rabbit.pcd"; // 修改为你的PCD文件路径
#include #include #include #include #include
import open3d as o3ddef visualize_ply(ply_path): # 读取PLY文件 pcd = o3d.io.read_point_cloud(ply_path) # 可选:为点云添加颜色(如果PLY中没有颜色信息) # pc