Difference between revisions of "Documentation/Labs/VTK6"
From Slicer Wiki
Line 18: | Line 18: | ||
* See [http://www.vtk.org/Wiki/VTK/VTK_6_Migration_Guide VTK_6 Migration Guide] | * See [http://www.vtk.org/Wiki/VTK/VTK_6_Migration_Guide VTK_6 Migration Guide] | ||
+ | |||
+ | |||
+ | ===Use SetInputPolyDataConnection and GetPolyDataConnection=== | ||
+ | |||
+ | Start with Slicer [http://viewvc.slicer.org/viewvc.cgi/Slicer4?view=revision&revision=24801 r24801], support for VTK5 API was removed and VTK6 API should be used. | ||
+ | |||
+ | <b>Error message similar to:</b> | ||
+ | |||
+ | error: ‘class vtkMRMLModelDisplayNode’ has no member named ‘SetInputPolyData’ | ||
+ | resultDisplay->SetInputPolyData(resultModel->GetPolyData()); | ||
+ | ^ | ||
+ | |||
+ | <b>Solution:</b> | ||
+ | |||
+ | Replace occurrences of <tt>SetInputPolyData/GetPolyData</tt> with <tt>SetInputPolyDataConnection/GetPolyDataConnection</tt>. | ||
== Progress == | == Progress == |
Revision as of 05:57, 26 August 2017
Home < Documentation < Labs < VTK6This page will document experiments related to the upgrade of Slicer base to VTK6.
Contents
References
- http://www.kitware.com/source/home/post/116
- http://www.kitware.com/blog/home/post/509
- http://www.kitware.com/blog/home/post/508
Experiments
Build System
Migration Guide
This section documents required change to make Slicer code work with VTK6.
Use SetInputPolyDataConnection and GetPolyDataConnection
Start with Slicer r24801, support for VTK5 API was removed and VTK6 API should be used.
Error message similar to:
error: ‘class vtkMRMLModelDisplayNode’ has no member named ‘SetInputPolyData’ resultDisplay->SetInputPolyData(resultModel->GetPolyData()); ^
Solution:
Replace occurrences of SetInputPolyData/GetPolyData with SetInputPolyDataConnection/GetPolyDataConnection.
Progress
- VTK6 has been integrated into Slicer trunk. It is disabled by default. To enable it, pass the option
-DVTK_VERSION_MAJOR:STRING=6
- Using ccmake and setting the VTK_VERSION_MAJOR variable does not seem to work. The first "generation" in ccmake, causes a VTKv5 structure to be created which is not overwritten by subsequent runs with VTK_VERSION_MAJOR changed. I had to remove the VTKv5 directories from the build and run cmake as described above with -DVTK_VERSION_MAJOR:STRING=6. - Jim