can Slicer render something similar to the attached image (rendered w/ ParaView)? If so, what are the steps? I’ve found the “Data” panel which sort of show the contents of the data, but where do I go to render glyphs associated with vertices?
You can display colored polydata using models module. If your polydata has only points then you need to write a few lines of Python code to run the input through a VTK glyph filter.
We typically render biological cells as spheres in our open source PhysiCell software. And we’re beginning a new project which will require visualizing/analyzing/interacting with tissue maps (images). So I was exploring Slicer, to see if it meets some of our needs.
I’d like to learn more about the Python option for rendering spheres. I see Slicer provides a built-in Python (2.7.x) interpreter and that I can import vtk there.
Later, I may want to install additional 3rd party Python libs, e.g., scipy, if that’s possible.
Later, I may want to install additional 3rd party Python libs, e.g., scipy, if that’s possible.
For now, you need to launch Python scripts that use scipy in an external process (as it is done in SlicerRadiomics), but hopefully in a couple of months Slicer will switch to Python3 and then you can use scipy directly in the Slicer process.