A C++ library to solve equation AX=XB, which is known as been widely used in hand-eye calibration for robotics.
- Integrated google/glog as a subdirectory
- Created main.cpp for testing
- Adjusted CMakeLists.txt for integration of glog and creation of solver_test
- Added .gitignore to ignore folder build/
- Clone the repo
git clone https://github.com/a-loner/SolveAXXB.git
- Enter the folder
cd SolveAXXB
- Create folder build
mkdir build
- Enter build folder
cd build
- **(optional)**Install dependency
sudo apt install libeigen3-dev
- Run cmake
cmake ..
- Run make
make
- Run the app
./solver_test
- Poses vec_a and vec_b should have the same length
- The length of vec_a should be no less than 2