VTK/Tutorials/External Tutorials: Difference between revisions

From KitwarePublic
< VTK‎ | Tutorials
Jump to navigationJump to search
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 6: Line 6:
#[http://www.rug.nl/cit/hpcv/visualisation/VTK/index.html Visualization examples for the The VISUALIZATION TOOLKIT], used in a VTK workshop given at the University of Groningen (RuG): Worth a look, lot's of examples.
#[http://www.rug.nl/cit/hpcv/visualisation/VTK/index.html Visualization examples for the The VISUALIZATION TOOLKIT], used in a VTK workshop given at the University of Groningen (RuG): Worth a look, lot's of examples.
#[http://www.mcs.anl.gov/~disz/cs-341/colorvis/colorvis.PPT Introduction to Visualization with VTK]:Powerpoint presentation, no code, very nice illustrations (T. L. Disz, Univ. of Chicago)
#[http://www.mcs.anl.gov/~disz/cs-341/colorvis/colorvis.PPT Introduction to Visualization with VTK]:Powerpoint presentation, no code, very nice illustrations (T. L. Disz, Univ. of Chicago)
#[http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.138.514&rep=rep1&type=pdf Visualizing with VTK : A Tutorial]: A tutorial given by the writers of the VTK Book (W. Schroeder, L. Avila, W. Hoffman)
#[http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.138.514&rep=rep1&type=pdf Visualizing with VTK : A Tutorial]: A tutorial given by the writers of the VTK Book (W. Schroeder, L. Avila, W. Hoffman) from October 2000
#[http://www.bu.edu/tech/research/training/tutorials/vtk/ Using VTK to Visualize Scientific Data (online tutorial)]: Nice Introduction with serious examples in Tcl (BU)
#[http://www.bu.edu/tech/research/training/tutorials/vtk/ Using VTK to Visualize Scientific Data (online tutorial)]: Nice Introduction with serious examples in Tcl (BU)
#[http://www.ncsa.illinois.edu/~semeraro/PPT/VTK_TUTORIAL/v3_document.htm VTK Tutorial: How to Create Visualization Applications with VTK]: Explains basic VTK objects, code snippets are present (Dave Semeraro)
#[http://www.ncsa.illinois.edu/~semeraro/PPT/VTK_TUTORIAL/v3_document.htm VTK Tutorial: How to Create Visualization Applications with VTK]: Explains basic VTK objects, code snippets are present (Dave Semeraro)
#[http://www.osc.edu/supercomputing/training/vtk/vtk_0505.pdf Scientific Visualization with VTK,The Visualization Toolkit]: A Hands-on introduction; uses examples that ship with VTK to illustrate VTK concepts(Ohio Supercomputer Center, OSC)
#[http://www.csc.kth.se/utbildning/kth/kurser/DD2257/visual09/VTK-090325-GT.pdf Introduction to VTK]: Nice exposition of basic VTK internals, but very brief (Gustav Taxen)
#[http://www.csc.kth.se/utbildning/kth/kurser/DD2257/visual09/VTK-090325-GT.pdf Introduction to VTK]: Nice exposition of basic VTK internals, but very brief (Gustav Taxen)
#[http://vizisaw.dubmun.com/index.html Vizi-SAW VTK Tutorial]
#[http://vizisaw.dubmun.com/index.html Vizi-SAW VTK Tutorial]
Line 15: Line 14:
== VTK Pipeline ==
== VTK Pipeline ==
#[http://www.ci-ra.org/Documents/Seminaires/05-2009/ParaView.Introduction.pdf ParaView Visualization Course: The VTK Visualization Pipeline and ParaView]: Introduction to ParaView, but includes a nice discussion of VTK pipeline (Jean M. Favre)
#[http://www.ci-ra.org/Documents/Seminaires/05-2009/ParaView.Introduction.pdf ParaView Visualization Course: The VTK Visualization Pipeline and ParaView]: Introduction to ParaView, but includes a nice discussion of VTK pipeline (Jean M. Favre)
#[http://www.cmake.org/cgi-bin/viewcvs.cgi/*checkout*/Utilities/Upgrading/TheNewVTKPipeline.pdf?revision=1.5 Upgrading to and Understanding the new VTK Pipeline]: Explains the concepts of vtkInformation etc.
#[http://www.vtk.org/Wiki/images/8/80/Pipeline.pdf Proposal for the New VTK Pipeline]: This new pipeline is currently in use; the document from 2003 uses the term 'vtkProcessor'; just replace this by 'vtkAlgorithm' throughout
#[http://www.vtk.org/Wiki/images/8/80/Pipeline.pdf Proposal for the New VTK Pipeline]: This new pipeline is currently in use; the document uses the term 'vtkProcessor'; just replace this by 'vtkAlgorithm' throughout
#[http://www.vtk.org/Wiki/VTK/Tutorials/New_Pipeline New VTK Pipeline Tutorial]: A more in-depth discussion of the new pipeline.
 
== Computer Graphics Courses that teach VTK ==
# [http://web.cs.wpi.edu/~matt/courses/cs563 CS563:Advanced Topics in Computer Graphics Home Page]
# [http://www.cs.rpi.edu/~cutler/classes/visualization/F10/ RPI CSCI-4972 Introduction to Visualization Fall 2010] - slides available [https://docs.google.com/leaf?id=0B8yIfGqnlfSoYmMzNGNmMjQtZWUzYS00MGIwLWI2ODItMzBiNzkwNTY5MTY1&hl=en_US here]
# [http://www.inf.ed.ac.uk/teaching/courses/vis/ Visualization Module Home Page]
 
== Books ==
Apart from the [http://www.vtk.org/VTK/help/book.html VTK Book] and the [http://www.vtk.org/VTK/help/book.html User's Guide], the following books may be of interest for VTK users/developers:
#[http://www.bioimagesuite.org/vtkbook/index.html Introduction to Programming for Image Analysis with VTK]: A book on image analysis using VTK, free PDF available at the site. Very nice introduction to VTK, uses Tcl in the beginning but C++ at the end. Includes an example of writing your own VTK filter. Overall, a highly recommended read (Xenophon Papadmetris)


<!--
<!--

Latest revision as of 15:38, 29 April 2014

This page was based on Sebastien Barre's VTK Links: Examples page. However, it is kept more upto date, and new resources will be regularly added. Note that to understand VTK internals, you might still have to buy the VTK User's Guide (although be warned that it does not cover everything). If you find a nice tutorial/webpage that explains VTK, please add it here!

Examples, Presentations, Seminars, Talks, Tutorials

  1. There is a tutorial in the VTK distribution (in /Examples/Tutorial).
  2. Visualization Toolkit Tutorial : A very nice introduction VTK, with code for actual projects included(John Bell).
  3. Visualization examples for the The VISUALIZATION TOOLKIT, used in a VTK workshop given at the University of Groningen (RuG): Worth a look, lot's of examples.
  4. Introduction to Visualization with VTK:Powerpoint presentation, no code, very nice illustrations (T. L. Disz, Univ. of Chicago)
  5. Visualizing with VTK : A Tutorial: A tutorial given by the writers of the VTK Book (W. Schroeder, L. Avila, W. Hoffman) from October 2000
  6. Using VTK to Visualize Scientific Data (online tutorial): Nice Introduction with serious examples in Tcl (BU)
  7. VTK Tutorial: How to Create Visualization Applications with VTK: Explains basic VTK objects, code snippets are present (Dave Semeraro)
  8. Introduction to VTK: Nice exposition of basic VTK internals, but very brief (Gustav Taxen)
  9. Vizi-SAW VTK Tutorial

VTK Pipeline

  1. ParaView Visualization Course: The VTK Visualization Pipeline and ParaView: Introduction to ParaView, but includes a nice discussion of VTK pipeline (Jean M. Favre)
  2. Proposal for the New VTK Pipeline: This new pipeline is currently in use; the document from 2003 uses the term 'vtkProcessor'; just replace this by 'vtkAlgorithm' throughout
  3. New VTK Pipeline Tutorial: A more in-depth discussion of the new pipeline.




VTK: [Welcome | Site Map]