当前位置: 首页>>代码示例>>C++>>正文


C++ Error::Rotation方法代码示例

本文整理汇总了C++中Error::Rotation方法的典型用法代码示例。如果您正苦于以下问题:C++ Error::Rotation方法的具体用法?C++ Error::Rotation怎么用?C++ Error::Rotation使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Error的用法示例。


在下文中一共展示了Error::Rotation方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: CalculateError

bool Masseuse::CalculateError(Error& error, const Values& values){

  // First check if we have a ground truth to compare against
  if(!gt_poses.size()){
    std::cerr << "Unable to calculate error, no ground truth provided." <<
                 std::endl;
    return false;
  }

  unsigned num_poses_to_compare = values.size();
  if(gt_poses.size() != values.size()){

    num_poses_to_compare = std::min(gt_poses.size(), values.size());
    std::cerr << "There are " << gt_poses.size() << " ground truth poses"
              << " and " << values.size() << " optimized poses. Will only" <<
                 " compare the first " << num_poses_to_compare << " poses." <<
                 std::endl;
  }

  if(num_poses_to_compare > 0){
    size_t index = 0;
    for(const auto& kvp : values){

      if(index >= num_poses_to_compare){
        break;
      }

      Pose3 est_pose = kvp.second;
      Pose3 gt_pose = gt_poses.at(index).Twp;

      Eigen::Vector6d pose_error = (est_pose.inverse() * gt_pose).log();
      Eigen::Vector3d trans_error = pose_error.head<3>().cwiseAbs();
      Eigen::Vector3d rot_error = pose_error.tail<3>().cwiseAbs();
      error.Translation()+= trans_error;
      error.Rotation()+= rot_error;

      error.NumPoses()++;

      // Set the max trans and rotation errors
      if(error.MaxTransError() < trans_error.norm()){
        error.MaxTransError() = trans_error.norm();
      }
      if(error.MaxRotError() < rot_error.norm()){
        error.MaxRotError() = rot_error.norm();
      }

      if(index > 0){
        // add up the total distance traveled, based on the ground truth
        error.DistanceTraveled()+= (gt_poses.at(index-1).Twp.inverse() *
                                    gt_poses.at(index).Twp).translation().norm();
      }

      // calculate the % average translation error up to this point
      if(error.DistanceTraveled() > 0){
        error.PercentAvgTranslationError()+= (trans_error.norm() /
                                              error.DistanceTraveled());
      }

      index++;
    }
  }else{
    std::cerr << "No poses to compare." << std::endl;
    return false;
  }

  return true;
}
开发者ID:arpg,项目名称:masseuse,代码行数:67,代码来源:masseuse.cpp


注:本文中的Error::Rotation方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。