【源码】BSplineFitting:从三次样条曲线到二维点的拟合

从三次样条曲线到二维点的拟合

Fitting cubic spline curve to 2d points

 

简介:该代码根据文献"Fitting B-spline Curves to Point Clouds by Curvature-Based Squared Distance Minimization"撰写。

Introduction

This is an implementation of paper "Fitting B-spline Curves to Point Clouds by Curvature-Based Squared Distance Minimization".

 

Link to the paper: http://www.geometrie.tuwien.ac.at/ig/sn/2006/wpl_curves_06/wpl_curves_06.html

 

输入是一组二维点,输出是一条闭合三次样条曲线的控制点。

The input is a set of 2d points, the output are control points of a close cubic spline curve.

 

输入文件:包含n行的文件,每行代表一个x y位置的点。

Input file: a file that contains n rows and each row reprents a point with x y positions.

 

输出文件:包含输出曲线控制点的文件以及包含输出文件采样点的文件。

Output files: a file with the control points of the output curve; and a file with sampling points of the output file.

完整资料领取

 

相关文章:

  • 2021-04-01
  • 2022-01-04
  • 2021-11-24
  • 2021-11-27
  • 2022-12-23
  • 2021-12-05
  • 2021-06-18
  • 2021-10-30
猜你喜欢
  • 2022-01-20
  • 2021-05-29
  • 2021-11-27
  • 2021-11-19
  • 2022-03-10
  • 2022-01-12
  • 2021-07-25
相关资源
相似解决方案