如何在保持曲线整体形状的同时减少曲线中的点数?

发布于 2024-12-13 02:05:31 字数 310 浏览 5 评论 0原文

我有一个构成曲线的点列表,我想减少点的数量,但仍然保持曲线的整体形状。

基本上,我想从这个:

在此处输入图像描述

到这个:

在此处输入图像描述

因此,算法将删除多余的点,但保留那些真正定义形状的点(例如曲线底部的点)。有没有已知的算法可以做到这一点?我希望有,但我不确定在 Google 上搜索什么。任何帮助将不胜感激。

I have a list of points that make a curve, and I would like to reduce the number of points, but still keep the overall shape of the curve.

Basically, I want to go from this:

enter image description here

To this:

enter image description here

So the algorithm would remove the points that are redundant but preserve those that really define the shape (like the points at the bottom of the curve). Is there any known algorithm to do that? I expect there is but I'm not sure what to search for on Google. Any help would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

2024-12-20 02:05:31

有几种算法可以实现这一点。

最简单的方法可能是继续删除相邻点之间的角度最接近 180 度的点,直到某个阈值,或者直到达到所需的点数。

如果曲线像您的图片一样平滑,您可能会通过使用贝塞尔曲线等获得更好的近似值(或者如果您愿意的话,可以得到更少的点)。

There are several algorithms for this.

The simplest one is probably to just keep removing the point whose angle between neighboring points is closest to 180 degrees, until some threshold, or until you've reached a desired number of points.

If the curve is smooth as in your picture, you'll probably get better approximations (or fewer points if you so like) by using Bezier curves for instance.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文