/*M/////////////////////////////////////////////////////////////////////////////////////// // // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. // // By downloading, copying, installing or using the software you agree to this license. // If you do not agree to this license, do not download, install, // copy or use the software. // // // License Agreement // For Open Source Computer Vision Library // // Copyright (C) 2013, OpenCV Foundation, all rights reserved. // Third party copyrights are property of their respective owners. // // Redistribution and use in source and binary forms, with or without modification, // are permitted provided that the following conditions are met: // // * Redistribution's of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // // * Redistribution's in binary form must reproduce the above copyright notice, // this list of conditions and the following disclaimer in the documentation // and/or other materials provided with the distribution. // // * The name of the copyright holders may not be used to endorse or promote products // derived from this software without specific prior written permission. // // This software is provided by the copyright holders and contributors "as is" and // any express or implied warranties, including, but not limited to, the implied // warranties of merchantability and fitness for a particular purpose are disclaimed. // In no event shall the Intel Corporation or contributors be liable for any direct, // indirect, incidental, special, exemplary, or consequential damages // (including, but not limited to, procurement of substitute goods or services; // loss of use, data, or profits; or business interruption) however caused // and on any theory of liability, whether in contract, strict liability, // or tort (including negligence or otherwise) arising in any way out of // the use of this software, even if advised of the possibility of such damage. // // Authors: // * Ozan Tonkal, ozantonkal@gmail.com // * Anatoly Baksheev, Itseez Inc. myname.mysurname <> mycompany.com // // OpenCV Viz module is complete rewrite of // PCL visualization module (www.pointclouds.org) // //M*/ #include "precomp.hpp" namespace cv { namespace viz { template Vec<_Tp, 3>* vtkpoints_data(vtkSmartPointer& points); } } /////////////////////////////////////////////////////////////////////////////////////////////// /// line widget implementation cv::viz::LineWidget::LineWidget(const Point3f &pt1, const Point3f &pt2, const Color &color) { vtkSmartPointer line = vtkSmartPointer::New(); line->SetPoint1(pt1.x, pt1.y, pt1.z); line->SetPoint2(pt2.x, pt2.y, pt2.z); line->Update(); vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetInput(line->GetOutput()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); setColor(color); } template<> cv::viz::LineWidget cv::viz::Widget::cast() { Widget3D widget = this->cast(); return static_cast(widget); } /////////////////////////////////////////////////////////////////////////////////////////////// /// plane widget implementation struct cv::viz::PlaneWidget::SetSizeImpl { template static vtkSmartPointer setSize(const Vec<_Tp, 3> ¢er, vtkSmartPointer poly_data, double size) { vtkSmartPointer transform = vtkSmartPointer::New(); transform->PreMultiply(); transform->Translate(center[0], center[1], center[2]); transform->Scale(size, size, size); transform->Translate(-center[0], -center[1], -center[2]); vtkSmartPointer transform_filter = vtkSmartPointer::New(); transform_filter->SetInput(poly_data); transform_filter->SetTransform(transform); transform_filter->Update(); return transform_filter->GetOutput(); } }; cv::viz::PlaneWidget::PlaneWidget(const Vec4f& coefs, double size, const Color &color) { vtkSmartPointer plane = vtkSmartPointer::New(); plane->SetNormal(coefs[0], coefs[1], coefs[2]); double norm = cv::norm(Vec3f(coefs.val)); plane->Push(-coefs[3] / norm); Vec3d p_center; plane->GetOrigin(p_center.val); vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetInput(SetSizeImpl::setSize(p_center, plane->GetOutput(), size)); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); setColor(color); } cv::viz::PlaneWidget::PlaneWidget(const Vec4f& coefs, const Point3f& pt, double size, const Color &color) { vtkSmartPointer plane = vtkSmartPointer::New(); Point3f coefs3(coefs[0], coefs[1], coefs[2]); double norm_sqr = 1.0 / coefs3.dot(coefs3); plane->SetNormal(coefs[0], coefs[1], coefs[2]); double t = coefs3.dot(pt) + coefs[3]; Vec3f p_center = pt - coefs3 * t * norm_sqr; plane->SetCenter(p_center[0], p_center[1], p_center[2]); vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetInput(SetSizeImpl::setSize(p_center, plane->GetOutput(), size)); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); setColor(color); } template<> cv::viz::PlaneWidget cv::viz::Widget::cast() { Widget3D widget = this->cast(); return static_cast(widget); } /////////////////////////////////////////////////////////////////////////////////////////////// /// sphere widget implementation cv::viz::SphereWidget::SphereWidget(const Point3f ¢er, float radius, int sphere_resolution, const Color &color) { vtkSmartPointer sphere = vtkSmartPointer::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 mapper = vtkSmartPointer::New(); mapper->SetInput(sphere->GetOutput()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); setColor(color); } template<> cv::viz::SphereWidget cv::viz::Widget::cast() { Widget3D widget = this->cast(); return static_cast(widget); } /////////////////////////////////////////////////////////////////////////////////////////////// /// arrow widget implementation cv::viz::ArrowWidget::ArrowWidget(const Point3f& pt1, const Point3f& pt2, double thickness, const Color &color) { vtkSmartPointer arrowSource = vtkSmartPointer::New(); 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 matrix = vtkSmartPointer::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 transform = vtkSmartPointer::New(); transform->Translate(startPoint); transform->Concatenate(matrix); transform->Scale(length, length, length); // Transform the polydata vtkSmartPointer transformPD = vtkSmartPointer::New(); transformPD->SetTransform(transform); transformPD->SetInputConnection(arrowSource->GetOutputPort()); vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetInput(transformPD->GetOutput()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); setColor(color); } template<> cv::viz::ArrowWidget cv::viz::Widget::cast() { Widget3D widget = this->cast(); return static_cast(widget); } /////////////////////////////////////////////////////////////////////////////////////////////// /// circle widget implementation cv::viz::CircleWidget::CircleWidget(const Point3f& pt, double radius, double thickness, const Color& color) { vtkSmartPointer disk = vtkSmartPointer::New(); // Maybe the resolution should be lower e.g. 50 or 25 disk->SetCircumferentialResolution(50); disk->SetInnerRadius(radius - thickness); disk->SetOuterRadius(radius + thickness); // Set the circle origin vtkSmartPointer t = vtkSmartPointer::New(); t->Identity(); t->Translate(pt.x, pt.y, pt.z); vtkSmartPointer tf = vtkSmartPointer::New(); tf->SetTransform(t); tf->SetInputConnection(disk->GetOutputPort()); vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetInput(tf->GetOutput()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); setColor(color); } template<> cv::viz::CircleWidget cv::viz::Widget::cast() { Widget3D widget = this->cast(); return static_cast(widget); } /////////////////////////////////////////////////////////////////////////////////////////////// /// cylinder widget implementation cv::viz::CylinderWidget::CylinderWidget(const Point3f& pt_on_axis, const Point3f& axis_direction, double radius, int numsides, const Color &color) { const Point3f pt2 = pt_on_axis + axis_direction; vtkSmartPointer line = vtkSmartPointer::New(); line->SetPoint1(pt_on_axis.x, pt_on_axis.y, pt_on_axis.z); line->SetPoint2(pt2.x, pt2.y, pt2.z); vtkSmartPointer tuber = vtkSmartPointer::New(); tuber->SetInputConnection(line->GetOutputPort()); tuber->SetRadius(radius); tuber->SetNumberOfSides(numsides); vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetInput(tuber->GetOutput()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); setColor(color); } template<> cv::viz::CylinderWidget cv::viz::Widget::cast() { Widget3D widget = this->cast(); return static_cast(widget); } /////////////////////////////////////////////////////////////////////////////////////////////// /// cylinder widget implementation cv::viz::CubeWidget::CubeWidget(const Point3f& pt_min, const Point3f& pt_max, bool wire_frame, const Color &color) { vtkSmartPointer mapper = vtkSmartPointer::New(); if (wire_frame) { vtkSmartPointer cube = vtkSmartPointer::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 cube = vtkSmartPointer::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()); } vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); setColor(color); } template<> cv::viz::CubeWidget cv::viz::Widget::cast() { Widget3D widget = this->cast(); return static_cast(widget); } /////////////////////////////////////////////////////////////////////////////////////////////// /// coordinate system widget implementation cv::viz::CoordinateSystemWidget::CoordinateSystemWidget(double scale) { vtkSmartPointer axes = vtkSmartPointer::New(); axes->SetOrigin(0, 0, 0); axes->SetScaleFactor(scale); vtkSmartPointer axes_colors = vtkSmartPointer::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 axes_data = axes->GetOutput(); axes_data->Update(); axes_data->GetPointData()->SetScalars(axes_colors); vtkSmartPointer axes_tubes = vtkSmartPointer::New(); axes_tubes->SetInput(axes_data); axes_tubes->SetRadius(axes->GetScaleFactor() / 50.0); axes_tubes->SetNumberOfSides(6); vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetScalarModeToUsePointData(); mapper->SetInput(axes_tubes->GetOutput()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); } template<> cv::viz::CoordinateSystemWidget cv::viz::Widget::cast() { Widget3D widget = this->cast(); return static_cast(widget); } /////////////////////////////////////////////////////////////////////////////////////////////// /// polyline widget implementation struct cv::viz::PolyLineWidget::CopyImpl { template static void copy(const Mat& source, Vec<_Tp, 3> *output, vtkSmartPointer 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); } } } }; cv::viz::PolyLineWidget::PolyLineWidget(InputArray _pointData, const Color &color) { 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 points = vtkSmartPointer::New(); vtkSmartPointer polyData = vtkSmartPointer::New(); vtkSmartPointer polyLine = vtkSmartPointer::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(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(points); CopyImpl::copy(pointData, data_beg, polyLine); } vtkSmartPointer cells = vtkSmartPointer::New(); cells->InsertNextCell(polyLine); polyData->SetPoints(points); polyData->SetLines(cells); vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetInput(polyData); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); setColor(color); } template<> cv::viz::PolyLineWidget cv::viz::Widget::cast() { Widget3D widget = this->cast(); return static_cast(widget); } /////////////////////////////////////////////////////////////////////////////////////////////// /// grid widget implementation struct cv::viz::GridWidget::GridImpl { static vtkSmartPointer createGrid(const Vec2i &dimensions, const Vec2d &spacing) { // Create the grid using image data vtkSmartPointer grid = vtkSmartPointer::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); // Extract the edges so we have the grid vtkSmartPointer filter = vtkSmartPointer::New(); filter->SetInputConnection(grid->GetProducerPort()); filter->Update(); return filter->GetOutput(); } }; cv::viz::GridWidget::GridWidget(const Vec2i &dimensions, const Vec2d &spacing, const Color &color) { vtkSmartPointer grid = GridImpl::createGrid(dimensions, spacing); vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetInputConnection(grid->GetProducerPort()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); setColor(color); } cv::viz::GridWidget::GridWidget(const Vec4f &coefs, const Vec2i &dimensions, const Vec2d &spacing, const Color &color) { vtkSmartPointer grid = GridImpl::createGrid(dimensions, spacing); // Estimate the transform to set the normal based on the coefficients Vec3f normal(coefs[0], coefs[1], coefs[2]); Vec3f up_vector(0.0f, 1.0f, 0.0f); // Just set as default double push_distance = -coefs[3]/cv::norm(Vec3f(coefs.val)); Vec3f u,v,n; n = normalize(normal); u = normalize(up_vector.cross(n)); v = n.cross(u); vtkSmartPointer mat_trans = vtkSmartPointer::New(); mat_trans->SetElement(0,0,u[0]); mat_trans->SetElement(0,1,u[1]); mat_trans->SetElement(0,2,u[2]); mat_trans->SetElement(1,0,v[0]); mat_trans->SetElement(1,1,v[1]); mat_trans->SetElement(1,2,v[2]); mat_trans->SetElement(2,0,n[0]); mat_trans->SetElement(2,1,n[1]); mat_trans->SetElement(2,2,n[2]); // Inverse rotation (orthogonal, so just take transpose) mat_trans->Transpose(); mat_trans->SetElement(0,3,n[0] * push_distance); mat_trans->SetElement(1,3,n[1] * push_distance); mat_trans->SetElement(2,3,n[2] * push_distance); mat_trans->SetElement(3,3,1); vtkSmartPointer transform = vtkSmartPointer::New(); transform->PreMultiply(); transform->SetMatrix(mat_trans); vtkSmartPointer transform_filter = vtkSmartPointer::New(); transform_filter->SetTransform(transform); transform_filter->SetInputConnection(grid->GetProducerPort()); transform_filter->Update(); vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetInputConnection(transform_filter->GetOutputPort()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); setColor(color); } template<> cv::viz::GridWidget cv::viz::Widget::cast() { Widget3D widget = this->cast(); return static_cast(widget); } /////////////////////////////////////////////////////////////////////////////////////////////// /// text3D widget implementation cv::viz::Text3DWidget::Text3DWidget(const String &text, const Point3f &position, double text_scale, bool face_camera, const Color &color) { vtkSmartPointer textSource = vtkSmartPointer::New(); textSource->SetText(text.c_str()); textSource->Update(); vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetInputConnection(textSource->GetOutputPort()); if (face_camera) { vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); actor->SetPosition(position.x, position.y, position.z); actor->SetScale(text_scale); WidgetAccessor::setProp(*this, actor); } else { vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); actor->SetPosition(position.x, position.y, position.z); actor->SetScale(text_scale); WidgetAccessor::setProp(*this, actor); } setColor(color); } void cv::viz::Text3DWidget::setText(const String &text) { vtkFollower *actor = vtkFollower::SafeDownCast(WidgetAccessor::getProp(*this)); CV_Assert("This widget does not support text." && actor); // Update text source vtkPolyDataMapper *mapper = vtkPolyDataMapper::SafeDownCast(actor->GetMapper()); vtkVectorText * textSource = vtkVectorText::SafeDownCast(mapper->GetInputConnection(0,0)->GetProducer()); CV_Assert("This widget does not support text." && textSource); textSource->SetText(text.c_str()); textSource->Update(); } cv::String cv::viz::Text3DWidget::getText() const { vtkFollower *actor = vtkFollower::SafeDownCast(WidgetAccessor::getProp(*this)); CV_Assert("This widget does not support text." && actor); vtkPolyDataMapper *mapper = vtkPolyDataMapper::SafeDownCast(actor->GetMapper()); vtkVectorText * textSource = vtkVectorText::SafeDownCast(mapper->GetInputConnection(0,0)->GetProducer()); CV_Assert("This widget does not support text." && textSource); return textSource->GetText(); } template<> cv::viz::Text3DWidget cv::viz::Widget::cast() { Widget3D widget = this->cast(); return static_cast(widget); } /////////////////////////////////////////////////////////////////////////////////////////////// /// text widget implementation cv::viz::TextWidget::TextWidget(const String &text, const Point2i &pos, int font_size, const Color &color) { vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetPosition(pos.x, pos.y); actor->SetInput(text.c_str()); vtkSmartPointer tprop = actor->GetTextProperty(); tprop->SetFontSize(font_size); tprop->SetFontFamilyToArial(); tprop->SetJustificationToLeft(); tprop->BoldOn(); Color c = vtkcolor(color); tprop->SetColor(c.val); WidgetAccessor::setProp(*this, actor); } template<> cv::viz::TextWidget cv::viz::Widget::cast() { Widget2D widget = this->cast(); return static_cast(widget); } void cv::viz::TextWidget::setText(const String &text) { vtkTextActor *actor = vtkTextActor::SafeDownCast(WidgetAccessor::getProp(*this)); CV_Assert("This widget does not support text." && actor); actor->SetInput(text.c_str()); } cv::String cv::viz::TextWidget::getText() const { vtkTextActor *actor = vtkTextActor::SafeDownCast(WidgetAccessor::getProp(*this)); CV_Assert("This widget does not support text." && actor); return actor->GetInput(); } /////////////////////////////////////////////////////////////////////////////////////////////// /// image overlay widget implementation cv::viz::ImageOverlayWidget::ImageOverlayWidget(const Mat &image, const Rect &rect) { CV_Assert(!image.empty() && image.depth() == CV_8U); // Create the vtk image and set its parameters based on input image vtkSmartPointer vtk_image = vtkSmartPointer::New(); ConvertToVtkImage::convert(image, vtk_image); // Need to flip the image as the coordinates are different in OpenCV and VTK vtkSmartPointer flipFilter = vtkSmartPointer::New(); flipFilter->SetFilteredAxis(1); // Vertical flip flipFilter->SetInputConnection(vtk_image->GetProducerPort()); flipFilter->Update(); // Scale the image based on the Rect vtkSmartPointer transform = vtkSmartPointer::New(); transform->Scale(double(image.cols)/rect.width,double(image.rows)/rect.height,1.0); vtkSmartPointer image_reslice = vtkSmartPointer::New(); image_reslice->SetResliceTransform(transform); image_reslice->SetInputConnection(flipFilter->GetOutputPort()); image_reslice->SetOutputDimensionality(2); image_reslice->InterpolateOn(); image_reslice->AutoCropOutputOn(); vtkSmartPointer imageMapper = vtkSmartPointer::New(); imageMapper->SetInputConnection(image_reslice->GetOutputPort()); imageMapper->SetColorWindow(255); // OpenCV color imageMapper->SetColorLevel(127.5); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(imageMapper); actor->SetPosition(rect.x, rect.y); WidgetAccessor::setProp(*this, actor); } void cv::viz::ImageOverlayWidget::setImage(const Mat &image) { CV_Assert(!image.empty() && image.depth() == CV_8U); vtkActor2D *actor = vtkActor2D::SafeDownCast(WidgetAccessor::getProp(*this)); CV_Assert("This widget does not support overlay image." && actor); vtkImageMapper *mapper = vtkImageMapper::SafeDownCast(actor->GetMapper()); CV_Assert("This widget does not support overlay image." && mapper); // Create the vtk image and set its parameters based on input image vtkSmartPointer vtk_image = vtkSmartPointer::New(); ConvertToVtkImage::convert(image, vtk_image); // Need to flip the image as the coordinates are different in OpenCV and VTK vtkSmartPointer flipFilter = vtkSmartPointer::New(); flipFilter->SetFilteredAxis(1); // Vertical flip flipFilter->SetInputConnection(vtk_image->GetProducerPort()); flipFilter->Update(); mapper->SetInputConnection(flipFilter->GetOutputPort()); } template<> cv::viz::ImageOverlayWidget cv::viz::Widget::cast() { Widget2D widget = this->cast(); return static_cast(widget); } /////////////////////////////////////////////////////////////////////////////////////////////// /// image 3D widget implementation cv::viz::Image3DWidget::Image3DWidget(const Mat &image, const Size &size) { CV_Assert(!image.empty() && image.depth() == CV_8U); // Create the vtk image and set its parameters based on input image vtkSmartPointer vtk_image = vtkSmartPointer::New(); ConvertToVtkImage::convert(image, vtk_image); // Need to flip the image as the coordinates are different in OpenCV and VTK vtkSmartPointer flipFilter = vtkSmartPointer::New(); flipFilter->SetFilteredAxis(1); // Vertical flip flipFilter->SetInputConnection(vtk_image->GetProducerPort()); flipFilter->Update(); Vec3d plane_center(size.width * 0.5, size.height * 0.5, 0.0); vtkSmartPointer plane = vtkSmartPointer::New(); plane->SetCenter(plane_center[0], plane_center[1], plane_center[2]); plane->SetNormal(0.0, 0.0, 1.0); vtkSmartPointer transform = vtkSmartPointer::New(); transform->PreMultiply(); transform->Translate(plane_center[0], plane_center[1], plane_center[2]); transform->Scale(size.width, size.height, 1.0); transform->Translate(-plane_center[0], -plane_center[1], -plane_center[2]); vtkSmartPointer transform_filter = vtkSmartPointer::New(); transform_filter->SetTransform(transform); transform_filter->SetInputConnection(plane->GetOutputPort()); transform_filter->Update(); // Apply the texture vtkSmartPointer texture = vtkSmartPointer::New(); texture->SetInputConnection(flipFilter->GetOutputPort()); vtkSmartPointer texturePlane = vtkSmartPointer::New(); texturePlane->SetInputConnection(transform_filter->GetOutputPort()); vtkSmartPointer planeMapper = vtkSmartPointer::New(); planeMapper->SetInputConnection(texturePlane->GetOutputPort()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(planeMapper); actor->SetTexture(texture); WidgetAccessor::setProp(*this, actor); } cv::viz::Image3DWidget::Image3DWidget(const Vec3f &position, const Vec3f &normal, const Vec3f &up_vector, const Mat &image, const Size &size) { CV_Assert(!image.empty() && image.depth() == CV_8U); // Create the vtk image and set its parameters based on input image vtkSmartPointer vtk_image = vtkSmartPointer::New(); ConvertToVtkImage::convert(image, vtk_image); // Need to flip the image as the coordinates are different in OpenCV and VTK vtkSmartPointer flipFilter = vtkSmartPointer::New(); flipFilter->SetFilteredAxis(1); // Vertical flip flipFilter->SetInputConnection(vtk_image->GetProducerPort()); flipFilter->Update(); vtkSmartPointer plane = vtkSmartPointer::New(); plane->SetCenter(0.0, 0.0, 0.0); plane->SetNormal(0.0, 0.0, 1.0); // Compute the transformation matrix for drawing the camera frame in a scene Vec3f u,v,n; n = normalize(normal); u = normalize(up_vector.cross(n)); v = n.cross(u); vtkSmartPointer mat_trans = vtkSmartPointer::New(); mat_trans->SetElement(0,0,u[0]); mat_trans->SetElement(0,1,u[1]); mat_trans->SetElement(0,2,u[2]); mat_trans->SetElement(1,0,v[0]); mat_trans->SetElement(1,1,v[1]); mat_trans->SetElement(1,2,v[2]); mat_trans->SetElement(2,0,n[0]); mat_trans->SetElement(2,1,n[1]); mat_trans->SetElement(2,2,n[2]); // Inverse rotation (orthogonal, so just take transpose) mat_trans->Transpose(); // Then translate the coordinate frame to camera position mat_trans->SetElement(0,3,position[0]); mat_trans->SetElement(1,3,position[1]); mat_trans->SetElement(2,3,position[2]); mat_trans->SetElement(3,3,1); // Apply the texture vtkSmartPointer texture = vtkSmartPointer::New(); texture->SetInputConnection(flipFilter->GetOutputPort()); vtkSmartPointer texturePlane = vtkSmartPointer::New(); texturePlane->SetInputConnection(plane->GetOutputPort()); // Apply the transform after texture mapping vtkSmartPointer transform = vtkSmartPointer::New(); transform->PreMultiply(); transform->SetMatrix(mat_trans); transform->Scale(size.width, size.height, 1.0); vtkSmartPointer transform_filter = vtkSmartPointer::New(); transform_filter->SetTransform(transform); transform_filter->SetInputConnection(texturePlane->GetOutputPort()); transform_filter->Update(); vtkSmartPointer planeMapper = vtkSmartPointer::New(); planeMapper->SetInputConnection(transform_filter->GetOutputPort()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(planeMapper); actor->SetTexture(texture); WidgetAccessor::setProp(*this, actor); } void cv::viz::Image3DWidget::setImage(const Mat &image) { CV_Assert(!image.empty() && image.depth() == CV_8U); vtkActor *actor = vtkActor::SafeDownCast(WidgetAccessor::getProp(*this)); CV_Assert("This widget does not support 3D image." && actor); // Create the vtk image and set its parameters based on input image vtkSmartPointer vtk_image = vtkSmartPointer::New(); ConvertToVtkImage::convert(image, vtk_image); // Need to flip the image as the coordinates are different in OpenCV and VTK vtkSmartPointer flipFilter = vtkSmartPointer::New(); flipFilter->SetFilteredAxis(1); // Vertical flip flipFilter->SetInputConnection(vtk_image->GetProducerPort()); flipFilter->Update(); // Apply the texture vtkSmartPointer texture = vtkSmartPointer::New(); texture->SetInputConnection(flipFilter->GetOutputPort()); actor->SetTexture(texture); } template<> cv::viz::Image3DWidget cv::viz::Widget::cast() { Widget3D widget = this->cast(); return static_cast(widget); } /////////////////////////////////////////////////////////////////////////////////////////////// /// camera position widget implementation struct cv::viz::CameraPositionWidget::ProjectImage { static void projectImage(float fovy, float far_end_height, const Mat &image, double scale, const Color &color, vtkSmartPointer actor) { // Create a camera vtkSmartPointer camera = vtkSmartPointer::New(); float aspect_ratio = float(image.cols)/float(image.rows); // Create the vtk image vtkSmartPointer vtk_image = vtkSmartPointer::New(); ConvertToVtkImage::convert(image, vtk_image); // Adjust a pixel of the vtk_image vtk_image->SetScalarComponentFromDouble(0, image.rows-1, 0, 0, color[2]); vtk_image->SetScalarComponentFromDouble(0, image.rows-1, 0, 1, color[1]); vtk_image->SetScalarComponentFromDouble(0, image.rows-1, 0, 2, color[0]); // Need to flip the image as the coordinates are different in OpenCV and VTK vtkSmartPointer flipFilter = vtkSmartPointer::New(); flipFilter->SetFilteredAxis(1); // Vertical flip flipFilter->SetInputConnection(vtk_image->GetProducerPort()); flipFilter->Update(); Vec3d plane_center(0.0, 0.0, scale); vtkSmartPointer plane = vtkSmartPointer::New(); plane->SetCenter(plane_center[0], plane_center[1], plane_center[2]); plane->SetNormal(0.0, 0.0, 1.0); vtkSmartPointer transform = vtkSmartPointer::New(); transform->PreMultiply(); transform->Translate(plane_center[0], plane_center[1], plane_center[2]); transform->Scale(far_end_height*aspect_ratio, far_end_height, 1.0); transform->RotateY(180.0); transform->Translate(-plane_center[0], -plane_center[1], -plane_center[2]); // Apply the texture vtkSmartPointer texture = vtkSmartPointer::New(); texture->SetInputConnection(flipFilter->GetOutputPort()); vtkSmartPointer texturePlane = vtkSmartPointer::New(); texturePlane->SetInputConnection(plane->GetOutputPort()); vtkSmartPointer transform_filter = vtkSmartPointer::New(); transform_filter->SetTransform(transform); transform_filter->SetInputConnection(texturePlane->GetOutputPort()); transform_filter->Update(); // Create frustum camera->SetViewAngle(fovy); camera->SetPosition(0.0,0.0,0.0); camera->SetViewUp(0.0,1.0,0.0); camera->SetFocalPoint(0.0,0.0,1.0); camera->SetClippingRange(0.01, scale); double planesArray[24]; camera->GetFrustumPlanes(aspect_ratio, planesArray); vtkSmartPointer planes = vtkSmartPointer::New(); planes->SetFrustumPlanes(planesArray); vtkSmartPointer frustumSource = vtkSmartPointer::New(); frustumSource->SetPlanes(planes); frustumSource->Update(); vtkSmartPointer filter = vtkSmartPointer::New(); filter->SetInput(frustumSource->GetOutput()); filter->Update(); // Frustum needs to be textured or else it can't be combined with image vtkSmartPointer frustum_texture = vtkSmartPointer::New(); frustum_texture->SetInputConnection(filter->GetOutputPort()); // Texture mapping with only one pixel from the image to have constant color frustum_texture->SetSRange(0.0, 0.0); frustum_texture->SetTRange(0.0, 0.0); vtkSmartPointer appendFilter = vtkSmartPointer::New(); appendFilter->AddInputConnection(frustum_texture->GetOutputPort()); appendFilter->AddInputConnection(transform_filter->GetOutputPort()); vtkSmartPointer planeMapper = vtkSmartPointer::New(); planeMapper->SetInputConnection(appendFilter->GetOutputPort()); actor->SetMapper(planeMapper); actor->SetTexture(texture); } }; cv::viz::CameraPositionWidget::CameraPositionWidget(double scale) { vtkSmartPointer axes = vtkSmartPointer::New(); axes->SetOrigin(0, 0, 0); axes->SetScaleFactor(scale); vtkSmartPointer axes_colors = vtkSmartPointer::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 axes_data = axes->GetOutput(); axes_data->Update(); axes_data->GetPointData()->SetScalars(axes_colors); vtkSmartPointer axes_tubes = vtkSmartPointer::New(); axes_tubes->SetInput(axes_data); axes_tubes->SetRadius(axes->GetScaleFactor() / 50.0); axes_tubes->SetNumberOfSides(6); vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetScalarModeToUsePointData(); mapper->SetInput(axes_tubes->GetOutput()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); } cv::viz::CameraPositionWidget::CameraPositionWidget(const Matx33f &K, double scale, const Color &color) { vtkSmartPointer camera = vtkSmartPointer::New(); float f_x = K(0,0); float f_y = K(1,1); float c_y = K(1,2); float aspect_ratio = f_y / f_x; // Assuming that this is an ideal camera (c_y and c_x are at the center of the image) float fovy = 2.0f * atan2(c_y,f_y) * 180 / CV_PI; camera->SetViewAngle(fovy); camera->SetPosition(0.0,0.0,0.0); camera->SetViewUp(0.0,1.0,0.0); camera->SetFocalPoint(0.0,0.0,1.0); camera->SetClippingRange(0.01, scale); double planesArray[24]; camera->GetFrustumPlanes(aspect_ratio, planesArray); vtkSmartPointer planes = vtkSmartPointer::New(); planes->SetFrustumPlanes(planesArray); vtkSmartPointer frustumSource = vtkSmartPointer::New(); frustumSource->SetPlanes(planes); frustumSource->Update(); vtkSmartPointer filter = vtkSmartPointer::New(); filter->SetInput(frustumSource->GetOutput()); filter->Update(); vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetInput(filter->GetOutput()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); setColor(color); } cv::viz::CameraPositionWidget::CameraPositionWidget(const Vec2f &fov, double scale, const Color &color) { vtkSmartPointer camera = vtkSmartPointer::New(); camera->SetViewAngle(fov[1] * 180 / CV_PI); // Vertical field of view camera->SetPosition(0.0,0.0,0.0); camera->SetViewUp(0.0,1.0,0.0); camera->SetFocalPoint(0.0,0.0,1.0); camera->SetClippingRange(0.01, scale); double aspect_ratio = tan(fov[0] * 0.5) / tan(fov[1] * 0.5); double planesArray[24]; camera->GetFrustumPlanes(aspect_ratio, planesArray); vtkSmartPointer planes = vtkSmartPointer::New(); planes->SetFrustumPlanes(planesArray); vtkSmartPointer frustumSource = vtkSmartPointer::New(); frustumSource->SetPlanes(planes); frustumSource->Update(); // Extract the edges so we have the grid vtkSmartPointer filter = vtkSmartPointer::New(); filter->SetInput(frustumSource->GetOutput()); filter->Update(); vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetInput(filter->GetOutput()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); setColor(color); } cv::viz::CameraPositionWidget::CameraPositionWidget(const Matx33f &K, const Mat &image, double scale, const Color &color) { CV_Assert(!image.empty() && image.depth() == CV_8U); float f_y = K(1,1); float c_y = K(1,2); // Assuming that this is an ideal camera (c_y and c_x are at the center of the image) float fovy = 2.0f * atan2(c_y,f_y) * 180.0f / CV_PI; float far_end_height = 2.0f * c_y * scale / f_y; vtkSmartPointer actor = vtkSmartPointer::New(); ProjectImage::projectImage(fovy, far_end_height, image, scale, color, actor); WidgetAccessor::setProp(*this, actor); } cv::viz::CameraPositionWidget::CameraPositionWidget(const Vec2f &fov, const Mat &image, double scale, const Color &color) { CV_Assert(!image.empty() && image.depth() == CV_8U); float fovy = fov[1] * 180.0f / CV_PI; float far_end_height = 2.0 * scale * tan(fov[1] * 0.5); vtkSmartPointer actor = vtkSmartPointer::New(); ProjectImage::projectImage(fovy, far_end_height, image, scale, color, actor); WidgetAccessor::setProp(*this, actor); } template<> cv::viz::CameraPositionWidget cv::viz::Widget::cast() { Widget3D widget = this->cast(); return static_cast(widget); } /////////////////////////////////////////////////////////////////////////////////////////////// /// trajectory widget implementation struct cv::viz::TrajectoryWidget::ApplyPath { static void applyPath(vtkSmartPointer poly_data, vtkSmartPointer append_filter, const std::vector &path) { vtkIdType nr_points = path.size(); for (vtkIdType i = 0; i < nr_points; ++i) { vtkSmartPointer new_data = vtkSmartPointer::New(); new_data->DeepCopy(poly_data); // Transform the default coordinate frame vtkSmartPointer transform = vtkSmartPointer::New(); transform->PreMultiply(); vtkSmartPointer mat_trans = vtkSmartPointer::New(); mat_trans = convertToVtkMatrix(path[i].matrix); transform->SetMatrix(mat_trans); vtkSmartPointer filter = vtkSmartPointer::New(); filter->SetInput(new_data); filter->SetTransform(transform); filter->Update(); append_filter->AddInputConnection(filter->GetOutputPort()); } } }; cv::viz::TrajectoryWidget::TrajectoryWidget(const std::vector &path, int display_mode, const Color &color, double scale) { vtkSmartPointer appendFilter = vtkSmartPointer::New(); // Bitwise and with 3 in order to limit the domain to 2 bits if ((~display_mode & 3) ^ TrajectoryWidget::DISPLAY_PATH) { // Create a poly line along the path vtkIdType nr_points = path.size(); vtkSmartPointer points = vtkSmartPointer::New(); vtkSmartPointer polyData = vtkSmartPointer::New(); vtkSmartPointer polyLine = vtkSmartPointer::New(); points->SetDataTypeToFloat(); points->SetNumberOfPoints(nr_points); polyLine->GetPointIds()->SetNumberOfIds(nr_points); Vec3f *data_beg = vtkpoints_data(points); for (vtkIdType i = 0; i < nr_points; ++i) { Vec3f cam_pose = path[i].translation(); *data_beg++ = cam_pose; polyLine->GetPointIds()->SetId(i,i); } vtkSmartPointer cells = vtkSmartPointer::New(); cells->InsertNextCell(polyLine); polyData->SetPoints(points); polyData->SetLines(cells); // Set the color for polyData vtkSmartPointer colors = vtkSmartPointer::New(); colors->SetNumberOfComponents(3); colors->SetNumberOfTuples(nr_points); colors->FillComponent(0, color[2]); colors->FillComponent(1, color[1]); colors->FillComponent(2, color[0]); polyData->GetPointData()->SetScalars(colors); appendFilter->AddInputConnection(polyData->GetProducerPort()); } if ((~display_mode & 3) ^ TrajectoryWidget::DISPLAY_FRAMES) { // Create frames and transform along the path vtkSmartPointer axes = vtkSmartPointer::New(); axes->SetOrigin(0, 0, 0); axes->SetScaleFactor(scale); vtkSmartPointer axes_colors = vtkSmartPointer::New(); axes_colors->SetNumberOfComponents(3); axes_colors->InsertNextTuple3(255,0,0); axes_colors->InsertNextTuple3(255,0,0); axes_colors->InsertNextTuple3(0,255,0); axes_colors->InsertNextTuple3(0,255,0); axes_colors->InsertNextTuple3(0,0,255); axes_colors->InsertNextTuple3(0,0,255); vtkSmartPointer axes_data = axes->GetOutput(); axes_data->Update(); axes_data->GetPointData()->SetScalars(axes_colors); vtkSmartPointer axes_tubes = vtkSmartPointer::New(); axes_tubes->SetInput(axes_data); axes_tubes->SetRadius(axes->GetScaleFactor() / 50.0); axes_tubes->SetNumberOfSides(6); axes_tubes->Update(); ApplyPath::applyPath(axes_tubes->GetOutput(), appendFilter, path); } vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetScalarModeToUsePointData(); mapper->SetInput(appendFilter->GetOutput()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); } cv::viz::TrajectoryWidget::TrajectoryWidget(const std::vector &path, const Matx33f &K, double scale, const Color &color) { vtkSmartPointer camera = vtkSmartPointer::New(); float f_x = K(0,0); float f_y = K(1,1); float c_y = K(1,2); float aspect_ratio = f_y / f_x; // Assuming that this is an ideal camera (c_y and c_x are at the center of the image) float fovy = 2.0f * atan2(c_y,f_y) * 180 / CV_PI; camera->SetViewAngle(fovy); camera->SetPosition(0.0,0.0,0.0); camera->SetViewUp(0.0,1.0,0.0); camera->SetFocalPoint(0.0,0.0,1.0); camera->SetClippingRange(0.01, scale); double planesArray[24]; camera->GetFrustumPlanes(aspect_ratio, planesArray); vtkSmartPointer planes = vtkSmartPointer::New(); planes->SetFrustumPlanes(planesArray); vtkSmartPointer frustumSource = vtkSmartPointer::New(); frustumSource->SetPlanes(planes); frustumSource->Update(); // Extract the edges vtkSmartPointer filter = vtkSmartPointer::New(); filter->SetInput(frustumSource->GetOutput()); filter->Update(); vtkSmartPointer appendFilter = vtkSmartPointer::New(); ApplyPath::applyPath(filter->GetOutput(), appendFilter, path); vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetInput(appendFilter->GetOutput()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); setColor(color); } cv::viz::TrajectoryWidget::TrajectoryWidget(const std::vector &path, const Vec2f &fov, double scale, const Color &color) { vtkSmartPointer camera = vtkSmartPointer::New(); camera->SetViewAngle(fov[1] * 180 / CV_PI); // Vertical field of view camera->SetPosition(0.0,0.0,0.0); camera->SetViewUp(0.0,1.0,0.0); camera->SetFocalPoint(0.0,0.0,1.0); camera->SetClippingRange(0.01, scale); double aspect_ratio = tan(fov[0] * 0.5) / tan(fov[1] * 0.5); double planesArray[24]; camera->GetFrustumPlanes(aspect_ratio, planesArray); vtkSmartPointer planes = vtkSmartPointer::New(); planes->SetFrustumPlanes(planesArray); vtkSmartPointer frustumSource = vtkSmartPointer::New(); frustumSource->SetPlanes(planes); frustumSource->Update(); // Extract the edges vtkSmartPointer filter = vtkSmartPointer::New(); filter->SetInput(frustumSource->GetOutput()); filter->Update(); vtkSmartPointer appendFilter = vtkSmartPointer::New(); ApplyPath::applyPath(filter->GetOutput(), appendFilter, path); vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetInput(appendFilter->GetOutput()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); setColor(color); } template<> cv::viz::TrajectoryWidget cv::viz::Widget::cast() { Widget3D widget = this->cast(); return static_cast(widget); } /////////////////////////////////////////////////////////////////////////////////////////////// /// spheres trajectory widget implementation cv::viz::SpheresTrajectoryWidget::SpheresTrajectoryWidget(const std::vector &path, float line_length, double init_sphere_radius, double sphere_radius, const Color &line_color, const Color &sphere_color) { vtkSmartPointer appendFilter = vtkSmartPointer::New(); vtkIdType nr_poses = path.size(); // Create color arrays vtkSmartPointer line_scalars = vtkSmartPointer::New(); line_scalars->SetNumberOfComponents(3); line_scalars->InsertNextTuple3(line_color[2], line_color[1], line_color[0]); // Create color array for sphere vtkSphereSource * dummy_sphere = vtkSphereSource::New(); // Create the array for big sphere dummy_sphere->SetRadius(init_sphere_radius); dummy_sphere->Update(); vtkIdType nr_points = dummy_sphere->GetOutput()->GetNumberOfCells(); vtkSmartPointer sphere_scalars_init = vtkSmartPointer::New(); sphere_scalars_init->SetNumberOfComponents(3); sphere_scalars_init->SetNumberOfTuples(nr_points); sphere_scalars_init->FillComponent(0, sphere_color[2]); sphere_scalars_init->FillComponent(1, sphere_color[1]); sphere_scalars_init->FillComponent(2, sphere_color[0]); // Create the array for small sphere dummy_sphere->SetRadius(sphere_radius); dummy_sphere->Update(); nr_points = dummy_sphere->GetOutput()->GetNumberOfCells(); vtkSmartPointer sphere_scalars = vtkSmartPointer::New(); sphere_scalars->SetNumberOfComponents(3); sphere_scalars->SetNumberOfTuples(nr_points); sphere_scalars->FillComponent(0, sphere_color[2]); sphere_scalars->FillComponent(1, sphere_color[1]); sphere_scalars->FillComponent(2, sphere_color[0]); dummy_sphere->Delete(); for (vtkIdType i = 0; i < nr_poses; ++i) { Point3f new_pos = path[i].translation(); vtkSmartPointer sphere_source = vtkSmartPointer::New(); sphere_source->SetCenter(new_pos.x, new_pos.y, new_pos.z); if (i == 0) { sphere_source->SetRadius(init_sphere_radius); sphere_source->Update(); sphere_source->GetOutput()->GetCellData()->SetScalars(sphere_scalars_init); appendFilter->AddInputConnection(sphere_source->GetOutputPort()); continue; } else { sphere_source->SetRadius(sphere_radius); sphere_source->Update(); sphere_source->GetOutput()->GetCellData()->SetScalars(sphere_scalars); appendFilter->AddInputConnection(sphere_source->GetOutputPort()); } Affine3f relativeAffine = path[i].inv() * path[i-1]; Vec3f v = path[i].rotation() * relativeAffine.translation(); v = normalize(v) * line_length; vtkSmartPointer line_source = vtkSmartPointer::New(); line_source->SetPoint1(new_pos.x + v[0], new_pos.y + v[1], new_pos.z + v[2]); line_source->SetPoint2(new_pos.x, new_pos.y, new_pos.z); line_source->Update(); line_source->GetOutput()->GetCellData()->SetScalars(line_scalars); appendFilter->AddInputConnection(line_source->GetOutputPort()); } vtkSmartPointer mapper = vtkSmartPointer::New(); mapper->SetScalarModeToUseCellData(); mapper->SetInput(appendFilter->GetOutput()); vtkSmartPointer actor = vtkSmartPointer::New(); actor->SetMapper(mapper); WidgetAccessor::setProp(*this, actor); } template<> cv::viz::SpheresTrajectoryWidget cv::viz::Widget::cast() { Widget3D widget = this->cast(); return static_cast(widget); }