VTK/Examples/Cxx/ImageData/IterateImageData: Revision history

From KitwarePublic
Jump to navigationJump to search

There is no edit history for this page.

This page does not exist. The deletion, protection, and move log for the page are provided below for reference.

  • 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/ImageData/IterateImageData (content was: "This example demonstrates how to set and access locations in a 3D image. ==IterateImageData.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkImageData.h> int main(int, char *[]) { // Create an image data vtkSmartPointer<vtkImageData> imageData = vtkSmartPointer<vtkImageData>::New(); // Specify the size of the image data imageData->SetDimensions(2,3,1); #if VTK_MAJOR_VERSION <= 5 imageData->SetNumberOfScalarComponent...")