Precise image alignment and camera pose estimation library. Useful for AR, drone landing, SLAM.
Under active development. Please check later.
- High precision subpixel image alignment
- Crossplatform,
arm64
support - Easy to deploy,
conan
support
- conan >= 1.54.0
pipx install conan
mkdir build && cd build
conan install .. --build=missing
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
sudo cmake --install .
- OpenCV
- ceres-solver
- Eigen
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
sudo cmake --install .
./imalig_example 23 image.jpg
find_package(imalig REQUIRED)
add_executable(program program.cpp)
target_link_libraries(program imalig::imalig)