如何找到特定形状的边界点

发布于 2024-10-16 12:28:57 字数 95 浏览 2 评论 0原文

假设我有一个从数据集生成的不规则、随机的形状。如何找到位于形状边界上的点?

我正在使用 R。R 中有任何用于此目的的包吗?为简单起见,假设我有一个二维点数据集。

Suppose I have a irregular, random, shape generated from a dataset. How do I find points that are situated on the shape's border?

I am using R. Are there any packages in R for this purpose? For simplicity, just assume that I have a 2d dataset of points.

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

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

发布评论

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

评论(2

南笙 2024-10-23 12:28:58

您正在寻找 grdevices 包中的 chull() 函数来计算 2D 对象的凸包。

以下是在线帮助中的示例:

require(stats)
X <- matrix(rnorm(2000), ncol = 2)
chull(X)
## Not run: 
# Example usage from graphics package
plot(X, cex = 0.5)
hpts <- chull(X)
hpts <- c(hpts, hpts[1])
lines(X[hpts, ])

在此处输入图像描述

You are looking for the chull() function to compute the convex hull of a 2D object, in package grdevices.

Here is the example from the online help:

require(stats)
X <- matrix(rnorm(2000), ncol = 2)
chull(X)
## Not run: 
# Example usage from graphics package
plot(X, cex = 0.5)
hpts <- chull(X)
hpts <- c(hpts, hpts[1])
lines(X[hpts, ])

enter image description here

丑疤怪 2024-10-23 12:28:58

这些功能(包)似乎足够了:

  • ahull (alphahull
  • 凸面.hull(tripack)
  • chull(grDevices)
  • in.chull(sgeostat)
  • convhulln(几何)
  • 凸面hull.xy(spatstat)
  • calcConvexHull(PBSmapping)

These functions (packages) seem adequate:

  • ahull (alphahull)
  • convex.hull (tripack)
  • chull (grDevices)
  • in.chull (sgeostat)
  • convhulln (geometry)
  • convexhull.xy (spatstat)
  • calcConvexHull (PBSmapping)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文