VTK
|
Use a vtkWindow as input to image pipeline. More...
#include <vtkWindowToImageFilter.h>
Use a vtkWindow as input to image pipeline.
vtkWindowToImageFilter provides methods needed to read the data in a vtkWindow and use it as input to the imaging pipeline. This is useful for saving an image to a file for example. The window can be read as either RGB or RGBA pixels; in addition, the depth buffer can also be read. RGB and RGBA pixels are of type unsigned char, while Z-Buffer data is returned as floats. Use this filter to convert RenderWindows or ImageWindows to an image format.
Definition at line 75 of file vtkWindowToImageFilter.h.
Reimplemented from vtkAlgorithm.
Definition at line 80 of file vtkWindowToImageFilter.h.
vtkWindowToImageFilter::vtkWindowToImageFilter | ( | ) | [protected] |
vtkWindowToImageFilter::~vtkWindowToImageFilter | ( | ) | [protected] |
static vtkWindowToImageFilter* vtkWindowToImageFilter::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkAlgorithm.
static int vtkWindowToImageFilter::IsTypeOf | ( | const char * | name | ) | [static] |
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 vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkAlgorithm.
virtual int vtkWindowToImageFilter::IsA | ( | const char * | name | ) | [virtual] |
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 vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkAlgorithm.
static vtkWindowToImageFilter* vtkWindowToImageFilter::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkAlgorithm.
virtual vtkObjectBase* vtkWindowToImageFilter::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkAlgorithm.
Reimplemented from vtkAlgorithm.
void vtkWindowToImageFilter::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) | [virtual] |
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 vtkAlgorithm.
void vtkWindowToImageFilter::SetInput | ( | vtkWindow * | input | ) |
Indicates what renderer to get the pixel data from. Initial value is 0.
virtual vtkWindow* vtkWindowToImageFilter::GetInput | ( | ) | [virtual] |
Returns which renderer is being used as the source for the pixel data. Initial value is 0.
virtual void vtkWindowToImageFilter::SetMagnification | ( | int | ) | [virtual] |
The magnification of the current render window. Initial value is 1.
virtual int vtkWindowToImageFilter::GetMagnification | ( | ) | [virtual] |
The magnification of the current render window. Initial value is 1.
virtual void vtkWindowToImageFilter::SetFixBoundary | ( | bool | ) | [virtual] |
When this->Magnification > 1, this class render the full image in tiles. Sometimes that results in artificial artifacts at internal tile seams. To overcome this issue, set this flag to true.
virtual bool vtkWindowToImageFilter::GetFixBoundary | ( | ) | [virtual] |
When this->Magnification > 1, this class render the full image in tiles. Sometimes that results in artificial artifacts at internal tile seams. To overcome this issue, set this flag to true.
virtual void vtkWindowToImageFilter::FixBoundaryOn | ( | ) | [virtual] |
When this->Magnification > 1, this class render the full image in tiles. Sometimes that results in artificial artifacts at internal tile seams. To overcome this issue, set this flag to true.
virtual void vtkWindowToImageFilter::FixBoundaryOff | ( | ) | [virtual] |
When this->Magnification > 1, this class render the full image in tiles. Sometimes that results in artificial artifacts at internal tile seams. To overcome this issue, set this flag to true.
virtual void vtkWindowToImageFilter::ReadFrontBufferOn | ( | ) | [virtual] |
Set/Get the flag that determines which buffer to read from. The default is to read from the front buffer.
virtual void vtkWindowToImageFilter::ReadFrontBufferOff | ( | ) | [virtual] |
Set/Get the flag that determines which buffer to read from. The default is to read from the front buffer.
virtual int vtkWindowToImageFilter::GetReadFrontBuffer | ( | ) | [virtual] |
Set/Get the flag that determines which buffer to read from. The default is to read from the front buffer.
virtual void vtkWindowToImageFilter::SetReadFrontBuffer | ( | int | ) | [virtual] |
Set/Get the flag that determines which buffer to read from. The default is to read from the front buffer.
virtual void vtkWindowToImageFilter::ShouldRerenderOn | ( | ) | [virtual] |
Set/get whether to re-render the input window. Initial value is true. (This option makes no difference if Magnification > 1.)
virtual void vtkWindowToImageFilter::ShouldRerenderOff | ( | ) | [virtual] |
Set/get whether to re-render the input window. Initial value is true. (This option makes no difference if Magnification > 1.)
virtual void vtkWindowToImageFilter::SetShouldRerender | ( | int | ) | [virtual] |
Set/get whether to re-render the input window. Initial value is true. (This option makes no difference if Magnification > 1.)
virtual int vtkWindowToImageFilter::GetShouldRerender | ( | ) | [virtual] |
Set/get whether to re-render the input window. Initial value is true. (This option makes no difference if Magnification > 1.)
virtual void vtkWindowToImageFilter::SetViewport | ( | double | , |
double | , | ||
double | , | ||
double | |||
) | [virtual] |
Set/get the extents to be used to generate the image. Initial value is {0,0,1,1} (This option does not work if Magnification > 1.)
virtual void vtkWindowToImageFilter::SetViewport | ( | double | [4] | ) | [virtual] |
Set/get the extents to be used to generate the image. Initial value is {0,0,1,1} (This option does not work if Magnification > 1.)
virtual double* vtkWindowToImageFilter::GetViewport | ( | ) | [virtual] |
Set/get the extents to be used to generate the image. Initial value is {0,0,1,1} (This option does not work if Magnification > 1.)
virtual void vtkWindowToImageFilter::GetViewport | ( | double | data[4] | ) | [virtual] |
Set/get the extents to be used to generate the image. Initial value is {0,0,1,1} (This option does not work if Magnification > 1.)
virtual void vtkWindowToImageFilter::SetInputBufferType | ( | int | ) | [virtual] |
Set/get the window buffer from which data will be read. Choices include VTK_RGB (read the color image from the window), VTK_RGBA (same, but include the alpha channel), and VTK_ZBUFFER (depth buffer, returned as a float array). Initial value is VTK_RGB.
virtual int vtkWindowToImageFilter::GetInputBufferType | ( | ) | [virtual] |
Set/get the window buffer from which data will be read. Choices include VTK_RGB (read the color image from the window), VTK_RGBA (same, but include the alpha channel), and VTK_ZBUFFER (depth buffer, returned as a float array). Initial value is VTK_RGB.
void vtkWindowToImageFilter::SetInputBufferTypeToRGB | ( | ) | [inline] |
Set/get the window buffer from which data will be read. Choices include VTK_RGB (read the color image from the window), VTK_RGBA (same, but include the alpha channel), and VTK_ZBUFFER (depth buffer, returned as a float array). Initial value is VTK_RGB.
Definition at line 138 of file vtkWindowToImageFilter.h.
void vtkWindowToImageFilter::SetInputBufferTypeToRGBA | ( | ) | [inline] |
Set/get the window buffer from which data will be read. Choices include VTK_RGB (read the color image from the window), VTK_RGBA (same, but include the alpha channel), and VTK_ZBUFFER (depth buffer, returned as a float array). Initial value is VTK_RGB.
Definition at line 139 of file vtkWindowToImageFilter.h.
void vtkWindowToImageFilter::SetInputBufferTypeToZBuffer | ( | ) | [inline] |
Set/get the window buffer from which data will be read. Choices include VTK_RGB (read the color image from the window), VTK_RGBA (same, but include the alpha channel), and VTK_ZBUFFER (depth buffer, returned as a float array). Initial value is VTK_RGB.
Definition at line 140 of file vtkWindowToImageFilter.h.
Get the output data object for a port on this algorithm.
virtual int vtkWindowToImageFilter::ProcessRequest | ( | vtkInformation * | , |
vtkInformationVector ** | , | ||
vtkInformationVector * | |||
) | [virtual] |
see vtkAlgorithm for details
Reimplemented from vtkAlgorithm.
void vtkWindowToImageFilter::RequestData | ( | vtkInformation * | , |
vtkInformationVector ** | , | ||
vtkInformationVector * | |||
) | [protected] |
virtual void vtkWindowToImageFilter::RequestInformation | ( | vtkInformation * | , |
vtkInformationVector ** | , | ||
vtkInformationVector * | |||
) | [protected, virtual] |
virtual int vtkWindowToImageFilter::FillOutputPortInformation | ( | int | port, |
vtkInformation * | info | ||
) | [protected, virtual] |
Fill the output port information objects for this algorithm. This is invoked by the first call to GetOutputPortInformation for each port so subclasses can specify what they can handle.
Reimplemented from vtkAlgorithm.
void vtkWindowToImageFilter::Rescale2DActors | ( | ) | [protected] |
void vtkWindowToImageFilter::Shift2DActors | ( | int | x, |
int | y | ||
) | [protected] |
void vtkWindowToImageFilter::Restore2DActors | ( | ) | [protected] |
vtkWindow* vtkWindowToImageFilter::Input [protected] |
Definition at line 159 of file vtkWindowToImageFilter.h.
int vtkWindowToImageFilter::Magnification [protected] |
Definition at line 160 of file vtkWindowToImageFilter.h.
int vtkWindowToImageFilter::ReadFrontBuffer [protected] |
Definition at line 161 of file vtkWindowToImageFilter.h.
int vtkWindowToImageFilter::ShouldRerender [protected] |
Definition at line 162 of file vtkWindowToImageFilter.h.
double vtkWindowToImageFilter::Viewport[4] [protected] |
Definition at line 163 of file vtkWindowToImageFilter.h.
int vtkWindowToImageFilter::InputBufferType [protected] |
Definition at line 164 of file vtkWindowToImageFilter.h.
bool vtkWindowToImageFilter::FixBoundary [protected] |
Definition at line 165 of file vtkWindowToImageFilter.h.
vtkWTI2DHelperClass* vtkWindowToImageFilter::StoredData [protected] |
Definition at line 181 of file vtkWindowToImageFilter.h.