VTK

VTK@CBA

This page is intended to serve as a small guide for people at CBA who wants to get started visualizing their data with VTK.

Useful information

VTK Examples

These are just small examples, see VTK.org for many more.

VTK File format

To be able to use VTK to visualize your own data you need to convert it to a VTK data set in some way. One (simple) way to do is to convert your files to the VTK file format. A description is available here: file-formats.pdf. If you want to convert raw image data to the VTK format (structured points), you can use this small C++ program: rawToVTK.cpp. If you use MATLAB you can use the functions readVTK.m and writeVTK.m to both read and write VTK structured points (binary).
In VTK you should use vtkStructuredPointsReader and vtkStructuredPointsWriter.

VTK Seminar slides

The seminar slides from 2004-09-20 is available here:

VTK Links