All Questions
7 questions
1
vote
0
answers
142
views
Pyvista Challenges, Not Showing Continuous Scale And Rendering is Obfuscated
Newcomer to Pyvista and stackoverflow.
I'm running into issues with the color scale and rendering using Pyvista.
Here's the code, mostly boilerplate from the Pyvista documentation:
import numpy as np
...
0
votes
0
answers
137
views
How can i render microscope image using VTK library in python?
I have a couple of microscope image in a DICOM file and I want to render them using VTK. I was able to render CT DICOM images but I wasn't able to visualize microscopy one. The visualization box is ...
0
votes
1
answer
152
views
How to render 2 .vtp slices in the same render Window
I have to some slices in .vtp format (also in vtm) that i want to visualize together to work on them afterward.
I already set readers, mappers, actors, render window and camera coordinates, but when ...
1
vote
2
answers
3k
views
How to export a 3D vtk rendered scene to paraview using python?
I've wrote a code to produce cylinder objects using vtk in python. This code works fine where it produces a 3D scene where i can zoom or turn around the cylinders which i have been made. The problem ...
0
votes
1
answer
2k
views
VTK do not show output, rendering
I wrote this code, but in output, it shows just black screen. Something is missing or I made a mistake somewhere? I use reader, mapper, actor, render and mathemetics.
Changed code with hints from @...
1
vote
0
answers
106
views
How to use vtkPNGWriter with interactor?
I am new to VTK and using python bindings. I am trying to render some objects as images. I am using vtkPNGWriter to save the rendered image. I want to attach the vtkPNGWriter to the interactor so that ...
1
vote
1
answer
776
views
Display several vtk render windows at the same time
I am working with vtk for python. I am displaying some vtk meshes using this code:
def DisplayVTKMesh(mesh):
mapper = vtk.vtkPolyDataMapper()
mapper.SetInputData(mesh)
actor = vtk....