Friday, April 13, 2007

Download VTK data

Besides download VTK source code from the VTK homepage, we can also download the VTK dataset to help us learning VTK.

http://public.kitware.com/VTK/get-software.php#latest

2 comments:

Anonymous said...

My master, please tell my something about the vtk data format...

What is the format of the data in the vtk files...
How does the loop used for writing vtk files look like look like.

I'v got some data writen with a loop like this:

for z i Z{
for y in Y{
for x in X{
print value(x,y,z)
}
print '/n'
}
}
and i'v got no idea how to properly wisualize it

Anonymous said...

Does anyone know? It seems like the simplest request but I'm digging through hundreds of pages and the answer still eludes me.