For my own project, I needed to make sure that the ConcaveHull had built correctly when passing it a list of points. Currently, if the algorithm fails to converge it prints an informative message, but I don't think there is anyway to actually check if it has converged.
The simplest way I thought this could be added is by adding an extra field to the Hull structure. I don't know if this is ideal, and I don't know if a function converged(hull::ConcaveHull.Hull) could be written that returned the flag rather than hard coding it.
For my own project, I needed to make sure that the ConcaveHull had built correctly when passing it a list of points. Currently, if the algorithm fails to converge it prints an informative message, but I don't think there is anyway to actually check if it has converged.
The simplest way I thought this could be added is by adding an extra field to the Hull structure. I don't know if this is ideal, and I don't know if a function
converged(hull::ConcaveHull.Hull)
could be written that returned the flag rather than hard coding it.