Skip to main content

VTK Local Rendering using WASM

Project description

Local Rendering using VTK.wasm to match server side rendering pipeline on the client side. The current code base is still at its infancy but we aim to make it the default implementation for local rendering using VTK/ParaView with trame. This WASM capability is starting to be available with VTK 9.4 but major improvement are happening in VTK 9.6.

Additional documentation can be found on vtk-wasm documentation.

VTK 9.4, 9.5 and 9.6 are compatible with trame-vtklocal>=0.16,<1 while trame-vtklocal>=1 will only be compatible with VTK 10. What we envision with VTK 10 is the completion of the main work with WASM and WebGPU. We will take that opportunity to cleanup the code in trame-vtklocal by removing legacy setup that were needed for VTK 9.4 and 9.5.

A simple demo can be executed like so

# Using the local repository file
uv run ./examples/demo/widget.py

# Or from the url
uv run https://raw.githubusercontent.com/Kitware/trame-vtklocal/refs/heads/master/examples/demo/widget.py

To get the following

Usage example of trame-vtklocal

License

This library is OpenSource and follow the Apache Software License

Installation

# to install VTK yourself
pip install trame-vtklocal

# for the latest VTK capabilities
pip install "vtk>=9.6" --pre --index-url https://wheels.vtk.org

Development

Build and install the Vue components

cd vue-components
npm i
npm run build
cd -

Install the library

# Create venv and install all dependencies
uv sync --all-extras --dev

# Activate environment
source .venv/bin/activate

# Install commit analysis
pre-commit install
pre-commit install --hook-type commit-msg

# Allow live code edit
uv pip install -e .

Optionally, you can develop with bleeding edge VTK by following these steps. Make sure you’ve these tools

  1. git

  2. CMake

  3. Ninja

  4. Python

  5. NodeJS >= 24.0.1: https://nodejs.org/en/download/package-manager

  6. Emscripten SDK version 4.0.20: See https://emscripten.org/docs/getting_started/downloads.html#download-and-install

# Compile VTK for wasm32 architecture using emscripten. Build artifacts can be found in dev/vtk/build/wasm
python ./utils/build_vtk.py -u https://gitlab.kitware.com/vtk/vtk.git -b master -t wasm32 -c RelWithDebInfo

# Compile VTK with python wrappings using system C++ compiler. Build artifacts can be found in dev/vtk/build/py
python ./utils/build_vtk.py -u https://gitlab.kitware.com/vtk/vtk.git -b master -t py -c RelWithDebInfo

# Windows: Set environment variables
./utils/dev_environment.ps1 -b master -c RelWithDebInfo

# Unix: Set environment variables
source ./utils/dev_environment.sh -b master -c RelWithDebInfo

Running examples

pip install trame "trame-vtklocal[vtk]" trame-vuetify trame-vtk

# regular trame app
python ./examples/vtk/cone.py

Some example are meant to test and validate WASM rendering. Some will default for remote rendering but if you want to force them to use WASM just run export USE_WASM=1 before executing them.

Progress events

The client-side VtkLocal component emits a progress event while wasm sync is happening. This can be used to keep a global loader visible until the first sync completes.

from trame.widgets import vtklocal, vuetify

state.app_loading = True
state._vtklocal_seen_active = False

def on_vtklocal_progress(event):
    if event.get("active"):
        state._vtklocal_seen_active = True
        state.app_loading = True
    elif state._vtklocal_seen_active:
        state.app_loading = False

with vuetify.VOverlay(v_model=("app_loading",), absolute=True):
    vuetify.VProgressCircular(indeterminate=True, size=64)

view = vtklocal.LocalView(
    render_window,
    progress=(on_vtklocal_progress, "[$event]"),
)

If you are using the Vue component directly, you can override the built-in loader with the loader slot.

<vtk-local>
  <template #loader="{ progress, wasmLoading, statePercent, hashPercent }">
    <div v-if="wasmLoading">Loading wasm...</div>
    <div v-else>
      States: {{ progress.state.current }}/{{ progress.state.total }}
      Blobs: {{ progress.hash.current }}/{{ progress.hash.total }}
    </div>
  </template>
</vtk-local>

SharedArrayBuffer

To enable SharedArrayBuffer within trame you can just set the following on the server. This option is not required anymore but still available if needed.

server.http_headers.shared_array_buffer = True

This will download the threaded WASM version. Otherwise, the non-threaded version will be used as it does not require SharedArrayBuffer.

VTK.wasm vs trame-vtklocal

This repository trame-vtklocal focus on providing a web component that is capable of mirroring a vtkRenderWindow defined on the server side. This include a JavaScript section for the browser and a Python section for the server.

The server include a definition of a custom network protocol over our WebSocket (wslink/trame) and some helper class to ease the vtkRenderWindow binding with a web component in the browser. While the Python package include a Vue.js component for a seamless integration with trame, we also publish a npm package. That pure JavaScript library let you still use the trame infrastructure on the server side but with your own stack on the client side. A usage example of that pure JavaScript option is covered in that directory.

For the pure Python trame usage, you can find the documented API.

By design there is a nice separation between VTK.wasm and trame-vtklocal which should make trame-vtklocal fairly independent of VTK.wasm version. But since we are still building capabilities, when the C++ API expend, we will also expand the Python/JavaScript component properties/methods. Hopefully we should be able to evolve trame-vtklocal with some reasonable fallback when the version of VTK is not in par with what is exposed in trame-vtklocal.

Also most the testing of VTK.wasm is in VTK repository as many validation can be done in pure C++ or Python. Then we have the WASM module API with its node/chrome testing.

The documented API of vtkWasmSceneManager and vtkObjectManager parent of vtkWasmSceneManager

For the moment we rely on manual testing for when we change the network and/or API at the trame-vtklocal by going over a specific set of examples.

Currently the WASM implementation is used in the following set of projects:

  • Pan3D: Pan3D aims to be an utility package for viewing and processing a wide variety of multidimensional datasets. Any dataset that can be interpreted with xarray can be explored and rendered with Pan3D.

Professional Support

  • Training: Learn how to confidently use trame from the expert developers at Kitware.

  • Support: Our experts can assist your team as you build your web application and establish in-house expertise.

  • Custom Development: Leverage Kitware’s 25+ years of experience to quickly build your web application.

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

trame_vtklocal-1.0.0.tar.gz (24.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

trame_vtklocal-1.0.0-py3-none-any.whl (28.0 kB view details)

Uploaded Python 3

File details

Details for the file trame_vtklocal-1.0.0.tar.gz.

File metadata

  • Download URL: trame_vtklocal-1.0.0.tar.gz
  • Upload date:
  • Size: 24.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for trame_vtklocal-1.0.0.tar.gz
Algorithm Hash digest
SHA256 79e7b923f9f9daa89bf7f301ef91c4d3f82535039c83f5bc2dda0bdac26279bb
MD5 b0d990be5fafcf66a2fe2630cee15fc9
BLAKE2b-256 6ccd20ad237664b365d239a231460bcc81ab46c1f8d10ae0617d23bd1a9a671c

See more details on using hashes here.

Provenance

The following attestation bundles were made for trame_vtklocal-1.0.0.tar.gz:

Publisher: test_and_release.yml on Kitware/trame-vtklocal

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trame_vtklocal-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: trame_vtklocal-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 28.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for trame_vtklocal-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 53607bb5716e8facafe6f374343aefb835a711817f1b8770aa4d80d0520d73a9
MD5 cf2a7538a11518103b9ce57016aed7c6
BLAKE2b-256 3ff93d289354ea824e85f76f97da94ef11a631054536795ffbf7dcbc96026922

See more details on using hashes here.

Provenance

The following attestation bundles were made for trame_vtklocal-1.0.0-py3-none-any.whl:

Publisher: test_and_release.yml on Kitware/trame-vtklocal

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page