#include <vtkImageConvolve.h>
Inheritance diagram for vtkImageConvolve:
vtkImageConvolve convolves the image with a 3D NxNxN kernel or a 2D NxN kernal. The output image is cropped to the same size as the input.
Definition at line 31 of file vtkImageConvolve.h.
typedef vtkThreadedImageAlgorithm | Superclass |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
static vtkImageConvolve * | New () |
static int | IsTypeOf (const char *type) |
static vtkImageConvolve * | SafeDownCast (vtkObject *o) |
Public Member Functions | |
double * | GetKernel7x7 () |
void | GetKernel7x7 (double kernel[49]) |
void | SetKernel3x3x3 (const double kernel[27]) |
void | SetKernel5x5x5 (double kernel[125]) |
double * | GetKernel5x5x5 () |
void | GetKernel5x5x5 (double kernel[125]) |
double * | GetKernel7x7x7 () |
void | GetKernel7x7x7 (double kernel[343]) |
virtual int * | GetKernelSize () |
virtual void | GetKernelSize (int &, int &, int &) |
virtual void | GetKernelSize (int[3]) |
void | SetKernel3x3 (const double kernel[9]) |
void | SetKernel5x5 (const double kernel[25]) |
void | SetKernel7x7 (double kernel[49]) |
double * | GetKernel3x3 () |
void | GetKernel3x3 (double kernel[9]) |
double * | GetKernel5x5 () |
void | GetKernel5x5 (double kernel[25]) |
void | SetKernel7x7x7 (double kernel[343]) |
double * | GetKernel3x3x3 () |
void | GetKernel3x3x3 (double kernel[27]) |
Protected Member Functions | |
vtkImageConvolve () | |
~vtkImageConvolve () | |
void | ThreadedRequestData (vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector, vtkImageData ***inData, vtkImageData **outData, int outExt[6], int id) |
void | GetKernel (double *kernel) |
double * | GetKernel () |
void | SetKernel (const double *kernel, int sizeX, int sizeY, int sizeZ) |
Protected Attributes | |
int | KernelSize [3] |
double | Kernel [343] |
|
Reimplemented from vtkThreadedImageAlgorithm. Definition at line 37 of file vtkImageConvolve.h. |
|
|
|
|
|
Construct an instance of vtkImageConvolve filter. Reimplemented from vtkAlgorithm. |
|
Reimplemented from vtkThreadedImageAlgorithm. |
|
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 vtkThreadedImageAlgorithm. |
|
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 vtkThreadedImageAlgorithm. |
|
Reimplemented from vtkThreadedImageAlgorithm. |
|
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 vtkThreadedImageAlgorithm. |
|
Get the kernel size |
|
Get the kernel size |
|
Get the kernel size |
|
Set the kernel to be a given 3x3 or 5x5 or 7x7 kernel. |
|
Set the kernel to be a given 3x3 or 5x5 or 7x7 kernel. |
|
|
|
Return an array that contains the kernel. |
|
|
|
|
|
|
|
|
|
|
|
Set the kernel to be a 3x3x3 or 5x5x5 or 7x7x7 kernel. |
|
|
|
|
|
Return an array that contains the kernel |
|
|
|
|
|
|
|
|
|
|
|
If the subclass does not define an Execute method, then the task will be broken up, multiple threads will be spawned, and each thread will call this method. It is public so that the thread functions can call this method. Reimplemented from vtkThreadedImageAlgorithm. |
|
|
|
|
|
|
|
Definition at line 102 of file vtkImageConvolve.h. |
|
Definition at line 103 of file vtkImageConvolve.h. |