• Ubuntu14.04(server amd 64)编译安装 ceres-solver


    文档地址:http://www.ceres-solver.org/installation.html

    git地址:(需要翻墙下载)

    git clone https://ceres-solver.googlesource.com/ceres-solver

    1.安装相关的依赖包

    # CMake
    sudo apt-get install cmake
    # google-glog + gflags
    sudo apt-get install libgoogle-glog-dev
    # BLAS & LAPACK
    sudo apt-get install libatlas-base-dev
    # Eigen3
    sudo apt-get install libeigen3-dev
    # SuiteSparse and CXSparse (optional)
    # - If you want to build Ceres as a *static* library (the default)
    #   you can use the SuiteSparse package in the main Ubuntu package
    #   repository:
    sudo apt-get install libsuitesparse-dev
    # - However, if you want to build Ceres as a *shared* library, you must
    #   add the following PPA:
    sudo add-apt-repository ppa:bzindovic/suitesparse-bugfix-1319687
    sudo apt-get update
    sudo apt-get install libsuitesparse-dev
    

    2.安装

    tar zxf ceres-solver-1.14.0.tar.gz
    mkdir ceres-bin
    cd ceres-bin
    cmake ../ceres-solver-1.14.0
    make -j3
    make test
    # Optionally install Ceres, it can also be exported using CMake which
    # allows Ceres to be used without requiring installation, see the documentation
    # for the EXPORT_BUILD_DIR option for more information.
    make install
    

      

  • 相关阅读:
    SpringBoot的启动Banner定制 IT
    idea重启 IT
    IDEA快捷键总结 IT
    java8的List排序 IT
    树数据处理
    antd 默认展开的三种实现方式
    antd input placeholder颜色样式修改
    react ref 用法案例
    audtomake
    yocto相关
  • 原文地址:https://www.cnblogs.com/sea-stream/p/9797225.html
Copyright © 2020-2023  润新知