0
votes
1answer
9 views

How to make vtkImageActor show more than one axis

I am building a orthogonal viewer in vtk. I have the three renderers going, but only one will show the correct image, one other shows a badly mangled image, and the third does not show anything. ...
0
votes
1answer
32 views

Check Position of vtkActor before insert new vtkActor

I'm working with vtk (c #) to develop my dissertation. I am creating a lot of objects (vtkSphereSource) in space randomly. In a certain area can not exist objects. How can I check before including ...
0
votes
1answer
166 views

texture only 1 Side and work with the texture

I create an image from pixel data like this: tkFloatArray vtkArray = new vtkFloatArray(); vtkArray.SetNumberOfComponents(1); vtkArray.SetNumberOfTuples(320 * 240); ...
0
votes
0answers
18 views

Applying vtkWarpLens to Camera vs. Scene Data

Can anyone help me with vtkWarpLens? What I am trying to do is implement a distortion pattern on the camera to modify how the data is seen. Here is the meat of the code (it's in C#, I'm using ...