Chris Brown

Results 53 comments of Chris Brown
trafficstars

> > > Can GTE create triangular meshes? (as CGAL does currently) I believe that is covered in the Delaunay3Mesh class. There is also Delaunay2Mesh, Delaunay3, Delaunay2, and ConstrainedDelaunay2

For computational geometry there is the following: ![image](https://user-images.githubusercontent.com/7495752/83198753-b3f71400-a0f4-11ea-9cbc-d514e8381b84.png)

For approximations (Some support RANSAC some do not) GTE supports the following ![image](https://user-images.githubusercontent.com/7495752/83198932-13edba80-a0f5-11ea-90d4-1c86b182b640.png) The following have the virtual functions required to support RANSAC ![image](https://user-images.githubusercontent.com/7495752/83199114-67600880-a0f5-11ea-8578-116d0581010d.png) It looks simple enough to add...

Another large benefit in my mind is the extensive [documentation provided behind each algorithm](https://www.geometrictools.com/Documentation/Documentation.html) Along with his book ![image](https://user-images.githubusercontent.com/7495752/83199639-7abfa380-a0f6-11ea-9f4b-8065e10fe06c.png) I haven't read it all but I have access to it...

Going through it more, at least the mathematics library is header only with no external requirements/dependencies. Since we will have to setup our own "fork" if we just include the...

I integrated the delauny triangulation and compared it against CGAL ![image](https://user-images.githubusercontent.com/7495752/83298679-b798a280-a1a9-11ea-9193-0c67cbb32f4f.png) Pros: - It was a really simple integration - Gives essentially the exact same result as CGAL Cons: -...

Not exactly the same issue but this previous issue https://github.com/CloudCompare/CloudCompare/issues/1039 had the following solution, although I would suspect needing to change the display number > Another common suggestion is to...

But you are definitely using the export command first? `export DISPLAY:=yourScreenNumber`

I've seen something similar before when I had an invalid bounding box (I believe, it might have been invalid coordinates in the cloud). I was working with the cloud in...

My intent is to add command line mode, my thought was two options, 1 take in a script as a file path, 2 take in a script directly on the...