concaveman-cpp
concaveman-cpp copied to clipboard
C++ port of mapbox's JS concaveman, with a Python wrapper
Greetings, I use the C++ version of concaveman to calculate concave hulls on 2d point sets of size 100000. This takes about 20 seconds for me, so I think about...
`g++ -c -o concaveman.o concaveman.cpp` `gcc -shared -o concaveman.so concaveman.o` Gives a bunch of errors Are there any other ways to build to .so library? I'm trying to build for...
Hi, I get an error when compiling with visual studio 2019 1>C:\Users\Dan\source\repos\ArxBrxConcaveHull\ArxBrxConcaveHull\concaveman.h(215,1): error C2668: 'make_unique': ambiguous call to overloaded function
@sadaszewski Thanks for your nice repo. Would provide a demo file for cpp? >>read data >>call concaveman.cpp >>Display output Thanks for help
I compiled from terminal using the following command: g++ -std=c++11 -shared concaveman.cpp -o libconcaveman.so but when I run the demo.py it produces the following error: OSError: cannot load library 'D:/feasibilityAnalysis2020_3/Dpointcloud3Dvision/RemoveNoiseAndTIN/Code/ConCaveHull/concaveman-cpp-master/concaveman-cpp-master/src/main/cpp/libconcaveman.so':...
Hello, Got quite some error in building concaveman.h I'm using c++17. Thank you for your help in advance! error: C2872: 'Node': ambiguous symbol error: C2672: 'findCandidate': no matching overloaded function...
NOTE: this is NOT ready to merge -- at least not to master. This looks pretty nice, and I'd really like to have it as a simple to build Python...
Thank you for porting this to C++. This PR changes the compilation to pybind11 and cppimport. In this way, it becomes really easy to install and run, e.g. running ```...
Hi, I wrapped your C++ code into an package for the R language. See [RcppConcaveman](https://github.com/Jean-Romain/RcppConcaveman). Then I tried it and I compared it to the R package [concaveman](https://github.com/joelgombin/concaveman) that is...
hello ,I really like this algorithm, I want to return index of concave point in original data, What a good advice?