我怎样才能使所附的
vtk
替换代码0]。
python
?理想情况下,我想定义区域
(xmin=-9, xmax=9)
和
(ymin=-9, ymax=9)
以及像素的数量(例如每个方向的
(256,256)
),并将该区域提取到像素网格上并存储在文件中(填充空洞区域)。
以下是我将文件读入polyData的方法
import vtk
# Read the source file.
reader = vtk.vtkXMLUnstructuredGridReader()
reader.SetFileName("internal.vtu")
reader.Update()
polydata = reader.GetOutput()
我怎样才能将polydata
转换成具有上述细节的文件?