opencv/doc/tutorials/viz/widget_pose/widget_pose.markdown

86 lines
2.3 KiB
Markdown
Raw Normal View History

2014-11-27 20:39:05 +08:00
Pose of a widget {#tutorial_widget_pose}
================
Goal
----
In this tutorial you will learn how to
- Add widgets to the visualization window
- Use Affine3 to set pose of a widget
- Rotating and translating a widget along an axis
Code
----
2016-06-14 21:01:36 +08:00
You can download the code from [here ](https://github.com/opencv/opencv/tree/master/samples/cpp/tutorial_code/viz/widget_pose.cpp).
@include samples/cpp/tutorial_code/viz/widget_pose.cpp
2014-11-27 20:39:05 +08:00
2014-11-28 21:21:28 +08:00
Explanation
-----------
2014-11-27 20:39:05 +08:00
2014-11-28 21:21:28 +08:00
Here is the general structure of the program:
- Create a visualization window.
@code{.cpp}
2014-11-27 20:39:05 +08:00
/// Create a window
viz::Viz3d myWindow("Coordinate Frame");
2014-11-28 21:21:28 +08:00
@endcode
- Show coordinate axes in the window using CoordinateSystemWidget.
@code{.cpp}
2014-11-27 20:39:05 +08:00
/// Add coordinate axes
myWindow.showWidget("Coordinate Widget", viz::WCoordinateSystem());
2014-11-28 21:21:28 +08:00
@endcode
- Display a line representing the axis (1,1,1).
@code{.cpp}
2014-11-27 20:39:05 +08:00
/// Add line to represent (1,1,1) axis
viz::WLine axis(Point3f(-1.0f,-1.0f,-1.0f), Point3f(1.0f,1.0f,1.0f));
axis.setRenderingProperty(viz::LINE_WIDTH, 4.0);
myWindow.showWidget("Line Widget", axis);
2014-11-28 21:21:28 +08:00
@endcode
- Construct a cube.
@code{.cpp}
2014-11-27 20:39:05 +08:00
/// Construct a cube widget
viz::WCube cube_widget(Point3f(0.5,0.5,0.0), Point3f(0.0,0.0,-0.5), true, viz::Color::blue());
cube_widget.setRenderingProperty(viz::LINE_WIDTH, 4.0);
myWindow.showWidget("Cube Widget", cube_widget);
2014-11-28 21:21:28 +08:00
@endcode
- Create rotation matrix from rodrigues vector
@code{.cpp}
/// Rotate around (1,1,1)
rot_vec.at<float>(0,0) += CV_PI * 0.01f;
rot_vec.at<float>(0,1) += CV_PI * 0.01f;
rot_vec.at<float>(0,2) += CV_PI * 0.01f;
...
2014-11-27 20:39:05 +08:00
2014-11-28 21:21:28 +08:00
Mat rot_mat;
Rodrigues(rot_vec, rot_mat);
@endcode
- Use Affine3f to set pose of the cube.
@code{.cpp}
/// Construct pose
Affine3f pose(rot_mat, Vec3f(translation, translation, translation));
myWindow.setWidgetPose("Cube Widget", pose);
@endcode
- Animate the rotation using wasStopped and spinOnce
@code{.cpp}
2014-11-27 20:39:05 +08:00
while(!myWindow.wasStopped())
{
2014-11-28 21:21:28 +08:00
...
2014-11-27 20:39:05 +08:00
myWindow.spinOnce(1, true);
}
2014-11-28 21:21:28 +08:00
@endcode
2014-11-27 20:39:05 +08:00
Results
-------
Here is the result of the program.
\htmlonly
<div align="center">
<iframe width="420" height="315" src="https://www.youtube.com/embed/22HKMN657U0" frameborder="0" allowfullscreen></iframe>
</div>
\endhtmlonly