本文整理汇总了C++中Transform3D::rotateAxis方法的典型用法代码示例。如果您正苦于以下问题:C++ Transform3D::rotateAxis方法的具体用法?C++ Transform3D::rotateAxis怎么用?C++ Transform3D::rotateAxis使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Transform3D
的用法示例。
在下文中一共展示了Transform3D::rotateAxis方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: GenerateTestData
GenerateTestData()
{
// Instantiate a pinhole camera model.
PinholeCameraModel<double> camera_model;
// Set the intrinsic camera parameters.
camera_model.setFocalLengths(80, 79);
camera_model.setImageCenter(250, 251);
camera_model.setSkew(0.1);
// Set the extrinsic camera parameters.
Transform3D<double> T;
T.rotateAxis(40, Point3D(1, 2, 3), Transform3D<double>::DEGREES);
T.translate(130, 135, 90);
camera_model.setExtrinsicParameters(T.getTransformationMatrix());
// Generate some test data.
const int number_of_points = 6;
for (int i = 0; i < number_of_points; ++i) // generate points in the world COS
{
auto x = randn(0.0, 30.0); // in the camera COS
auto y = randn(0.0, 30.0); // in the camera COS
auto z = randn(600.0, 10.0); // in the camera COS
Point3D p = T.inverse() * Point3D(x, y, z); // in the world COS
points_world.emplace_back(p);
}
for (auto const & p_W : points_world) // generate points in the camera COS
{
Point2D p_D = camera_model.transform(p_W);
points_display.push_back(p_D);
}
}