Taka-Kazu / spline_interpolation

C++ implementation for spline interpolation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

spline_interpolation

C++ implementation for spline interpolation

requirement

  • Eigen (>= 3)

build and install

$ git clone https://github.com/amslabtech/spline_interpolation.git
$ cd spline_interpolation
$ mkdir build && cd build
$ cmake ..
$ make
$ sudo make install
# for uninstall
$ cat install_manifest.txt | xargs sudo rm -rf

Additionally, we made python bindings of this library using pybind11.

$ git clone https://github.com/amslabtech/spline_interpolation.git
$ cd spline_interpolation
$ git submodule update --init --recursive
$ pip install --user .

An example for using python bindings is at src/test.py

About

C++ implementation for spline interpolation

License:MIT License


Languages

Language:C++ 59.4%Language:Python 29.9%Language:CMake 10.7%