opencv/modules/viz/src/widget.cpp

178 lines
4.6 KiB
C++
Raw Normal View History

#include "precomp.hpp"
2013-07-09 16:21:57 +08:00
///////////////////////////////////////////////////////////////////////////////////////////////
/// widget implementation
2013-07-13 22:01:56 +08:00
class cv::viz::Widget::Impl
{
public:
2013-07-09 23:35:26 +08:00
vtkSmartPointer<vtkProp> prop;
2013-07-09 17:07:21 +08:00
int ref_counter;
2013-07-08 16:41:42 +08:00
2013-07-09 23:35:26 +08:00
Impl() : prop(0) {}
2013-07-09 16:21:57 +08:00
};
2013-07-13 22:01:56 +08:00
cv::viz::Widget::Widget() : impl_(0)
2013-07-09 16:21:57 +08:00
{
2013-07-09 17:07:21 +08:00
create();
2013-07-09 16:21:57 +08:00
}
2013-07-13 22:01:56 +08:00
cv::viz::Widget::Widget(const Widget &other) : impl_(other.impl_)
2013-07-09 16:21:57 +08:00
{
2013-07-09 17:07:21 +08:00
if (impl_) CV_XADD(&impl_->ref_counter, 1);
2013-07-09 16:21:57 +08:00
}
2013-07-13 22:01:56 +08:00
cv::viz::Widget& cv::viz::Widget::operator=(const Widget &other)
2013-07-09 16:21:57 +08:00
{
if (this != &other)
{
2013-07-09 17:07:21 +08:00
release();
2013-07-09 16:21:57 +08:00
impl_ = other.impl_;
2013-07-09 17:07:21 +08:00
if (impl_) CV_XADD(&impl_->ref_counter, 1);
}
2013-07-09 16:21:57 +08:00
return *this;
}
2013-07-13 22:01:56 +08:00
cv::viz::Widget::~Widget()
2013-07-09 16:21:57 +08:00
{
2013-07-09 17:07:21 +08:00
release();
}
2013-07-13 22:01:56 +08:00
void cv::viz::Widget::create()
2013-07-09 17:07:21 +08:00
{
if (impl_) release();
impl_ = new Impl();
impl_->ref_counter = 1;
}
2013-07-13 22:01:56 +08:00
void cv::viz::Widget::release()
2013-07-09 17:07:21 +08:00
{
if (impl_ && CV_XADD(&impl_->ref_counter, -1) == 1)
{
2013-07-09 16:21:57 +08:00
delete impl_;
impl_ = 0;
}
2013-07-09 16:21:57 +08:00
}
///////////////////////////////////////////////////////////////////////////////////////////////
2013-07-09 17:07:21 +08:00
/// widget accessor implementaion
2013-07-13 22:01:56 +08:00
vtkSmartPointer<vtkProp> cv::viz::WidgetAccessor::getProp(const Widget& widget)
{
2013-07-09 23:35:26 +08:00
return widget.impl_->prop;
}
2013-07-13 22:01:56 +08:00
void cv::viz::WidgetAccessor::setProp(Widget& widget, vtkSmartPointer<vtkProp> prop)
2013-07-09 16:21:57 +08:00
{
2013-07-09 23:35:26 +08:00
widget.impl_->prop = prop;
2013-07-09 16:21:57 +08:00
}
///////////////////////////////////////////////////////////////////////////////////////////////
2013-07-09 16:21:57 +08:00
/// widget3D implementation
2013-07-13 22:01:56 +08:00
struct cv::viz::Widget3D::MatrixConverter
{
2013-07-13 22:01:56 +08:00
static Matx44f convertToMatx(const vtkSmartPointer<vtkMatrix4x4>& vtk_matrix)
2013-07-09 16:21:57 +08:00
{
2013-07-13 22:01:56 +08:00
Matx44f m;
2013-07-09 16:21:57 +08:00
for (int i = 0; i < 4; i++)
for (int k = 0; k < 4; k++)
m(i, k) = vtk_matrix->GetElement (i, k);
return m;
}
2013-07-13 22:01:56 +08:00
static vtkSmartPointer<vtkMatrix4x4> convertToVtkMatrix (const Matx44f& m)
2013-07-09 16:21:57 +08:00
{
vtkSmartPointer<vtkMatrix4x4> vtk_matrix = vtkSmartPointer<vtkMatrix4x4>::New ();
for (int i = 0; i < 4; i++)
for (int k = 0; k < 4; k++)
vtk_matrix->SetElement(i, k, m(i, k));
return vtk_matrix;
}
};
2013-07-13 22:01:56 +08:00
void cv::viz::Widget3D::setPose(const Affine3f &pose)
{
2013-07-09 21:18:44 +08:00
vtkProp3D *actor = vtkProp3D::SafeDownCast(WidgetAccessor::getProp(*this));
2013-07-09 16:21:57 +08:00
CV_Assert(actor);
vtkSmartPointer<vtkMatrix4x4> matrix = convertToVtkMatrix(pose.matrix);
actor->SetUserMatrix (matrix);
actor->Modified ();
}
2013-07-13 22:01:56 +08:00
void cv::viz::Widget3D::updatePose(const Affine3f &pose)
{
2013-07-09 21:18:44 +08:00
vtkProp3D *actor = vtkProp3D::SafeDownCast(WidgetAccessor::getProp(*this));
2013-07-09 16:21:57 +08:00
CV_Assert(actor);
vtkSmartPointer<vtkMatrix4x4> matrix = actor->GetUserMatrix();
if (!matrix)
2013-07-04 20:57:49 +08:00
{
2013-07-09 16:21:57 +08:00
setPose(pose);
return ;
2013-07-04 20:57:49 +08:00
}
2013-07-09 16:21:57 +08:00
Matx44f matrix_cv = MatrixConverter::convertToMatx(matrix);
2013-07-09 16:21:57 +08:00
Affine3f updated_pose = pose * Affine3f(matrix_cv);
matrix = MatrixConverter::convertToVtkMatrix(updated_pose.matrix);
2013-07-04 20:57:49 +08:00
2013-07-09 16:21:57 +08:00
actor->SetUserMatrix (matrix);
actor->Modified ();
}
2013-07-13 22:01:56 +08:00
cv::Affine3f cv::viz::Widget3D::getPose() const
2013-07-04 20:57:49 +08:00
{
2013-07-09 21:18:44 +08:00
vtkProp3D *actor = vtkProp3D::SafeDownCast(WidgetAccessor::getProp(*this));
2013-07-09 16:21:57 +08:00
CV_Assert(actor);
vtkSmartPointer<vtkMatrix4x4> matrix = actor->GetUserMatrix();
Matx44f matrix_cv = MatrixConverter::convertToMatx(matrix);
return Affine3f(matrix_cv);
2013-07-04 20:57:49 +08:00
}
2013-07-13 22:01:56 +08:00
void cv::viz::Widget3D::setColor(const Color &color)
2013-07-04 20:57:49 +08:00
{
2013-07-09 16:21:57 +08:00
// Cast to actor instead of prop3d since prop3d doesn't provide getproperty
2013-07-09 21:18:44 +08:00
vtkActor *actor = vtkActor::SafeDownCast(WidgetAccessor::getProp(*this));
2013-07-09 16:21:57 +08:00
CV_Assert(actor);
Color c = vtkcolor(color);
actor->GetMapper ()->ScalarVisibilityOff ();
actor->GetProperty ()->SetColor (c.val);
actor->GetProperty ()->SetEdgeColor (c.val);
actor->Modified ();
2013-07-04 20:57:49 +08:00
}
2013-07-13 22:01:56 +08:00
template<> cv::viz::Widget3D cv::viz::Widget::cast<cv::viz::Widget3D>()
{
vtkProp3D *actor = vtkProp3D::SafeDownCast(WidgetAccessor::getProp(*this));
CV_Assert(actor);
Widget3D widget;
WidgetAccessor::setProp(widget, actor);
return widget;
}
///////////////////////////////////////////////////////////////////////////////////////////////
/// widget2D implementation
2013-07-13 22:01:56 +08:00
void cv::viz::Widget2D::setColor(const Color &color)
2013-07-09 20:28:55 +08:00
{
2013-07-09 21:18:44 +08:00
vtkActor2D *actor = vtkActor2D::SafeDownCast(WidgetAccessor::getProp(*this));
2013-07-09 20:28:55 +08:00
CV_Assert(actor);
Color c = vtkcolor(color);
actor->GetProperty ()->SetColor (c.val);
actor->Modified ();
2013-07-09 23:35:26 +08:00
}
2013-07-13 22:01:56 +08:00
template<> cv::viz::Widget2D cv::viz::Widget::cast<cv::viz::Widget2D>()
{
vtkActor2D *actor = vtkActor2D::SafeDownCast(WidgetAccessor::getProp(*this));
CV_Assert(actor);
Widget2D widget;
WidgetAccessor::setProp(widget, actor);
return widget;
}