Generic filter that has N inputs.
More...
#include <vtkImageMultipleInputFilter.h>
|
virtual const char * | GetClassName () |
|
virtual int | IsA (const char *type) |
|
void | PrintSelf (ostream &os, vtkIndent indent) |
|
virtual void | SetInput (int num, vtkImageData *input) |
|
|
virtual void | AddInput (vtkImageData *input) |
|
virtual void | RemoveInput (vtkImageData *input) |
|
|
vtkImageData * | GetInput (int num) |
|
vtkImageData * | GetInput () |
|
|
virtual void | SetBypass (int) |
|
virtual int | GetBypass () |
|
virtual void | BypassOn () |
|
virtual void | BypassOff () |
|
|
virtual void | SetNumberOfThreads (int) |
|
virtual int | GetNumberOfThreads () |
|
|
virtual int | SplitExtent (int splitExt[6], int startExt[6], int num, int total) |
|
|
virtual void | ThreadedExecute (vtkImageData **inDatas, vtkImageData *outData, int extent[6], int threadId) |
|
void | PrintSelf (ostream &os, vtkIndent indent) |
|
void | SetOutput (vtkImageData *output) |
|
vtkImageData * | GetOutput () |
|
vtkImageData * | GetOutput (int idx) |
|
void | PrintSelf (ostream &os, vtkIndent indent) |
|
virtual void | Update () |
|
virtual void | UpdateWholeExtent () |
|
virtual void | UpdateInformation () |
|
virtual void | PropagateUpdateExtent (vtkDataObject *output) |
|
virtual void | TriggerAsynchronousUpdate () |
|
virtual void | UpdateData (vtkDataObject *output) |
|
void | UnRegisterAllOutputs (void) |
|
int | GetOutputIndex (vtkDataObject *out) |
|
virtual void | SetExecutive (vtkExecutive *executive) |
|
virtual void | SetReleaseDataFlag (int) |
|
virtual int | GetReleaseDataFlag () |
|
virtual void | ReleaseDataFlagOn () |
|
virtual void | ReleaseDataFlagOff () |
|
vtkDataObject ** | GetOutputs () |
|
virtual int | GetNumberOfOutputs () |
|
virtual int | ProcessRequest (vtkInformation *, vtkInformationVector **, vtkInformationVector *) |
|
void | PrintSelf (ostream &os, vtkIndent indent) |
|
void | SqueezeInputArray () |
|
void | RemoveAllInputs () |
|
vtkDataObject ** | GetInputs () |
|
int | GetNumberOfInputs () |
|
virtual void | SetInputConnection (vtkAlgorithmOutput *input) |
|
virtual void | SetInputConnection (int port, vtkAlgorithmOutput *input) |
|
virtual void | AddInputConnection (int port, vtkAlgorithmOutput *input) |
|
virtual void | AddInputConnection (vtkAlgorithmOutput *input) |
|
virtual void | RemoveInputConnection (int port, vtkAlgorithmOutput *input) |
|
virtual void | SetNthInputConnection (int port, int index, vtkAlgorithmOutput *input) |
|
virtual void | SetNumberOfInputConnections (int port, int n) |
|
Generic filter that has N inputs.
vtkImageMultipleInputFilter is a super class for filters that have any number of inputs. Streaming is not available in this class yet.
- See also
- vtkImageToImageFilter vtkImageInPlaceFilter vtkImageTwoInputFilter
Definition at line 32 of file vtkImageMultipleInputFilter.h.
vtkImageMultipleInputFilter::vtkImageMultipleInputFilter |
( |
| ) |
|
|
protected |
vtkImageMultipleInputFilter::~vtkImageMultipleInputFilter |
( |
| ) |
|
|
protected |
virtual const char* vtkImageMultipleInputFilter::GetClassName |
( |
| ) |
|
|
virtual |
static int vtkImageMultipleInputFilter::IsTypeOf |
( |
const char * |
type | ) |
|
|
static |
virtual int vtkImageMultipleInputFilter::IsA |
( |
const char * |
type | ) |
|
|
virtual |
void vtkImageMultipleInputFilter::PrintSelf |
( |
ostream & |
os, |
|
|
vtkIndent |
indent |
|
) |
| |
virtual void vtkImageMultipleInputFilter::SetInput |
( |
int |
num, |
|
|
vtkImageData * |
input |
|
) |
| |
|
virtual |
Set an Input of this filter.
virtual void vtkImageMultipleInputFilter::AddInput |
( |
vtkImageData * |
input | ) |
|
|
virtual |
Adds an input to the first null position in the input list. Expands the list memory if necessary
virtual void vtkImageMultipleInputFilter::RemoveInput |
( |
vtkImageData * |
input | ) |
|
|
virtual |
Adds an input to the first null position in the input list. Expands the list memory if necessary
vtkImageData* vtkImageMultipleInputFilter::GetInput |
( |
int |
num | ) |
|
Get one input to this filter.
Get one input to this filter.
virtual void vtkImageMultipleInputFilter::SetBypass |
( |
int |
| ) |
|
|
virtual |
Turning bypass on will cause the filter to turn off and simply pass the data from the first input (input0) through. It is implemented for consistency with vtkImageToImageFilter.
virtual int vtkImageMultipleInputFilter::GetBypass |
( |
| ) |
|
|
virtual |
Turning bypass on will cause the filter to turn off and simply pass the data from the first input (input0) through. It is implemented for consistency with vtkImageToImageFilter.
virtual void vtkImageMultipleInputFilter::BypassOn |
( |
| ) |
|
|
virtual |
Turning bypass on will cause the filter to turn off and simply pass the data from the first input (input0) through. It is implemented for consistency with vtkImageToImageFilter.
virtual void vtkImageMultipleInputFilter::BypassOff |
( |
| ) |
|
|
virtual |
Turning bypass on will cause the filter to turn off and simply pass the data from the first input (input0) through. It is implemented for consistency with vtkImageToImageFilter.
virtual void vtkImageMultipleInputFilter::SetNumberOfThreads |
( |
int |
| ) |
|
|
virtual |
Get/Set the number of threads to create when rendering
virtual int vtkImageMultipleInputFilter::GetNumberOfThreads |
( |
| ) |
|
|
virtual |
Get/Set the number of threads to create when rendering
virtual int vtkImageMultipleInputFilter::SplitExtent |
( |
int |
splitExt[6], |
|
|
int |
startExt[6], |
|
|
int |
num, |
|
|
int |
total |
|
) |
| |
|
virtual |
Putting this here until I merge graphics and imaging streaming.
virtual void vtkImageMultipleInputFilter::ThreadedExecute |
( |
vtkImageData ** |
inDatas, |
|
|
vtkImageData * |
outData, |
|
|
int |
extent[6], |
|
|
int |
threadId |
|
) |
| |
|
virtual |
The execute method created by the subclass. This is kept public instead of protected since it is called from a non-member thread function.
Reimplemented in vtkImageMultipleInputOutputFilter.
void vtkImageMultipleInputFilter::ComputeInputUpdateExtents |
( |
vtkDataObject * |
output | ) |
|
|
protectedvirtual |
What is the input update extent that is required to produce the desired output? By default, the whole input is always required but this is overridden in many subclasses.
Reimplemented from vtkSource.
Reimplemented in vtkImageMultipleInputOutputFilter.
virtual void vtkImageMultipleInputFilter::ComputeInputUpdateExtent |
( |
int |
inExt[6], |
|
|
int |
outExt[6], |
|
|
int |
whichInput |
|
) |
| |
|
protectedvirtual |
void vtkImageMultipleInputFilter::ExecuteData |
( |
vtkDataObject * |
output | ) |
|
|
protectedvirtual |
This method is the one that should be used by subclasses, right now the default implementation is to call the backwards compatibility method
Reimplemented from vtkSource.
Reimplemented in vtkImageMultipleInputOutputFilter.
void vtkImageMultipleInputFilter::ExecuteInformation |
( |
| ) |
|
|
protectedvirtual |
virtual int vtkImageMultipleInputFilter::FillInputPortInformation |
( |
int |
, |
|
|
vtkInformation * |
|
|
) |
| |
|
protectedvirtual |
int vtkImageMultipleInputFilter::Bypass |
|
protected |
int vtkImageMultipleInputFilter::NumberOfThreads |
|
protected |
The documentation for this class was generated from the following file: