You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to create an open surface reconstruction from a point cloud.
My code looks like this:
IList<CHVertex> verticies = new List<CHVertex>();
var test = Triangulation.CreateDelaunay(verticies);
verticies has 520 data points that I have validated.
Stacktrace is:
at MIConvexHull.ConvexHullAlgorithm.CalculateVertexCentriod(IList`1 vertexIndices) in C:\Users\campmatt\source\repos\MIConvexHull\MIConvexHull.NET Standard\ConvexHull\ConvexHullAlgorithm.Initialize.cs:line 491
I was able to multiply your coordinates each by 100 and got an answer. The problem seems to be with the small coordinates in higher dimensions. I am looking into it.
Actually, I pushed a change that might help. At least it is working for the sample points provided.
let me know here either way if it works for both of you.
I am trying to create an open surface reconstruction from a point cloud.
My code looks like this:
verticies has 520 data points that I have validated.
Stacktrace is:
at MIConvexHull.ConvexHullAlgorithm.CalculateVertexCentriod(IList`1 vertexIndices) in C:\Users\campmatt\source\repos\MIConvexHull\MIConvexHull.NET Standard\ConvexHull\ConvexHullAlgorithm.Initialize.cs:line 491
This is the line 491.
What could be causing this?
I have added a file with my raw data points.
point cloud.txt
The text was updated successfully, but these errors were encountered: