68 #ifndef _vtk_Image3DImagePlaneCallback_h_
69 #define _vtk_Image3DImagePlaneCallback_h_
71 #include <vtkCommand.h>
72 #include <vtkImageReslice.h>
73 #include <vtkMatrix4x4.h>
74 #include "MegaVTK2Configure.h"
93 virtual void Execute(vtkObject *caller,
unsigned long,
void *);
99 vtkImageData * GetOutput(
void)
const
101 return this->Reslice->GetOutput();
105 virtual void Reset(
void)
107 this->Reslice->SetInput (NULL);
114 vtkImageReslice * GetReslice()
116 return this->Reslice;
123 vtkMatrix4x4 * GetMatrix()
125 return this->ResliceAxes;
131 this->Reslice = vtkImageReslice::New();
132 this->ResliceAxes = vtkMatrix4x4::New();
137 this->Reslice->Delete();
138 this->ResliceAxes->Delete();