Open3D (C++) 在两点之间等间隔插入多个点

一、概述

  两个点之间等间距插入多个点是对点云边界进行加密和填补空洞的重要操作基础。

二、代码实现

#include <iostream>
#include <Open3D/Open3D.h>

using namespace std;

// 两点之间等间距插值新的点
open3d::geometry::PointCloud InsertPoints

猜你喜欢

转载自blog.csdn.net/qq_36686437/article/details/128085940