[Paraview] how to access output of the Integrate Variables filter in Python?

2012-12-17 Thread Celia Bremer
Hello, I want to calculate the volume of an object and then do some calculations in Python based on the result. The GUI has the output of Integrate Variables as a table, and volume is one of the table cells. How do I access the value of that table cell through Python? Thank you! Celia

Re: [Paraview] how to access output of the Integrate Variables filter in Python?

2012-12-17 Thread David E DeMarle
Try servermanager.Fetch() That will return the result of the filter to you as a vtk object on the client (so you are using a cluster to access big data, don't do this). From there you can query it directly. If you are on a cluster and working with big data, use the python programmable filter to q