opencv/modules/viz/src/shape_widgets.cpp

545 lines
19 KiB
C++
Raw Normal View History

#include "precomp.hpp"
2013-07-15 18:02:20 +08:00
namespace cv
{
namespace viz
{
template<typename _Tp> Vec<_Tp, 3>* vtkpoints_data(vtkSmartPointer<vtkPoints>& points);
}
}
2013-07-04 21:15:20 +08:00
///////////////////////////////////////////////////////////////////////////////////////////////
/// line widget implementation
2013-07-13 22:01:56 +08:00
cv::viz::LineWidget::LineWidget(const Point3f &pt1, const Point3f &pt2, const Color &color)
2013-07-09 21:18:44 +08:00
{
vtkSmartPointer<vtkLineSource> line = vtkSmartPointer<vtkLineSource>::New();
line->SetPoint1 (pt1.x, pt1.y, pt1.z);
line->SetPoint2 (pt2.x, pt2.y, pt2.z);
line->Update ();
vtkSmartPointer<vtkDataSetMapper> mapper = vtkSmartPointer<vtkDataSetMapper>::New ();
mapper->SetInput(line->GetOutput ());
2013-07-09 21:18:44 +08:00
vtkSmartPointer<vtkLODActor> actor = vtkSmartPointer<vtkLODActor>::New();
actor->SetMapper(mapper);
2013-07-09 21:18:44 +08:00
WidgetAccessor::setProp(*this, actor);
setColor(color);
}
2013-07-04 21:05:05 +08:00
2013-07-13 22:01:56 +08:00
void cv::viz::LineWidget::setLineWidth(float line_width)
2013-07-04 21:05:05 +08:00
{
2013-07-10 18:51:17 +08:00
vtkActor *actor = vtkActor::SafeDownCast(WidgetAccessor::getProp(*this));
2013-07-09 21:18:44 +08:00
CV_Assert(actor);
2013-07-04 21:05:05 +08:00
actor->GetProperty()->SetLineWidth(line_width);
}
2013-07-13 22:01:56 +08:00
float cv::viz::LineWidget::getLineWidth()
2013-07-04 21:05:05 +08:00
{
2013-07-10 18:51:17 +08:00
vtkActor *actor = vtkActor::SafeDownCast(WidgetAccessor::getProp(*this));
2013-07-09 21:18:44 +08:00
CV_Assert(actor);
2013-07-04 21:05:05 +08:00
return actor->GetProperty()->GetLineWidth();
2013-07-04 21:15:20 +08:00
}
2013-07-13 22:01:56 +08:00
template<> cv::viz::LineWidget cv::viz::Widget::cast<cv::viz::LineWidget>()
{
Widget3D widget = this->cast<Widget3D>();
return static_cast<LineWidget&>(widget);
}
2013-07-04 21:15:20 +08:00
///////////////////////////////////////////////////////////////////////////////////////////////
/// plane widget implementation
2013-07-13 22:01:56 +08:00
cv::viz::PlaneWidget::PlaneWidget(const Vec4f& coefs, double size, const Color &color)
2013-07-09 21:18:44 +08:00
{
2013-07-04 21:15:20 +08:00
vtkSmartPointer<vtkPlaneSource> plane = vtkSmartPointer<vtkPlaneSource>::New ();
plane->SetNormal (coefs[0], coefs[1], coefs[2]);
2013-07-13 22:01:56 +08:00
double norm = cv::norm(Vec3f(coefs.val));
2013-07-04 21:15:20 +08:00
plane->Push (-coefs[3] / norm);
2013-07-08 02:19:21 +08:00
2013-07-04 21:15:20 +08:00
vtkSmartPointer<vtkDataSetMapper> mapper = vtkSmartPointer<vtkDataSetMapper>::New ();
mapper->SetInput(plane->GetOutput ());
2013-07-08 02:19:21 +08:00
2013-07-09 21:18:44 +08:00
vtkSmartPointer<vtkLODActor> actor = vtkSmartPointer<vtkLODActor>::New();
2013-07-04 21:15:20 +08:00
actor->SetMapper(mapper);
2013-07-08 02:19:21 +08:00
actor->SetScale(size);
2013-07-09 21:18:44 +08:00
WidgetAccessor::setProp(*this, actor);
2013-07-04 21:15:20 +08:00
setColor(color);
}
2013-07-13 22:01:56 +08:00
cv::viz::PlaneWidget::PlaneWidget(const Vec4f& coefs, const Point3f& pt, double size, const Color &color)
2013-07-04 21:15:20 +08:00
{
vtkSmartPointer<vtkPlaneSource> plane = vtkSmartPointer<vtkPlaneSource>::New ();
2013-07-13 22:01:56 +08:00
Point3f coefs3(coefs[0], coefs[1], coefs[2]);
2013-07-04 21:15:20 +08:00
double norm_sqr = 1.0 / coefs3.dot (coefs3);
plane->SetNormal(coefs[0], coefs[1], coefs[2]);
double t = coefs3.dot(pt) + coefs[3];
2013-07-13 22:01:56 +08:00
Vec3f p_center = pt - coefs3 * t * norm_sqr;
2013-07-04 21:15:20 +08:00
plane->SetCenter (p_center[0], p_center[1], p_center[2]);
vtkSmartPointer<vtkDataSetMapper> mapper = vtkSmartPointer<vtkDataSetMapper>::New ();
mapper->SetInput(plane->GetOutput ());
2013-07-09 21:18:44 +08:00
vtkSmartPointer<vtkLODActor> actor = vtkSmartPointer<vtkLODActor>::New();
2013-07-04 21:15:20 +08:00
actor->SetMapper(mapper);
2013-07-08 02:19:21 +08:00
actor->SetScale(size);
2013-07-09 21:18:44 +08:00
WidgetAccessor::setProp(*this, actor);
2013-07-04 21:32:06 +08:00
setColor(color);
}
2013-07-13 22:01:56 +08:00
template<> cv::viz::PlaneWidget cv::viz::Widget::cast<cv::viz::PlaneWidget>()
{
Widget3D widget = this->cast<Widget3D>();
return static_cast<PlaneWidget&>(widget);
}
2013-07-04 21:32:06 +08:00
///////////////////////////////////////////////////////////////////////////////////////////////
/// sphere widget implementation
2013-07-13 22:01:56 +08:00
cv::viz::SphereWidget::SphereWidget(const Point3f &center, float radius, int sphere_resolution, const Color &color)
2013-07-04 21:32:06 +08:00
{
vtkSmartPointer<vtkSphereSource> sphere = vtkSmartPointer<vtkSphereSource>::New ();
sphere->SetRadius (radius);
sphere->SetCenter (center.x, center.y, center.z);
sphere->SetPhiResolution (sphere_resolution);
sphere->SetThetaResolution (sphere_resolution);
sphere->LatLongTessellationOff ();
sphere->Update ();
vtkSmartPointer<vtkDataSetMapper> mapper = vtkSmartPointer<vtkDataSetMapper>::New ();
mapper->SetInput(sphere->GetOutput ());
2013-07-09 21:18:44 +08:00
vtkSmartPointer<vtkLODActor> actor = vtkSmartPointer<vtkLODActor>::New();
2013-07-04 21:32:06 +08:00
actor->SetMapper(mapper);
2013-07-09 21:18:44 +08:00
WidgetAccessor::setProp(*this, actor);
2013-07-04 21:15:20 +08:00
setColor(color);
}
2013-07-13 22:01:56 +08:00
template<> cv::viz::SphereWidget cv::viz::Widget::cast<cv::viz::SphereWidget>()
{
Widget3D widget = this->cast<Widget3D>();
return static_cast<SphereWidget&>(widget);
}
///////////////////////////////////////////////////////////////////////////////////////////////
/// arrow widget implementation
2013-07-15 21:14:13 +08:00
cv::viz::ArrowWidget::ArrowWidget(const Point3f& pt1, const Point3f& pt2, double thickness, const Color &color)
{
vtkSmartPointer<vtkArrowSource> arrowSource = vtkSmartPointer<vtkArrowSource>::New ();
2013-07-15 21:14:13 +08:00
arrowSource->SetShaftRadius(thickness);
// The thickness and radius of the tip are adjusted based on the thickness of the arrow
arrowSource->SetTipRadius(thickness * 3.0);
arrowSource->SetTipLength(thickness * 10.0);
float startPoint[3], endPoint[3];
startPoint[0] = pt1.x;
startPoint[1] = pt1.y;
startPoint[2] = pt1.z;
endPoint[0] = pt2.x;
endPoint[1] = pt2.y;
endPoint[2] = pt2.z;
float normalizedX[3], normalizedY[3], normalizedZ[3];
// The X axis is a vector from start to end
vtkMath::Subtract(endPoint, startPoint, normalizedX);
float length = vtkMath::Norm(normalizedX);
vtkMath::Normalize(normalizedX);
// The Z axis is an arbitrary vecotr cross X
float arbitrary[3];
arbitrary[0] = vtkMath::Random(-10,10);
arbitrary[1] = vtkMath::Random(-10,10);
arbitrary[2] = vtkMath::Random(-10,10);
vtkMath::Cross(normalizedX, arbitrary, normalizedZ);
vtkMath::Normalize(normalizedZ);
// The Y axis is Z cross X
vtkMath::Cross(normalizedZ, normalizedX, normalizedY);
vtkSmartPointer<vtkMatrix4x4> matrix = vtkSmartPointer<vtkMatrix4x4>::New();
// Create the direction cosine matrix
matrix->Identity();
for (unsigned int i = 0; i < 3; i++)
{
matrix->SetElement(i, 0, normalizedX[i]);
matrix->SetElement(i, 1, normalizedY[i]);
matrix->SetElement(i, 2, normalizedZ[i]);
}
// Apply the transforms
vtkSmartPointer<vtkTransform> transform = vtkSmartPointer<vtkTransform>::New();
transform->Translate(startPoint);
transform->Concatenate(matrix);
transform->Scale(length, length, length);
// Transform the polydata
vtkSmartPointer<vtkTransformPolyDataFilter> transformPD = vtkSmartPointer<vtkTransformPolyDataFilter>::New();
transformPD->SetTransform(transform);
transformPD->SetInputConnection(arrowSource->GetOutputPort());
vtkSmartPointer<vtkDataSetMapper> mapper = vtkSmartPointer<vtkDataSetMapper>::New ();
mapper->SetInput(transformPD->GetOutput ());
2013-07-09 21:18:44 +08:00
vtkSmartPointer<vtkLODActor> actor = vtkSmartPointer<vtkLODActor>::New();
actor->SetMapper(mapper);
2013-07-09 21:18:44 +08:00
WidgetAccessor::setProp(*this, actor);
setColor(color);
}
2013-07-13 22:01:56 +08:00
template<> cv::viz::ArrowWidget cv::viz::Widget::cast<cv::viz::ArrowWidget>()
{
Widget3D widget = this->cast<Widget3D>();
return static_cast<ArrowWidget&>(widget);
}
///////////////////////////////////////////////////////////////////////////////////////////////
/// circle widget implementation
2013-07-13 22:01:56 +08:00
cv::viz::CircleWidget::CircleWidget(const Point3f& pt, double radius, double thickness, const Color& color)
{
vtkSmartPointer<vtkDiskSource> disk = vtkSmartPointer<vtkDiskSource>::New ();
// Maybe the resolution should be lower e.g. 50 or 25
2013-07-07 21:21:47 +08:00
disk->SetCircumferentialResolution (50);
disk->SetInnerRadius (radius - thickness);
disk->SetOuterRadius (radius + thickness);
// Set the circle origin
vtkSmartPointer<vtkTransform> t = vtkSmartPointer<vtkTransform>::New ();
t->Identity ();
t->Translate (pt.x, pt.y, pt.z);
vtkSmartPointer<vtkTransformPolyDataFilter> tf = vtkSmartPointer<vtkTransformPolyDataFilter>::New ();
tf->SetTransform (t);
tf->SetInputConnection (disk->GetOutputPort ());
vtkSmartPointer<vtkDataSetMapper> mapper = vtkSmartPointer<vtkDataSetMapper>::New ();
mapper->SetInput(tf->GetOutput ());
2013-07-09 21:18:44 +08:00
vtkSmartPointer<vtkLODActor> actor = vtkSmartPointer<vtkLODActor>::New();
actor->SetMapper(mapper);
2013-07-09 21:18:44 +08:00
WidgetAccessor::setProp(*this, actor);
setColor(color);
}
2013-07-13 22:01:56 +08:00
template<> cv::viz::CircleWidget cv::viz::Widget::cast<cv::viz::CircleWidget>()
{
Widget3D widget = this->cast<Widget3D>();
return static_cast<CircleWidget&>(widget);
}
2013-07-04 22:44:41 +08:00
///////////////////////////////////////////////////////////////////////////////////////////////
/// cylinder widget implementation
2013-07-13 22:01:56 +08:00
cv::viz::CylinderWidget::CylinderWidget(const Point3f& pt_on_axis, const Point3f& axis_direction, double radius, int numsides, const Color &color)
2013-07-09 21:18:44 +08:00
{
2013-07-13 22:01:56 +08:00
const Point3f pt2 = pt_on_axis + axis_direction;
2013-07-04 22:44:41 +08:00
vtkSmartPointer<vtkLineSource> line = vtkSmartPointer<vtkLineSource>::New ();
line->SetPoint1 (pt_on_axis.x, pt_on_axis.y, pt_on_axis.z);
line->SetPoint2 (pt2.x, pt2.y, pt2.z);
vtkSmartPointer<vtkTubeFilter> tuber = vtkSmartPointer<vtkTubeFilter>::New ();
tuber->SetInputConnection (line->GetOutputPort ());
tuber->SetRadius (radius);
tuber->SetNumberOfSides (numsides);
vtkSmartPointer<vtkDataSetMapper> mapper = vtkSmartPointer<vtkDataSetMapper>::New ();
mapper->SetInput(tuber->GetOutput ());
2013-07-09 21:18:44 +08:00
vtkSmartPointer<vtkLODActor> actor = vtkSmartPointer<vtkLODActor>::New ();
2013-07-04 22:44:41 +08:00
actor->SetMapper(mapper);
2013-07-09 21:18:44 +08:00
WidgetAccessor::setProp(*this, actor);
2013-07-04 22:44:41 +08:00
setColor(color);
}
2013-07-04 22:59:11 +08:00
2013-07-13 22:01:56 +08:00
template<> cv::viz::CylinderWidget cv::viz::Widget::cast<cv::viz::CylinderWidget>()
{
Widget3D widget = this->cast<Widget3D>();
return static_cast<CylinderWidget&>(widget);
}
2013-07-04 22:59:11 +08:00
///////////////////////////////////////////////////////////////////////////////////////////////
/// cylinder widget implementation
2013-07-13 22:01:56 +08:00
cv::viz::CubeWidget::CubeWidget(const Point3f& pt_min, const Point3f& pt_max, bool wire_frame, const Color &color)
{
vtkSmartPointer<vtkDataSetMapper> mapper = vtkSmartPointer<vtkDataSetMapper>::New ();
if (wire_frame)
{
vtkSmartPointer<vtkOutlineSource> cube = vtkSmartPointer<vtkOutlineSource>::New();
cube->SetBounds (pt_min.x, pt_max.x, pt_min.y, pt_max.y, pt_min.z, pt_max.z);
mapper->SetInput(cube->GetOutput ());
}
else
{
vtkSmartPointer<vtkCubeSource> cube = vtkSmartPointer<vtkCubeSource>::New ();
cube->SetBounds (pt_min.x, pt_max.x, pt_min.y, pt_max.y, pt_min.z, pt_max.z);
mapper->SetInput(cube->GetOutput ());
}
2013-07-04 22:59:11 +08:00
2013-07-09 21:18:44 +08:00
vtkSmartPointer<vtkLODActor> actor = vtkSmartPointer<vtkLODActor>::New();
2013-07-04 22:59:11 +08:00
actor->SetMapper(mapper);
2013-07-09 21:18:44 +08:00
WidgetAccessor::setProp(*this, actor);
2013-07-04 22:59:11 +08:00
setColor(color);
}
2013-07-13 22:01:56 +08:00
template<> cv::viz::CubeWidget cv::viz::Widget::cast<cv::viz::CubeWidget>()
{
Widget3D widget = this->cast<Widget3D>();
return static_cast<CubeWidget&>(widget);
}
///////////////////////////////////////////////////////////////////////////////////////////////
/// coordinate system widget implementation
2013-07-13 22:01:56 +08:00
cv::viz::CoordinateSystemWidget::CoordinateSystemWidget(double scale)
{
vtkSmartPointer<vtkAxes> axes = vtkSmartPointer<vtkAxes>::New ();
axes->SetOrigin (0, 0, 0);
axes->SetScaleFactor (scale);
vtkSmartPointer<vtkFloatArray> axes_colors = vtkSmartPointer<vtkFloatArray>::New ();
axes_colors->Allocate (6);
axes_colors->InsertNextValue (0.0);
axes_colors->InsertNextValue (0.0);
axes_colors->InsertNextValue (0.5);
axes_colors->InsertNextValue (0.5);
axes_colors->InsertNextValue (1.0);
axes_colors->InsertNextValue (1.0);
vtkSmartPointer<vtkPolyData> axes_data = axes->GetOutput ();
axes_data->Update ();
axes_data->GetPointData ()->SetScalars (axes_colors);
vtkSmartPointer<vtkTubeFilter> axes_tubes = vtkSmartPointer<vtkTubeFilter>::New ();
axes_tubes->SetInput (axes_data);
axes_tubes->SetRadius (axes->GetScaleFactor () / 50.0);
axes_tubes->SetNumberOfSides (6);
vtkSmartPointer<vtkDataSetMapper> mapper = vtkSmartPointer<vtkDataSetMapper>::New ();
mapper->SetScalarModeToUsePointData ();
mapper->SetInput(axes_tubes->GetOutput ());
2013-07-09 21:18:44 +08:00
vtkSmartPointer<vtkLODActor> actor = vtkSmartPointer<vtkLODActor>::New();
actor->SetMapper(mapper);
2013-07-09 21:18:44 +08:00
WidgetAccessor::setProp(*this, actor);
}
2013-07-08 16:41:42 +08:00
2013-07-13 22:01:56 +08:00
template<> cv::viz::CoordinateSystemWidget cv::viz::Widget::cast<cv::viz::CoordinateSystemWidget>()
{
Widget3D widget = this->cast<Widget3D>();
return static_cast<CoordinateSystemWidget&>(widget);
}
2013-07-10 18:51:17 +08:00
///////////////////////////////////////////////////////////////////////////////////////////////
/// polyline widget implementation
2013-07-13 22:01:56 +08:00
struct cv::viz::PolyLineWidget::CopyImpl
2013-07-10 18:51:17 +08:00
{
template<typename _Tp>
static void copy(const Mat& source, Vec<_Tp, 3> *output, vtkSmartPointer<vtkPolyLine> polyLine)
{
int s_chs = source.channels();
for(int y = 0, id = 0; y < source.rows; ++y)
{
const _Tp* srow = source.ptr<_Tp>(y);
for(int x = 0; x < source.cols; ++x, srow += s_chs, ++id)
{
*output++ = Vec<_Tp, 3>(srow);
polyLine->GetPointIds()->SetId(id,id);
}
}
}
};
2013-07-13 22:01:56 +08:00
cv::viz::PolyLineWidget::PolyLineWidget(InputArray _pointData, const Color &color)
2013-07-10 18:51:17 +08:00
{
Mat pointData = _pointData.getMat();
CV_Assert(pointData.type() == CV_32FC3 || pointData.type() == CV_32FC4 || pointData.type() == CV_64FC3 || pointData.type() == CV_64FC4);
vtkIdType nr_points = pointData.total();
vtkSmartPointer<vtkPoints> points = vtkSmartPointer<vtkPoints>::New ();
vtkSmartPointer<vtkPolyData> polyData = vtkSmartPointer<vtkPolyData>::New ();
vtkSmartPointer<vtkPolyLine> polyLine = vtkSmartPointer<vtkPolyLine>::New ();
if (pointData.depth() == CV_32F)
points->SetDataTypeToFloat();
else
points->SetDataTypeToDouble();
points->SetNumberOfPoints(nr_points);
polyLine->GetPointIds()->SetNumberOfIds(nr_points);
if (pointData.depth() == CV_32F)
{
// Get a pointer to the beginning of the data array
Vec3f *data_beg = vtkpoints_data<float>(points);
CopyImpl::copy(pointData, data_beg, polyLine);
}
else if (pointData.depth() == CV_64F)
{
// Get a pointer to the beginning of the data array
Vec3d *data_beg = vtkpoints_data<double>(points);
CopyImpl::copy(pointData, data_beg, polyLine);
}
vtkSmartPointer<vtkCellArray> cells = vtkSmartPointer<vtkCellArray>::New();
cells->InsertNextCell(polyLine);
polyData->SetPoints(points);
polyData->SetLines(cells);
vtkSmartPointer<vtkPolyDataMapper> mapper = vtkSmartPointer<vtkPolyDataMapper>::New();
mapper->SetInput(polyData);
vtkSmartPointer<vtkActor> actor = vtkSmartPointer<vtkActor>::New();
actor->SetMapper(mapper);
WidgetAccessor::setProp(*this, actor);
setColor(color);
}
2013-07-13 22:01:56 +08:00
template<> cv::viz::PolyLineWidget cv::viz::Widget::cast<cv::viz::PolyLineWidget>()
2013-07-10 18:51:17 +08:00
{
Widget3D widget = this->cast<Widget3D>();
return static_cast<PolyLineWidget&>(widget);
}
2013-07-10 21:34:19 +08:00
///////////////////////////////////////////////////////////////////////////////////////////////
/// grid widget implementation
2013-07-13 22:01:56 +08:00
cv::viz::GridWidget::GridWidget(Vec2i dimensions, Vec2d spacing, const Color &color)
2013-07-10 21:34:19 +08:00
{
// Create the grid using image data
vtkSmartPointer<vtkImageData> grid = vtkSmartPointer<vtkImageData>::New();
// Add 1 to dimensions because in ImageData dimensions is the number of lines
// - however here it means number of cells
grid->SetDimensions(dimensions[0]+1, dimensions[1]+1, 1);
grid->SetSpacing(spacing[0], spacing[1], 0.);
// Set origin of the grid to be the middle of the grid
grid->SetOrigin(dimensions[0] * spacing[0] * (-0.5), dimensions[1] * spacing[1] * (-0.5), 0);
vtkSmartPointer<vtkDataSetMapper> mapper = vtkSmartPointer<vtkDataSetMapper>::New();
mapper->SetInput(grid);
vtkSmartPointer<vtkActor> actor = vtkSmartPointer<vtkActor>::New();
actor->SetMapper(mapper);
// Show it as wireframe
actor->GetProperty ()->SetRepresentationToWireframe ();
WidgetAccessor::setProp(*this, actor);
2013-07-13 23:08:25 +08:00
setColor(color);
2013-07-10 21:34:19 +08:00
}
2013-07-13 22:01:56 +08:00
template<> cv::viz::GridWidget cv::viz::Widget::cast<cv::viz::GridWidget>()
2013-07-10 21:34:19 +08:00
{
Widget3D widget = this->cast<Widget3D>();
return static_cast<GridWidget&>(widget);
}
2013-07-10 22:34:47 +08:00
///////////////////////////////////////////////////////////////////////////////////////////////
/// text3D widget implementation
2013-07-13 22:01:56 +08:00
cv::viz::Text3DWidget::Text3DWidget(const String &text, const Point3f &position, double text_scale, const Color &color)
2013-07-10 22:34:47 +08:00
{
vtkSmartPointer<vtkVectorText> textSource = vtkSmartPointer<vtkVectorText>::New ();
textSource->SetText (text.c_str());
textSource->Update ();
vtkSmartPointer<vtkPolyDataMapper> mapper = vtkSmartPointer<vtkPolyDataMapper>::New ();
mapper->SetInputConnection (textSource->GetOutputPort ());
vtkSmartPointer<vtkFollower> actor = vtkSmartPointer<vtkFollower>::New ();
actor->SetMapper (mapper);
actor->SetPosition (position.x, position.y, position.z);
actor->SetScale (text_scale);
WidgetAccessor::setProp(*this, actor);
setColor(color);
}
2013-07-13 22:01:56 +08:00
void cv::viz::Text3DWidget::setText(const String &text)
2013-07-10 22:34:47 +08:00
{
vtkFollower *actor = vtkFollower::SafeDownCast(WidgetAccessor::getProp(*this));
CV_Assert(actor);
// Update text source
vtkPolyDataMapper *mapper = vtkPolyDataMapper::SafeDownCast(actor->GetMapper());
vtkVectorText * textSource = vtkVectorText::SafeDownCast(mapper->GetInputConnection(0,0)->GetProducer());
CV_Assert(textSource);
textSource->SetText(text.c_str());
textSource->Update();
}
2013-07-13 22:01:56 +08:00
cv::String cv::viz::Text3DWidget::getText() const
2013-07-10 22:34:47 +08:00
{
vtkFollower *actor = vtkFollower::SafeDownCast(WidgetAccessor::getProp(*this));
CV_Assert(actor);
vtkPolyDataMapper *mapper = vtkPolyDataMapper::SafeDownCast(actor->GetMapper());
vtkVectorText * textSource = vtkVectorText::SafeDownCast(mapper->GetInputConnection(0,0)->GetProducer());
CV_Assert(textSource);
return textSource->GetText();
}
2013-07-13 22:01:56 +08:00
template<> cv::viz::Text3DWidget cv::viz::Widget::cast<cv::viz::Text3DWidget>()
2013-07-10 22:34:47 +08:00
{
Widget3D widget = this->cast<Widget3D>();
return static_cast<Text3DWidget&>(widget);
}
///////////////////////////////////////////////////////////////////////////////////////////////
/// text widget implementation
2013-07-13 22:01:56 +08:00
cv::viz::TextWidget::TextWidget(const String &text, const Point2i &pos, int font_size, const Color &color)
2013-07-08 16:41:42 +08:00
{
2013-07-09 21:18:44 +08:00
vtkSmartPointer<vtkTextActor> actor = vtkSmartPointer<vtkTextActor>::New();
2013-07-08 16:41:42 +08:00
actor->SetPosition (pos.x, pos.y);
actor->SetInput (text.c_str ());
vtkSmartPointer<vtkTextProperty> tprop = actor->GetTextProperty ();
tprop->SetFontSize (font_size);
tprop->SetFontFamilyToArial ();
tprop->SetJustificationToLeft ();
tprop->BoldOn ();
Color c = vtkcolor(color);
tprop->SetColor (c.val);
2013-07-09 21:18:44 +08:00
WidgetAccessor::setProp(*this, actor);
2013-07-08 16:41:42 +08:00
}
2013-07-13 22:01:56 +08:00
template<> cv::viz::TextWidget cv::viz::Widget::cast<cv::viz::TextWidget>()
{
Widget2D widget = this->cast<Widget2D>();
return static_cast<TextWidget&>(widget);
}
2013-07-13 22:01:56 +08:00
void cv::viz::TextWidget::setText(const String &text)
2013-07-09 21:18:44 +08:00
{
vtkTextActor *actor = vtkTextActor::SafeDownCast(WidgetAccessor::getProp(*this));
CV_Assert(actor);
actor->SetInput(text.c_str());
}
2013-07-13 22:01:56 +08:00
cv::String cv::viz::TextWidget::getText() const
2013-07-09 21:18:44 +08:00
{
vtkTextActor *actor = vtkTextActor::SafeDownCast(WidgetAccessor::getProp(*this));
CV_Assert(actor);
return actor->GetInput();
}