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


C++ Pose2::y方法代码示例

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


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

示例1: Level

/* ************************************************************************* */
CalibratedCamera CalibratedCamera::Level(const Pose2& pose2, double height) {
	double st = sin(pose2.theta()), ct = cos(pose2.theta());
	Point3 x(st, -ct, 0), y(0, 0, -1), z(ct, st, 0);
	Rot3 wRc(x, y, z);
	Point3 t(pose2.x(), pose2.y(), height);
	Pose3 pose3(wRc, t);
	return CalibratedCamera(pose3);
}
开发者ID:gburachas,项目名称:gtsam_pcl,代码行数:9,代码来源:CalibratedCamera.cpp

示例2: Logmap

/* ************************************************************************* */
Vector Pose2::localCoordinates(const Pose2& p2) const {
#ifdef SLOW_BUT_CORRECT_EXPMAP
    return Logmap(between(p2));
#else
    Pose2 r = between(p2);
    return (Vector(3) << r.x(), r.y(), r.theta());
#endif
}
开发者ID:rubinasultan,项目名称:gtsam,代码行数:9,代码来源:Pose2.cpp

示例3: evaluateError

 // Using the NoiseModelFactor1 base class there are two functions that must be overridden.
 // The first is the 'evaluateError' function. This function implements the desired measurement
 // function, returning a vector of errors when evaluated at the provided variable value. It
 // must also calculate the Jacobians for this measurement function, if requested.
 Vector evaluateError(const Pose2& q, boost::optional<Matrix&> H = boost::none) const
 {
     // The measurement function for a GPS-like measurement is simple:
     // error_x = pose.x - measurement.x
     // error_y = pose.y - measurement.y
     // Consequently, the Jacobians are:
     // [ derror_x/dx  derror_x/dy  derror_x/dtheta ] = [1 0 0]
     // [ derror_y/dx  derror_y/dy  derror_y/dtheta ] = [0 1 0]
     if (H) (*H) = (Matrix(2,3) << 1.0,0.0,0.0, 0.0,1.0,0.0).finished();
     return (Vector(2) << q.x() - mx_, q.y() - my_).finished();
 }
开发者ID:exoter-rover,项目名称:slam-gtsam,代码行数:15,代码来源:LocalizationExample.cpp


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