VTK在Java, Tcl, Python中都有接口,本文介绍VTK在Python中的接口
。
VTK (The Visualization Toolkit ) 是一款用于计算机3D成像、构建模型、图像处理、容积渲染、科学数据可视化
等方面的免费软件系统,支持Linux, Windows, Mac, Web, mobile devices等平台;
一些常见使用场景👇👇
下面简单介绍VTK如何快速上手,
安装
pip install vtk
快速入门VTK
以一个小为例,
- import vtkmodules.vtkInteractionStyle
- import vtkmodules.vtkRenderingOpenGL2
- from vtkmodules.vtkCommonColor import vtkNamedColors
- from vtkmodules.vtkFiltersSources import vtkCylinderSource
- from vtkmodules.vtkRenderingCore import (vtkActor, vtkPolyDataMapper,
- vtkRenderWindow,
- vtkRenderWindowInteractor,
- vtkRenderer)
- # 数据准备
- colors = vtkNamedColors()
- bkg = map(lambda x: x / 255.0, [26, 51, 102, 255])
- colors.SetColor("BkgColor", *bkg)
- cylinder = vtkCylinderSource()
- cylinder.SetResolution(8)
-
- # 映射
- cylinderMapper = vtkPolyDataMapper()
- cylinderMapper.SetInputConnection(cylinder.GetOutputPort())
-
- # 添加绘制对象
- cylinderActor = vtkActor()
-
- #绘制对象添加映射器
- cylinderActor.SetMapper(cylinderMapper)
- cylinderActor.GetProperty().SetColor(colors.GetColor3d("Tomato"))
- cylinderActor.RotateX(30.0)
- cylinderActor.RotateY(-45.0)
-
- # 添加绘制器
- ren = vtkRenderer()
-
- # 添加绘制窗口
- renWin = vtkRenderWindow()
- renWin.AddRenderer(ren)
- iren = vtkRenderWindowInteractor()
- iren.SetRenderWindow(renWin)
-
- # 绘制器添加对象
- ren.AddActor(cylinderActor)
- ren.SetBackground(colors.GetColor3d("BkgColor"))
- renWin.SetSize(300, 300)
- renWin.SetWindowName('CylinderExample')
-
- # 交互器初始化
- iren.Initialize()
- ren.ResetCamera()
- ren.GetActiveCamera().Zoom(1.5)
- renWin.Render()
-
- # 交互器启动
- iren.Start()
进一步学习👇👇
https://kitware.github.io/vtk-examples/site/Python/
-END-
- 往期精彩回顾
-
-
-
-
- 适合初学者入门人工智能的路线及资料下载机器学习及深度学习笔记等资料打印机器学习在线手册深度学习笔记专辑《统计学习方法》的代码复现专辑
- AI基础下载黄海广老师《机器学习课程》视频课黄海广老师《机器学习课程》711页完整版课件
本站qq群554839127,加入微信群请扫码: