/*========================================================================= Program: Visualization Toolkit Module: $RCSfile: vtkSimpleImageFilterExample.cxx,v $ Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ #include "vtkSimpleImageFilterExample.h" #include "vtkImageData.h" #include "vtkObjectFactory.h" vtkCxxRevisionMacro(vtkSimpleImageFilterExample, "$Revision: 1.11 $"); vtkStandardNewMacro(vtkSimpleImageFilterExample); // The switch statement in Execute will call this method with // the appropriate input type (IT). Note that this example assumes // that the output data type is the same as the input data type. // This is not always the case. template void vtkSimpleImageFilterExampleExecute(vtkImageData* input, vtkImageData* output, IT* inPtr, IT* outPtr) { int dims[3]; input->GetDimensions(dims); if (input->GetScalarType() != output->GetScalarType()) { vtkGenericWarningMacro(<< "Execute: input ScalarType, " << input->GetScalarType() << ", must match out ScalarType " << output->GetScalarType()); return; } int size = dims[0]*dims[1]*dims[2]; for(int i=0; iGetScalarPointer(); void* outPtr = output->GetScalarPointer(); switch(output->GetScalarType()) { // This is simple a #define for a big case list. It handles // all data types vtk can handle. vtkTemplateMacro( vtkSimpleImageFilterExampleExecute( input, output, (VTK_TT *)(inPtr), (VTK_TT *)(outPtr))); default: vtkGenericWarningMacro("Execute: Unknown input ScalarType"); return; } }