Generate 2D alpha shape
generate_ashape2d(
point_cloud,
J,
tau,
delta = 0.05,
afixed = TRUE,
mu = NULL,
sig = NULL,
sample_rad = NULL,
acc_rad = NULL,
k_min = 2,
eps = 1e-04,
cores = 1
)
new_ashape two dimensional alpha shape object from alphahull library
2 column matrix of all points from all shapes in initial data set
number of shapes in initial (sub) data set
tau bound vector for shapes input
probability of not preserving homology; default is 0.05
boolean, whether to sample alpha or leave fixed based on tau. Default FALSE
mean of truncated distribution from which alpha sampled; default tau/3
standard deviation of truncated distribution from which alpha sampled; default tau/12
radius of ball around each point in point cloud from which to sample; default tau/8
radius of ball to check around potential sampled points for whether to accept or reject new point; default tau/4
number of points needed in radius tau of point cloud to accept a sample
amount to subtract from tau/2 to give alpha. Defaul 1e-4.
number of computer cores for parallelizing. Default 1.