| Up | Next |
ParaView is a turnkey application built on top of VTK. It is being developed by Kitware. ParaView was designed to handle large data sets by distributing the data across multiple computers, but can also be used as a stand-alone single-process application.
ParaView's user interface and operations are closely tied to the pipeline model in VTK. Loading data creates a VTK reader object, and processing data (i.e. creating a contour) adds a VTK filter to the pipeline. Creating a single non-branching pipeline using ParaView is trivial. Each new filter adds to the end of the pipeline. ParaView also allows advanced users to construct, navigate and modify complex branching pipelines.
ParaView has the concept of a current data set, which is usually the last data loaded, or the result of the last filtering operation. The current data set is used as the input to any new filter created. The filters listed in the VTK-Filter menu are screened so that only filters that will accept the current data as input are shown. The current data can be changed by using the "Select" menu or by using the navigation window to move through the pipeline.
The navigation feature allows you change parameters of any filter, even if it is in the middle of the pipeline. The whole pipeline automatically updates to reflect changes made to filter parameters.
The VTK User Guide is also available if you would like a deeper understanding of VTK and its pipeline model.
| Up | Next |