使用 x,y,z 坐标创建 VTKpolydata
我是VTK的初学者。我有一个包含 x、y、z 点和每个点的值的数据集。我想使用这些点创建一个 vtkpolydata 集,并使用每个点的值创建一个轮廓。 请告诉我如何使用 c++ 中给定的点集创建 vtkPolyData 集。
谢谢。
I am beginner in VTK. I have a dataset as x,y,z points and the value of each point. I want to create a vtkpolydata set using the points and create a contour using values of each point.
Please tell me how to create a vtkPolyData set using a given set of points in c++.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此示例展示了如何完成问题的两个部分:
http://www.vtk.org/Wiki/VTK/Examples/Cxx /GeometricObjects/PolyLine
This example shows how to do both parts of your question:
http://www.vtk.org/Wiki/VTK/Examples/Cxx/GeometricObjects/PolyLine
这是改编自 此博客 绘制 3D xyz 数据:
您可以按如下方式运行它:
filename
是包含 xyz 数据的文件。Here is a script adapted from this blog to plot 3D xyz data:
You could run it as follows:
filename
is the file that contains the xyz data.