如何找到特定形状的边界点
假设我有一个从数据集生成的不规则、随机的形状。如何找到位于形状边界上的点?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找 grdevices 包中的 chull() 函数来计算 2D 对象的凸包。
以下是在线帮助中的示例:
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:
这些功能(包)似乎足够了:
These functions (packages) seem adequate: