ipywidget for vtkRenderWindow
Project description
ipyvtk_simple
An ipywidget for vtkRenderWindow
This is an early prototype of creating a Jupyter interface to VTK. This toolkit
is a proof of concept and a more polished tool will be available as
ipyvtk
in the future.
The code here was implemented from the work done by Andras Lasso under an MIT License (see the source).
The goal is to enable this widget to work with any server side
vtkRenderWindow
This render window could be from VTK Python,
ParaView, or PyVista.
Please note that vtk
is not listed as a requirement for this package to
simplify its installation in virtual environments where VTK may be built from
source or bundled with ParaView and we do not want to install the wheels from
PyPI.
Run in Docker
To build and run in Docker:
docker build -t ipyvtk_simple .
docker run -p 8878:8878 ipyvtk_simple jupyter notebook --port=8878 --no-browser --ip=0.0.0.0 --allow-root
and open the pyvista.ipynb
notebook.
Additionally, this can be used with ParaView. An example is given in
paraview.ipynb
which can be run via:
docker build -t ipyvtk_pv -f paraview.dockerfile .
docker run -p 8877:8877 ipyvtk_pv jupyter notebook --port=8877 --no-browser --ip=0.0.0.0 --allow-root
and open the paraview.ipynb
notebook.
Examples
You may have to build jupyter lab extensions for this to work in Lab. This is known to work well in Notebook.
PyVista
PyVista is working to implement this in a pull request.
See the pyvista.ipynb
for a proof of concept.
Python VTK
The widget here can be used with VTK. Here is a minimal example showing how
to pass any vtkRenderWindow
to the ViewInteractiveWidget
:
import vtk
from ipyvtk_simple.viewer import ViewInteractiveWidget
# Create some data
cylinder = vtk.vtkCylinderSource()
cylinder.SetResolution(8)
mapper = vtk.vtkPolyDataMapper()
mapper.SetInputConnection(cylinder.GetOutputPort())
actor = vtk.vtkActor()
actor.SetMapper(mapper)
# Set up render window
ren = vtk.vtkRenderer()
ren_win = vtk.vtkRenderWindow()
ren_win.SetOffScreenRendering(1)
ren_win.SetSize(600, 600)
ren_win.AddRenderer(ren)
iren = vtk.vtkRenderWindowInteractor()
iren.SetRenderWindow(ren_win)
style = vtk.vtkInteractorStyleTrackballCamera()
iren.SetInteractorStyle(style)
# Add actor to scene
ren.AddActor(actor)
ren.ResetCamera()
# Display
ViewInteractiveWidget(ren_win)
ParaView Python
See instructions above for running ParaView in a Docker container.
import paraview.simple as pvs
from ipyvtk_simple.viewer import ViewInteractiveWidget
# Create data on the pipeline
wavelet = pvs.Wavelet()
contour = pvs.Contour(Input=wavelet)
contour.ContourBy = ['POINTS', 'RTData']
contour.Isosurfaces = [63, 143, 170, 197, 276]
# Set the data as visible
pvs.Show(contour)
# Fetch the view and render the scene
view = pvs.GetActiveView()
pvs.Render(view)
# Fetch the RenderWindow
ren_win = view.GetClientSideObject().GetRenderWindow()
# Display the RenderWindow with the widget
ViewInteractiveWidget(ren_win)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for ipyvtk_simple-0.1.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51241329d1a7eefecbe7a483cfbcd17b680781eb1a5a070104f3382e3b51ae30 |
|
MD5 | 5a4df0c665bf034f2c5d020f9a6a29a9 |
|
BLAKE2b-256 | 0bc893ec082575501e3b4e73e3053aa9076c11bc8ab35c09b35f10c8e7eb3c22 |