├── .gitignore ├── CMakeLists.txt ├── Documentation ├── CMakeLists.txt ├── Doxyfile ├── DoxygenLayout.xml └── customdoxygen.css ├── README.md ├── laserNAVCalib.cpp ├── laserNAVCalib.h ├── lmmin.c ├── lmmin.h ├── lmstruct.h ├── main.cpp ├── mathConstants.cpp ├── mathConstants.h ├── pointcloudRegistration.cpp └── pointcloudRegistration.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Documentation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/Documentation/CMakeLists.txt -------------------------------------------------------------------------------- /Documentation/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/Documentation/Doxyfile -------------------------------------------------------------------------------- /Documentation/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/Documentation/DoxygenLayout.xml -------------------------------------------------------------------------------- /Documentation/customdoxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/Documentation/customdoxygen.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/README.md -------------------------------------------------------------------------------- /laserNAVCalib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/laserNAVCalib.cpp -------------------------------------------------------------------------------- /laserNAVCalib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/laserNAVCalib.h -------------------------------------------------------------------------------- /lmmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/lmmin.c -------------------------------------------------------------------------------- /lmmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/lmmin.h -------------------------------------------------------------------------------- /lmstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/lmstruct.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/main.cpp -------------------------------------------------------------------------------- /mathConstants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/mathConstants.cpp -------------------------------------------------------------------------------- /mathConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/mathConstants.h -------------------------------------------------------------------------------- /pointcloudRegistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/pointcloudRegistration.cpp -------------------------------------------------------------------------------- /pointcloudRegistration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gismo141/laserIMUCalibration/HEAD/pointcloudRegistration.h --------------------------------------------------------------------------------