Open3d vs2022 c++ 读取 pcd文件代码

B站影视 2024-12-27 09:49 1

摘要:#include int main { using namespace open3d; // 指定PCD文件路径 std::string pcd_file = "d:/rabbit.pcd"; // 修改为你的PCD文件路径

以下是c++ open3d 读取 pcd文件代码,其实open3d也支持python

#include int main { using namespace open3d; // 指定PCD文件路径 std::string pcd_file = "d:/rabbit.pcd"; // 修改为你的PCD文件路径 // 读取PCD文件 auto pcd = std::make_shared; if (!io::ReadPointCloud(pcd_file, *pcd)) { std::cerr

来源:新手村养牛

相关推荐