#include <vtkSimpleImageToImageFilter.h>
Inheritance diagram for vtkSimpleImageToImageFilter:
vtkSimpleImageToImageFilter is a filter which aims to avoid much of the complexity associated with vtkImageAlgorithm (i.e. support for pieces, multi-threaded operation). If you need to write a simple image-image filter which operates on the whole input, use this as the superclass. The subclass has to provide only an execute method which takes input and output as arguments. Memory allocation is handled in vtkSimpleImageToImageFilter. Also, you are guaranteed to have a valid input in the Execute(input, output) method. By default, this filter requests it's input's whole extent and copies the input's information (spacing, whole extent etc...) to the output. If the output's setup is different (for example, if it performs some sort of sub-sampling), ExecuteInformation has to be overwritten. As an example of how this can be done, you can look at vtkImageShrink3D::ExecuteInformation. For a complete example which uses templates to support generic data types, see vtkSimpleFilterExample.
Definition at line 44 of file vtkSimpleImageToImageFilter.h.
Public Types | |
typedef vtkImageAlgorithm | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
Static Public Member Functions | |
static int | IsTypeOf (const char *type) |
static vtkSimpleImageToImageFilter * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkSimpleImageToImageFilter () | |
~vtkSimpleImageToImageFilter () | |
virtual int | RequestUpdateExtent (vtkInformation *, vtkInformationVector **, vtkInformationVector *) |
virtual int | RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *) |
virtual void | SimpleExecute (vtkImageData *input, vtkImageData *output)=0 |
|
Reimplemented from vtkImageAlgorithm. Reimplemented in vtkSimpleImageFilterExample. Definition at line 47 of file vtkSimpleImageToImageFilter.h. |
|
|
|
|
|
Reimplemented from vtkImageAlgorithm. Reimplemented in vtkSimpleImageFilterExample. |
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkImageAlgorithm. Reimplemented in vtkSimpleImageFilterExample. |
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkImageAlgorithm. Reimplemented in vtkSimpleImageFilterExample. |
|
Reimplemented from vtkImageAlgorithm. Reimplemented in vtkSimpleImageFilterExample. |
|
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes. Reimplemented from vtkImageAlgorithm. |
|
Reimplemented from vtkImageAlgorithm. |
|
This is called by the superclass. This is the method you should override. Reimplemented from vtkImageAlgorithm. |
|
Implemented in vtkSimpleImageFilterExample. |