PolygonalSurfaceContourLineInterpolator 多边形交互器

1. 效果:

2.简介:

可以实现在多边形上进行交互,选择;在多边形曲面上实现轮廓点的交互绘制。

该类的使用需要结合 vtkPolygonalSurfacePointPlacer 类,定位点的功能也就是拾取器。

前提:输入的多边形曲面需要计算法向量。

3.源码:

复制代码
#include <vtkActor.h>
#include <vtkCamera.h>
#include <vtkContourWidget.h>
#include <vtkNamedColors.h>
#include <vtkNew.h>
#include <vtkOrientedGlyphContourRepresentation.h>
#include <vtkPolyData.h>
#include <vtkPolyDataCollection.h>
#include <vtkPolyDataMapper.h>
#include <vtkPolygonalSurfaceContourLineInterpolator.h>
#include <vtkPolygonalSurfacePointPlacer.h>
#include <vtkProperty.h>
#include <vtkRenderWindow.h>
#include <vtkRenderWindowInteractor.h>
#include <vtkRenderer.h>
#include <vtkSmartPointer.h>
#include <vtkSphereSource.h>
#include <vtkTriangleFilter.h>
#include <vtkXMLPolyDataReader.h>

int main(int argc, char* argv[])
{
  vtkNew<vtkNamedColors> colors;

  vtkSmartPointer<vtkPolyData> polyData;
  if (argc < 2)
  {
    vtkNew<vtkSphereSource> sphereSource;
    sphereSource->SetThetaResolution(40);
    sphereSource->SetPhiResolution(20);
    sphereSource->Update();

    polyData = sphereSource->GetOutput();
  }
  else
  {
    vtkNew<vtkXMLPolyDataReader> reader;
    reader->SetFileName(argv[1]);
    reader->Update();
    polyData = reader->GetOutput();
  }

  // The Dijkistra interpolator will not accept cells that aren't triangles.
  vtkNew<vtkTriangleFilter> triangleFilter;
  triangleFilter->SetInputData(polyData);
  triangleFilter->Update();

  auto pd = triangleFilter->GetOutput();

  // Create a mapper and actor.
  vtkNew<vtkPolyDataMapper> mapper;
  mapper->SetInputConnection(triangleFilter->GetOutputPort());

  vtkNew<vtkActor> actor;
  actor->SetMapper(mapper);
  actor->GetProperty()->SetInterpolationToFlat();
  actor->GetProperty()->SetColor(colors->GetColor3d("MistyRose").GetData());

  // Create the render window, renderer and interactor.

  vtkNew<vtkRenderer> renderer;
  vtkNew<vtkRenderWindow> renderWindow;
  renderWindow->AddRenderer(renderer);
  renderWindow->SetWindowName("PolygonalSurfaceContourLineInterpolator");

  vtkNew<vtkRenderWindowInteractor> interactor;
  interactor->SetRenderWindow(renderWindow);

  // Add the actors to the renderer, set the background and size.

  renderer->AddActor(actor);
  renderer->SetBackground(colors->GetColor3d("CadetBlue").GetData());

  // Here comes the contour widget stuff...

  vtkNew<vtkContourWidget> contourWidget;
  contourWidget->SetInteractor(interactor);
  vtkSmartPointer<vtkOrientedGlyphContourRepresentation> rep =
      dynamic_cast<vtkOrientedGlyphContourRepresentation*>(
          contourWidget->GetRepresentation());
  rep->GetLinesProperty()->SetColor(colors->GetColor3d("Crimson").GetData());
  rep->GetLinesProperty()->SetLineWidth(3.0);

  vtkNew<vtkPolygonalSurfacePointPlacer> pointPlacer;
  pointPlacer->AddProp(actor);
  pointPlacer->GetPolys()->AddItem(pd);
  rep->SetPointPlacer(pointPlacer);

  vtkNew<vtkPolygonalSurfaceContourLineInterpolator> interpolator;
  interpolator->GetPolys()->AddItem(pd);
  rep->SetLineInterpolator(interpolator);

  renderWindow->Render();
  interactor->Initialize();

  contourWidget->EnabledOn();

  interactor->Start();

  return EXIT_SUCCESS;
}

4.使用场景

可以用来做任意曲面切割:

曲面拟合主要用的贝塞尔曲面,交互部分用

vtkPolygonalSurfacePointPlacer,

vtkPolygonalSurfaceContourLineInterpolator

也可使用

vtkOrientedGlyphContourRepresentation

以及自定义的vtk3DWidget子类

相关推荐
任小七14 天前
VTK-8.2.0源码编译和初步使用(Cmake+VS2015+Qt5.14.2)
qt·vtk·vs
川谷_17 天前
二、vtkCommand的使用
vtk
磊磊cpp1 个月前
【VTK】三种面切片数据 加载模型 scalars设置颜色透明度 加载raw 医学数据
qt·vtk
恋恋西风1 个月前
vtk 3D坐标标尺应用 3D 刻度尺
python·3d·vtk·pyqt
恋恋西风1 个月前
CT dicom 去除床板 去除床位,检查床去除
python·vtk·dicom·去床板
omage1 个月前
cornerstone3D学习笔记-MPR
笔记·学习·vtk·dicom·mpr
捕鲸叉2 个月前
第05章 17 Contour 过滤器介绍与例子
信息可视化·vtk
捕鲸叉2 个月前
第05章 08 绘制脑部体绘制图的阈值等值面
算法·信息可视化·vtk
捕鲸叉2 个月前
第05章 11 动量剖面可视化代码一则
开发语言·c++·算法·信息可视化·vtk
捕鲸叉2 个月前
第05章 09 使用Lookup绘制地形数据高程着色图
算法·信息可视化·vtk