Generate 3D alpha shape
generate_ashape3d(
point_cloud,
J,
tau,
delta = 0.05,
afixed = TRUE,
mu = NULL,
sig = NULL,
sample_rad = NULL,
acc_rad = NULL,
k_min = 3,
eps = 1e-04,
cores = 1
)
new_ashape three dimensional alpha shape object from alphashape3d library
3 column matrix of all points from all shapes in initial data set
number of shapes in initial data set
tau bound for the shapes
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 2 alpha of point cloud to accept a sample
amount to subtract from tau/2 to give alpha. Defaul 1e-4.
number of cores for parallelizing. Default 1.