使用Numpy将VTK转换为Matplotlib
我想从一个VTK文件中提取一些数据(比如标量值),并获取它们在网格上的坐标,然后在Matplotlib中处理这些数据。问题是我不知道怎么从VTK文件中抓取点或单元格的数据(比如通过给出标量的名字),并使用vtk_to_numpy把它们加载到一个numpy数组里。
我的代码应该是这样的:
import matplotlib.pyplot as plt
from scipy.interpolate import griddata
import numpy as np
from vtk import *
from vtk.util.numpy_support import vtk_to_numpy
# load input data
reader = vtk.vtkXMLUnstructuredGridReader()
reader.SetFileName("my_input_data.vtk")
reader.Update()
(...missing steps)
# VTK to Numpy
my_numpy_array = vtk_to_numpy(...arguments ?)
#Numpy to Matplotlib (after converting my_numpy_array to x,y and z)
CS = plt.contour(x,y,z,NbLevels)
...
顺便说一下,我知道Paraview可以完成这个任务,但我想在不打开Paraview的情况下处理一些数据。任何帮助都非常感谢。
编辑 1
我发现这个pdf教程对学习处理VTK文件的基础知识非常有用。
2 个回答
7
我不知道你的数据集是什么样子的,所以这里提供一些方法,帮助你获取点的位置和标量值:
from vtk import *
from vtk.util.numpy_support import vtk_to_numpy
# load input data
reader = vtk.vtkGenericDataObjectReader()
reader.SetFileName(r"C:\Python27\VTKData\Data\uGridEx.vtk")
reader.Update()
ug = reader.GetOutput()
points = ug.GetPoints()
print vtk_to_numpy(points.GetData())
print vtk_to_numpy(ug.GetPointData().GetScalars())
如果你能使用 tvtk
,那会简单一些:
from tvtk.api import tvtk
reader = tvtk.GenericDataObjectReader()
reader.file_name = r"C:\Python27\VTKData\Data\uGridEx.vtk"
reader.update()
ug = reader.output
print ug.points.data.to_array()
print ug.point_data.scalars.to_array()
如果你想在matplotlib中做 contour
图,我觉得你需要一个网格。你可能需要使用一些VTK类来把数据集转换成网格,比如 vtkProbeFilter
。
11
我终于找到了一种方法(可能不是最优的)来完成这个任务。这里的例子是从一个vtk文件中提取的温度场的轮廓图绘制:
import matplotlib.pyplot as plt
import matplotlib.cm as cm
from scipy.interpolate import griddata
import numpy as np
import vtk
from vtk.util.numpy_support import vtk_to_numpy
# load a vtk file as input
reader = vtk.vtkXMLUnstructuredGridReader()
reader.SetFileName("my_input_data.vtk")
reader.Update()
# Get the coordinates of nodes in the mesh
nodes_vtk_array= reader.GetOutput().GetPoints().GetData()
#The "Temperature" field is the third scalar in my vtk file
temperature_vtk_array = reader.GetOutput().GetPointData().GetArray(3)
#Get the coordinates of the nodes and their temperatures
nodes_nummpy_array = vtk_to_numpy(nodes_vtk_array)
x,y,z= nodes_nummpy_array[:,0] , nodes_nummpy_array[:,1] , nodes_nummpy_array[:,2]
temperature_numpy_array = vtk_to_numpy(temperature_vtk_array)
T = temperature_numpy_array
#Draw contours
npts = 100
xmin, xmax = min(x), max(x)
ymin, ymax = min(y), max(y)
# define grid
xi = np.linspace(xmin, xmax, npts)
yi = np.linspace(ymin, ymax, npts)
# grid the data
Ti = griddata((x, y), T, (xi[None,:], yi[:,None]), method='cubic')
## CONTOUR: draws the boundaries of the isosurfaces
CS = plt.contour(xi,yi,Ti,10,linewidths=3,cmap=cm.jet)
## CONTOUR ANNOTATION: puts a value label
plt.clabel(CS, inline=1,inline_spacing= 3, fontsize=12, colors='k', use_clabeltext=1)
plt.colorbar()
plt.show()