The Visualization Toolkit (VTK) is an open-source, freely available software system for 3D computer graphics, image processing and visualization. VTK consists of a C++ class library and several interpreted interface layers including Tcl/Tk, Java, and Python.
0
votes
0answers
5 views
why my VTK object is to big?
I made the following tutorial: http://dev.artenum.com/projects/cassandra/forum/how-to-use-eclipse-and-vtk
this generate the following code:
import java.awt.BorderLayout;
import javax.swing.JFrame;
...
0
votes
0answers
3 views
no interaction of the SliderWidget vtk JPanel Java
I have added a slider Widget to MIPviwer example to chage the opacityLevel,opacityWindow and threshold, it works in a openGLwin32 window but when i convert it to a java frame there are no interaction ...
0
votes
0answers
6 views
VTK: find diameter of bounding sphere of a mesh
I have a mesh model and am displaying it in VTK. I would like to find the diameter or radius of an enclosing sphere that tightly bounds the mesh. This is so that I can place the camera at least this ...
0
votes
0answers
9 views
VTK: display subdivided polygon
I have created an icosahedron and subdivided it, I am not trying to display it but it seems to be displaying it un-subdivided. Here is my code:
vtkSmartPointer<vtkPlatonicSolidSource> ...
0
votes
0answers
9 views
VTK: create Mesh from vertices in
I am new to VTK and have looked at the examples page but could not find one that seems to be what I'm after.
I have some coordinates (the coordinates of an icosahedron's 12 vertices) and I would like ...
0
votes
0answers
22 views
Use filedata instead of file attribute to pass data
I'm trying to render vtk objects which are send from a webserver directly on the client using XTK without storing them to the disk. According to the XTK Documentation I just have to pass the vtk file ...
0
votes
1answer
13 views
create vtkPolyData object from list with tuples in python
I am pretty new to python and I have a list of tuples (with x, y, z-coordinates). I want to create a vtkPolyData-object from these, how do I do?
0
votes
0answers
13 views
Upgrading from VTK 5.8.0 to VTK 6.0.0
I am having trouble upgrading from VTK 5.8.0 to VTk 6.0.0 on my Ubuntu 12.04 machine. I downloaded the tar.gz file from http://www.vtk.org/VTK/resources/software.html#latest and followed the tutorial ...
0
votes
0answers
12 views
add threshold filter to mipviwer vtk java
I would like to add a threshold filter to the example of http://gdcm.sourceforge.net/html/MIPViewer_8java-example.html
I have add this code but that show now thing!!!
vtkMeshQuality qualityFilter = ...
0
votes
0answers
27 views
Trouble trying to output file using vtkOBJWriter
I am trying to use vtkOBJWriter from David Doria to convert a .vtk file to a .obj file. I git cloned from https://github.com/daviddoria/vtkOBJWriter, added a build directory for the CMake and make, ...
0
votes
0answers
20 views
I need to use http://www.vtk.org/ 3D models on my Django application with Mezzanine
I have django 1.5.1 with Mezzanine installed and an app running. I want to create a 3D graph which is interactive on my app, which is basically from VTK software. Is their any options to do that
0
votes
1answer
11 views
using vtkSliderWidget with java in vtk
when i use the vtkSliderWidget class on java i can't extract the value of the slider like that: sliderWidget.GetRepresentation().getvalue() is that wrong and is there any other method to do that, ...
0
votes
1answer
44 views
Compilation error VTK, C++
I am trying to compile to compile the project "volumemorph" given in http://cs.uccs.edu/~gsc/pub/master/kchandra/src/
following the instructions given in ...
0
votes
1answer
20 views
change the vtkCallbackCommand class to java vtk
How can i change the virtual void Execute (vtkObject *caller, unsigned long eid, void *callData) function of the vtkCallbackCommand class (vtk) to java, thanks a lot, AMAL
0
votes
1answer
20 views
Semi-transparent 2d VTK text background
Simple question, but I've tried a few things and nothing seems to work.
I want to overlay some statistics onto a 3d VTK scene, using 2D vtkTextActors. This works fine, but the text is at times ...