基于点云的多边形表面重建项目-PolyFit PolyFitPolygonal Surface Reconstruction from Point Clouds项目地址:https://gitcode.com/gh_mirrors/po/PolyFit
项目介绍
PolyFit是一个开源项目,其主要功能是从点云数据中构建多边形表面模型。这个强大的工具以创新的…
import numpy as np
import matplotlib.pyplot as pltx np.arange(1,17,1)
y np.array([4.00,6.40,8.00,8.80,9.22,9.50,9.70,9.86,10.00,10.20,10.32,10.42,10.50,10.55,10.58,10.60])z1 np.polyfit(x, y, 5)
p1 np.poly1d(z1)
print("多项式方程是:"…