itkwidgets icon indicating copy to clipboard operation
itkwidgets copied to clipboard

An elegant Python interface for visualization on the web platform to interactively generate insights into multidimensional images, point sets, and geometry.

Results 144 itkwidgets issues
Sort by recently updated
recently updated
newest added

Now we support NumPy array -> ImageJ -> NumPy array -> ITK -> View In the future we want to also support: ImageJ -> ITK -> View This can be...

This project is really awesome, thank you so much! I have been working with rendering numpy arrays of cloud fraction data and getting some really cool visualisations very quickly. Given...

Support a `geometry_cmaps` argument to `view` to specify point data or cell data colormaps. @banesullivan

enhancement

I'm trying to make a plotter class based on the `itkwidgets.Viewer` class and I need ways to append datasets and their properties to the scene. ```py import pyvista as pv...

question

Is it possible to render points as spheres? Here's a good example dataset: ```py from pyvista import examples from itkwidgets import view mesh = examples.download_lidar() view(geometries=mesh) ``` if not, this...

enhancement

Could we color a mesh/geometry using a passed RGB(A) array on the point/cell data of the mesh? Example: https://docs.pyvista.org/examples/00-load/read-image.html?highlight=rgb#read-image-files

enhancement
question

Feature request: allow passing custom made Matplotlib colormaps ```py import matplotlib.pyplot as plt cmap = plt.cm.get_cmap("viridis", 5) ``` then pass that colormap to the `Viewer` (the goal isn't necessarily catecorical...

enhancement

To enable raytracing support.

enhancement

Hi, I try to display a vtkRenderingOpenGL2Python.vtkOpenGLActor is this possibel? (Thank you for quickly providing a mayavi example in the past, even though I have now started to use vtk...

So I have a large object - a sphere with a radius 900 and spherical dents on it of radius 0.001. There are two issues for me all related to...