You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FTK provides ParaView plugins to allow users track critical points (maxima, minima, and saddles) in scalar field data. In order to build the plugins, we recommend to build and use
73
+
FTK provides ParaView plugins to allow users track critical points (maxima, minima, and saddles) in scalar field data. In order to build the plugins, one needs to build ParaView from source, for example:
74
+
75
+
```bash
76
+
$ tar zxf ParaView-v5.8.0.tar.gz
77
+
$ cd ParaView-v5.8.0
78
+
$ mkdir build &&cd build
79
+
$ cmake .. # You may need to specify paths to Qt and other dependencies needed by ParaView
80
+
$ make
81
+
```
82
+
83
+
Assuming `$YOUR_ParaView_Build` is the above build directory, one can further build ParaView plugins as follows
If built successfully, you will see the plugins binary as `lib/paraview-5.8/plugins/FTK/FTK.so`. Open the "Plugin Manager" in ParaView, and load this binary with "Load New..." button, and then select and load FTK in the list. To check if ParaView plugins are correctly built by reproducing the results in the above figure, use "Sources-->FTK-->SpiralWoven2DSource", "Filters-->FTK-->CriticalPointTracker2D",followed by the "Tube" filter in ParaView.
92
+
If built successfully, you will see the plugins binary as `lib/paraview-5.8/plugins/FTK/FTK.so`. Open the "Plugin Manager" in ParaView GUI, and load this binary with "Load New..." button, and then select and load FTK in the list. To check if ParaView plugins are correctly built by reproducing the results in the above figure, use "Sources-->FTK-->SpiralWoven2DSource", "Filters-->FTK-->CriticalPointTracker2D",followed by the "Tube" filter in ParaView.
If you downloaded a release from tarball archives on GitHub, be sure to manually download `pybind11` to the designated directory before building.
93
103
94
-
You may build PyFTK with `setuptools` or CMake. Notice that CMake is required to build PyFTK. Advanced build options is currently not possible to configure with `setuptools`.
104
+
You may build PyFTK with `setuptools` or CMake. Notice that CMake is required to build PyFTK. We do not recommend to use Python 2. Advanced build options is currently not possible to configure with `setuptools`.
0 commit comments