• ceres之求解器


    ceres之求解器

    // TODO(keir): Considerably expand the explanations of each solver type.
    enum LinearSolverType {
      // These solvers are for general rectangular systems formed from the
      // normal equations A'A x = A'b. They are direct solvers and do not
      // assume any special problem structure.
    
      // Solve the normal equations using a dense Cholesky solver; based
      // on Eigen.
      DENSE_NORMAL_CHOLESKY,
    
      // Solve the normal equations using a dense QR solver; based on
      // Eigen.
      DENSE_QR,
    
      // Solve the normal equations using a sparse cholesky solver; requires
      // SuiteSparse or CXSparse.
      SPARSE_NORMAL_CHOLESKY,
    
      // Specialized solvers, specific to problems with a generalized
      // bi-partitite structure.
    
      // Solves the reduced linear system using a dense Cholesky solver;
      // based on Eigen.
      DENSE_SCHUR,
    
      // Solves the reduced linear system using a sparse Cholesky solver;
      // based on CHOLMOD.
      SPARSE_SCHUR,
    
      // Solves the reduced linear system using Conjugate Gradients, based
      // on a new Ceres implementation.  Suitable for large scale
      // problems.
      ITERATIVE_SCHUR,
    
      // Conjugate gradients on the normal equations.
      CGNR
    };
  • 相关阅读:
    Python去掉字符串中空格的方法
    python:list
    python3元组
    定时任务cron
    python字典:(Dictionary)操作详解
    SQL语句-基础
    linux免密码登陆
    linux开机故障解决方法
    您应升级到 MySQL 5.5.0 或更高版本。 phpmyadmin
    mysql忘记密码
  • 原文地址:https://www.cnblogs.com/lovebay/p/16048237.html
Copyright © 2020-2023  润新知