fast-marching-method
fast-marching-method copied to clipboard
Single file, header-only, no dependencies C++ implementation of the fast marching method in arbitrary dimensions.
There appears to be a logic error in the algorithm or in the supporting code for the test cases, which may or may not be related to commit 7a263040bd46a2e58149c1a659839e61c3c01fce. Reverting...
vi
When I use make command,it show that I should add -std=gnu++11 or -std=c++11, so I add "add_compile_options(-std=c++11)" in the test/CMakeLists.txt, But it says "error: parameter declared ‘auto’", My compiler is...
I am using Ubuntu 18.04. After cloning the fast-marching-method repository (HTTPS) to ~/fmm-git/fast_marching_method I made a build directory ~fmm-git/fmm_build and moved there. Then I executed cmake ../fast_marching_method/test -DCMAKE_BUILD_TYPE=Release That seemed...