VTK
|
GPU-based implementation of Line Integral Convolution (LIC) More...
#include <vtkLineIntegralConvolution2D.h>
GPU-based implementation of Line Integral Convolution (LIC)
This class resorts to GLSL to implement GPU-based Line Integral Convolution (LIC) for visualizing a 2D vector field that may be obtained by projecting an original 3D vector field onto a surface (such that the resulting 2D vector at each grid point on the surface is tangential to the local normal, as done in vtkSurfaceLICPainter).
As an image-based technique, 2D LIC works by (1) integrating a bidirectional streamline from the center of each pixel (of the LIC output image), (2) locating the pixels along / hit by this streamline as the correlated pixels of the starting pixel (seed point / pixel), (3) indexing a (usually white) noise texture (another input to LIC, in addition to the 2D vector field, usually with the same size as that of the 2D vetor field) to determine the values (colors) of these pixels (the starting and the correlated pixels), typically through bi-linear interpolation, and (4) performing convolution (weighted averaging) on these values, by adopting a low-pass filter (such as box, ramp, and Hanning kernels), to obtain the result value (color) that is then assigned to the seed pixel.
The GLSL-based GPU implementation herein maps the aforementioned pipeline to fragment shaders and a box kernel is employed. Both the white noise and the vector field are provided to the GPU as texture objects (supported by the multi-texturing capability). In addition, there are four texture objects (color buffers) allocated to constitute two pairs that work in a ping-pong fashion, with one as the read buffers and the other as the write / render targets. Maintained by a frame buffer object (GL_EXT_framebuffer_object), each pair employs one buffer to store the current (dynamically updated) position (by means of the texture coordinate that keeps being warped by the underlying vector) of the (virtual) particle initially released from each fragment while using the bother buffer to store the current (dynamically updated too) accumulated texture value that each seed fragment (before the 'mesh' is warped) collects. Given NumberOfSteps integration steps in each direction, there are a total of (2 * NumberOfSteps + 1) fragments (including the seed fragment) are convolved and each contributes 1 / (2 * NumberOfSteps
One pass of LIC (basic LIC) tends to produce low-contrast / blurred images and vtkLineIntegralConvolution2D provides an option for creating enhanced LIC images. Enhanced LIC improves image quality by increasing inter-streamline contrast while suppressing artifacts. It performs two passes of LIC, with a 3x3 Laplacian high-pass filter in between that processes the output of pass
vtkLineIntegralConvolution2D applies masking to zero-vector fragments so that un-filtered white noise areas are made totally transparent by class vtkSurfaceLICPainter to show the underlying geometry surface.
The convolution process tends to decrease both contrast and dynamic range, sometimes leading to dull dark images. In order to counteract this, optional contrast ehnancement stages have been added. These increase the dynamic range and contrast and sharpen streaking patterns that emerge from the LIC process.
Under some circumstances, typically depending on the contrast and dynamic range and graininess of the noise texture, jagged or pixelated patterns emerge in the LIC. These can be reduced by enabling the optional anti-aliasing pass.
The internal pipeline is as follows, with optional stages denoted by () nested optional stages depend on their parent stage.
noise texture | [ LIC ((CE) HPF LIC) (AA) (CE) ] | | vector field LIC'd image
where LIC is the LIC stage, HPF is the high-pass filter stage, CE is the contrast ehnacement stage, and AA is the antialias stage.
Definition at line 106 of file vtkLineIntegralConvolution2D.h.
Reimplemented from vtkObject.
Reimplemented in vtkPLineIntegralConvolution2D.
Definition at line 110 of file vtkLineIntegralConvolution2D.h.
anonymous enum |
Enable/Disable contrast and dynamic range correction stages. Stage 1 is applied on the input to the high-pass filter when the high-pass filter is enabled and skipped otherwise. Stage 2, when enabled is the final stage in the internal pipeline. Both stages are implemented by a histogram stretching of the gray scale colors in the LIC'd image as follows: c = (c-m)/(M-m) where, c is the fragment color, m is the color value to map to 0, M is the color value to map to 1. The default values of m and M are the min and max over all fragments. This increase the dynamic range and contrast in the LIC'd image, both of which are natuarly attenuated by the LI conovlution proccess. ENHANCE_CONTRAST_OFF -- don't enhance contrast ENHANCE_CONTRAST_ON -- enhance high-pass input and final stage output This feature is disabled by default.
Definition at line 146 of file vtkLineIntegralConvolution2D.h.
vtkLineIntegralConvolution2D::vtkLineIntegralConvolution2D | ( | ) | [protected] |
virtual vtkLineIntegralConvolution2D::~vtkLineIntegralConvolution2D | ( | ) | [protected, virtual] |
static vtkLineIntegralConvolution2D* vtkLineIntegralConvolution2D::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkObject.
Reimplemented in vtkPLineIntegralConvolution2D.
static int vtkLineIntegralConvolution2D::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 vtkObject.
Reimplemented in vtkPLineIntegralConvolution2D.
virtual int vtkLineIntegralConvolution2D::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 vtkObject.
Reimplemented in vtkPLineIntegralConvolution2D.
static vtkLineIntegralConvolution2D* vtkLineIntegralConvolution2D::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkObject.
Reimplemented in vtkPLineIntegralConvolution2D.
virtual vtkObjectBase* vtkLineIntegralConvolution2D::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkObject.
Reimplemented in vtkPLineIntegralConvolution2D.
Reimplemented from vtkObject.
Reimplemented in vtkPLineIntegralConvolution2D.
void vtkLineIntegralConvolution2D::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 vtkObject.
Reimplemented in vtkPLineIntegralConvolution2D.
static bool vtkLineIntegralConvolution2D::IsSupported | ( | vtkRenderWindow * | renWin | ) | [static] |
Returns if the context supports the required extensions.
void vtkLineIntegralConvolution2D::SetContext | ( | vtkRenderWindow * | context | ) |
Set/Get the rendering context. A reference is not explicity held, thus refernce to the context must be held externally.
Set/Get the rendering context. A reference is not explicity held, thus refernce to the context must be held externally.
virtual void vtkLineIntegralConvolution2D::SetEnhancedLIC | ( | int | ) | [virtual] |
EnhancedLIC mean compute the LIC twice with the second pass using the edge-enhanced result of the first pass as a noise texture. Edge enhancedment is made by a simple Laplace convolution.
virtual int vtkLineIntegralConvolution2D::GetEnhancedLIC | ( | ) | [virtual] |
EnhancedLIC mean compute the LIC twice with the second pass using the edge-enhanced result of the first pass as a noise texture. Edge enhancedment is made by a simple Laplace convolution.
virtual void vtkLineIntegralConvolution2D::EnhancedLICOn | ( | ) | [virtual] |
EnhancedLIC mean compute the LIC twice with the second pass using the edge-enhanced result of the first pass as a noise texture. Edge enhancedment is made by a simple Laplace convolution.
virtual void vtkLineIntegralConvolution2D::EnhancedLICOff | ( | ) | [virtual] |
EnhancedLIC mean compute the LIC twice with the second pass using the edge-enhanced result of the first pass as a noise texture. Edge enhancedment is made by a simple Laplace convolution.
virtual void vtkLineIntegralConvolution2D::SetEnhanceContrast | ( | int | ) | [virtual] |
Enable/Disable contrast and dynamic range correction stages. Stage 1 is applied on the input to the high-pass filter when the high-pass filter is enabled and skipped otherwise. Stage 2, when enabled is the final stage in the internal pipeline. Both stages are implemented by a histogram stretching of the gray scale colors in the LIC'd image as follows: c = (c-m)/(M-m) where, c is the fragment color, m is the color value to map to 0, M is the color value to map to 1. The default values of m and M are the min and max over all fragments. This increase the dynamic range and contrast in the LIC'd image, both of which are natuarly attenuated by the LI conovlution proccess. ENHANCE_CONTRAST_OFF -- don't enhance contrast ENHANCE_CONTRAST_ON -- enhance high-pass input and final stage output This feature is disabled by default.
virtual int vtkLineIntegralConvolution2D::GetEnhanceContrast | ( | ) | [virtual] |
Enable/Disable contrast and dynamic range correction stages. Stage 1 is applied on the input to the high-pass filter when the high-pass filter is enabled and skipped otherwise. Stage 2, when enabled is the final stage in the internal pipeline. Both stages are implemented by a histogram stretching of the gray scale colors in the LIC'd image as follows: c = (c-m)/(M-m) where, c is the fragment color, m is the color value to map to 0, M is the color value to map to 1. The default values of m and M are the min and max over all fragments. This increase the dynamic range and contrast in the LIC'd image, both of which are natuarly attenuated by the LI conovlution proccess. ENHANCE_CONTRAST_OFF -- don't enhance contrast ENHANCE_CONTRAST_ON -- enhance high-pass input and final stage output This feature is disabled by default.
virtual void vtkLineIntegralConvolution2D::EnhanceContrastOn | ( | ) | [virtual] |
Enable/Disable contrast and dynamic range correction stages. Stage 1 is applied on the input to the high-pass filter when the high-pass filter is enabled and skipped otherwise. Stage 2, when enabled is the final stage in the internal pipeline. Both stages are implemented by a histogram stretching of the gray scale colors in the LIC'd image as follows: c = (c-m)/(M-m) where, c is the fragment color, m is the color value to map to 0, M is the color value to map to 1. The default values of m and M are the min and max over all fragments. This increase the dynamic range and contrast in the LIC'd image, both of which are natuarly attenuated by the LI conovlution proccess. ENHANCE_CONTRAST_OFF -- don't enhance contrast ENHANCE_CONTRAST_ON -- enhance high-pass input and final stage output This feature is disabled by default.
virtual void vtkLineIntegralConvolution2D::EnhanceContrastOff | ( | ) | [virtual] |
Enable/Disable contrast and dynamic range correction stages. Stage 1 is applied on the input to the high-pass filter when the high-pass filter is enabled and skipped otherwise. Stage 2, when enabled is the final stage in the internal pipeline. Both stages are implemented by a histogram stretching of the gray scale colors in the LIC'd image as follows: c = (c-m)/(M-m) where, c is the fragment color, m is the color value to map to 0, M is the color value to map to 1. The default values of m and M are the min and max over all fragments. This increase the dynamic range and contrast in the LIC'd image, both of which are natuarly attenuated by the LI conovlution proccess. ENHANCE_CONTRAST_OFF -- don't enhance contrast ENHANCE_CONTRAST_ON -- enhance high-pass input and final stage output This feature is disabled by default.
virtual void vtkLineIntegralConvolution2D::SetLowContrastEnhancementFactor | ( | double | ) | [virtual] |
This feature is used to fine tune the contrast enhancement. Values are provided indicating the fraction of the range to adjust m and M by during contrast enahncement histogram stretching. M and m are the intensity/lightness values that map to 1 and 0. (see EnhanceContrast for an explanation of the mapping procedure). m and M are computed using the factors as follows: m = min(C) - mFactor * (max(C) - min(C)) M = max(C) - MFactor * (max(C) - min(C)) the default values for mFactor and MFactor are 0 which result in m = min(C), M = max(C), where C is all of the colors in the image. Adjusting mFactor and MFactor above zero provide a means to control the saturation of normalization. These settings only affect the final normalization, the normalization that occurs on the input to the high-pass filter always uses the min and max.
virtual double vtkLineIntegralConvolution2D::GetLowContrastEnhancementFactor | ( | ) | [virtual] |
This feature is used to fine tune the contrast enhancement. Values are provided indicating the fraction of the range to adjust m and M by during contrast enahncement histogram stretching. M and m are the intensity/lightness values that map to 1 and 0. (see EnhanceContrast for an explanation of the mapping procedure). m and M are computed using the factors as follows: m = min(C) - mFactor * (max(C) - min(C)) M = max(C) - MFactor * (max(C) - min(C)) the default values for mFactor and MFactor are 0 which result in m = min(C), M = max(C), where C is all of the colors in the image. Adjusting mFactor and MFactor above zero provide a means to control the saturation of normalization. These settings only affect the final normalization, the normalization that occurs on the input to the high-pass filter always uses the min and max.
virtual void vtkLineIntegralConvolution2D::SetHighContrastEnhancementFactor | ( | double | ) | [virtual] |
This feature is used to fine tune the contrast enhancement. Values are provided indicating the fraction of the range to adjust m and M by during contrast enahncement histogram stretching. M and m are the intensity/lightness values that map to 1 and 0. (see EnhanceContrast for an explanation of the mapping procedure). m and M are computed using the factors as follows: m = min(C) - mFactor * (max(C) - min(C)) M = max(C) - MFactor * (max(C) - min(C)) the default values for mFactor and MFactor are 0 which result in m = min(C), M = max(C), where C is all of the colors in the image. Adjusting mFactor and MFactor above zero provide a means to control the saturation of normalization. These settings only affect the final normalization, the normalization that occurs on the input to the high-pass filter always uses the min and max.
virtual double vtkLineIntegralConvolution2D::GetHighContrastEnhancementFactor | ( | ) | [virtual] |
This feature is used to fine tune the contrast enhancement. Values are provided indicating the fraction of the range to adjust m and M by during contrast enahncement histogram stretching. M and m are the intensity/lightness values that map to 1 and 0. (see EnhanceContrast for an explanation of the mapping procedure). m and M are computed using the factors as follows: m = min(C) - mFactor * (max(C) - min(C)) M = max(C) - MFactor * (max(C) - min(C)) the default values for mFactor and MFactor are 0 which result in m = min(C), M = max(C), where C is all of the colors in the image. Adjusting mFactor and MFactor above zero provide a means to control the saturation of normalization. These settings only affect the final normalization, the normalization that occurs on the input to the high-pass filter always uses the min and max.
virtual void vtkLineIntegralConvolution2D::SetAntiAlias | ( | int | ) | [virtual] |
Enable/Disable the anti-aliasing pass. This optional pass (disabled by default) can be enabled to reduce jagged patterns in the final LIC image. Values greater than 0 control the number of iterations, one is typically sufficient.
virtual int vtkLineIntegralConvolution2D::GetAntiAlias | ( | ) | [virtual] |
Enable/Disable the anti-aliasing pass. This optional pass (disabled by default) can be enabled to reduce jagged patterns in the final LIC image. Values greater than 0 control the number of iterations, one is typically sufficient.
virtual void vtkLineIntegralConvolution2D::AntiAliasOn | ( | ) | [virtual] |
Enable/Disable the anti-aliasing pass. This optional pass (disabled by default) can be enabled to reduce jagged patterns in the final LIC image. Values greater than 0 control the number of iterations, one is typically sufficient.
virtual void vtkLineIntegralConvolution2D::AntiAliasOff | ( | ) | [virtual] |
Enable/Disable the anti-aliasing pass. This optional pass (disabled by default) can be enabled to reduce jagged patterns in the final LIC image. Values greater than 0 control the number of iterations, one is typically sufficient.
virtual void vtkLineIntegralConvolution2D::SetNumberOfSteps | ( | int | ) | [virtual] |
Number of streamline integration steps (initial value is 1). In term of visual quality, the greater (within some range) the better.
virtual int vtkLineIntegralConvolution2D::GetNumberOfSteps | ( | ) | [virtual] |
Number of streamline integration steps (initial value is 1). In term of visual quality, the greater (within some range) the better.
virtual void vtkLineIntegralConvolution2D::SetStepSize | ( | double | ) | [virtual] |
Get/Set the streamline integration step size (0.01 by default). This is the length of each step in normalized image space i.e. in range [0, FLOAT_MAX]. In term of visual quality, the smaller the better. The type for the interface is double as VTK interface is, but GPU only supports float. Thus it will be converted to float in the execution of the algorithm.
virtual double vtkLineIntegralConvolution2D::GetStepSize | ( | ) | [virtual] |
Get/Set the streamline integration step size (0.01 by default). This is the length of each step in normalized image space i.e. in range [0, FLOAT_MAX]. In term of visual quality, the smaller the better. The type for the interface is double as VTK interface is, but GPU only supports float. Thus it will be converted to float in the execution of the algorithm.
void vtkLineIntegralConvolution2D::SetComponentIds | ( | int | c0, |
int | c1 | ||
) |
If VectorField has >= 3 components, we must choose which 2 components form the (X, Y) components for the vector field. Must be in the range [0, 3].
void vtkLineIntegralConvolution2D::SetComponentIds | ( | int | c[2] | ) | [inline] |
If VectorField has >= 3 components, we must choose which 2 components form the (X, Y) components for the vector field. Must be in the range [0, 3].
Definition at line 207 of file vtkLineIntegralConvolution2D.h.
virtual int* vtkLineIntegralConvolution2D::GetComponentIds | ( | ) | [virtual] |
If VectorField has >= 3 components, we must choose which 2 components form the (X, Y) components for the vector field. Must be in the range [0, 3].
virtual void vtkLineIntegralConvolution2D::GetComponentIds | ( | int & | , |
int & | |||
) | [virtual] |
If VectorField has >= 3 components, we must choose which 2 components form the (X, Y) components for the vector field. Must be in the range [0, 3].
virtual void vtkLineIntegralConvolution2D::GetComponentIds | ( | int | [2] | ) | [virtual] |
If VectorField has >= 3 components, we must choose which 2 components form the (X, Y) components for the vector field. Must be in the range [0, 3].
virtual void vtkLineIntegralConvolution2D::SetMaxNoiseValue | ( | double | ) | [virtual] |
Set the max noise value for use during LIC integration normalization. The integration normalization factor is the max noise value times the number of steps taken. The default value is 1.
virtual double vtkLineIntegralConvolution2D::GetMaxNoiseValue | ( | ) | [virtual] |
Set the max noise value for use during LIC integration normalization. The integration normalization factor is the max noise value times the number of steps taken. The default value is 1.
void vtkLineIntegralConvolution2D::SetTransformVectors | ( | int | val | ) |
This class performs LIC in the normalized image space. Hence, by default it transforms the input vectors to the normalized image space (using the GridSpacings and input vector field dimensions). Set this to 0 to disable tranformation if the vectors are already transformed.
virtual int vtkLineIntegralConvolution2D::GetTransformVectors | ( | ) | [virtual] |
This class performs LIC in the normalized image space. Hence, by default it transforms the input vectors to the normalized image space (using the GridSpacings and input vector field dimensions). Set this to 0 to disable tranformation if the vectors are already transformed.
void vtkLineIntegralConvolution2D::SetNormalizeVectors | ( | int | val | ) |
Set/Get the spacing in each dimension of the plane on which the vector field is defined. This class performs LIC in the normalized image space and hence generally it needs to transform the input vector field (given in physical space) to the normalized image space. The Spacing is needed to determine the transform. Default is (1.0, 1.0). It is possible to disable vector transformation by setting TransformVectors to 0. vtkSetVector2Macro(GridSpacings, double); vtkGetVector2Macro(GridSpacings, double);
Normalize vectors during integration. When set(the default) the input vector field is normalized during integration, and each integration occurs over the same arclength. When not set each integration occurs over an arc length proportional to the field magnitude as is customary in traditional numerical methods. See, "Imaging Vector Fields Using Line Integral Convolution" for an axample where normalization is used. See, "Image Space Based Visualization of Unsteady Flow on Surfaces" for an example of where no normalization is used.
virtual int vtkLineIntegralConvolution2D::GetNormalizeVectors | ( | ) | [virtual] |
Set/Get the spacing in each dimension of the plane on which the vector field is defined. This class performs LIC in the normalized image space and hence generally it needs to transform the input vector field (given in physical space) to the normalized image space. The Spacing is needed to determine the transform. Default is (1.0, 1.0). It is possible to disable vector transformation by setting TransformVectors to 0. vtkSetVector2Macro(GridSpacings, double); vtkGetVector2Macro(GridSpacings, double);
Normalize vectors during integration. When set(the default) the input vector field is normalized during integration, and each integration occurs over the same arclength. When not set each integration occurs over an arc length proportional to the field magnitude as is customary in traditional numerical methods. See, "Imaging Vector Fields Using Line Integral Convolution" for an axample where normalization is used. See, "Image Space Based Visualization of Unsteady Flow on Surfaces" for an example of where no normalization is used.
virtual void vtkLineIntegralConvolution2D::SetMaskThreshold | ( | double | ) | [virtual] |
The MaskThreshold controls blanking of the LIC texture. For fragments with |V|<threhold the LIC fragment is not rendered. The default value is 0.0. For surface LIC MaskThreshold units are in the original vector space. For image LIC be aware that while the vector field is transformed to image space while the mask threshold is not. Therefore the mask threshold must be specified in image space units.
virtual double vtkLineIntegralConvolution2D::GetMaskThreshold | ( | ) | [virtual] |
The MaskThreshold controls blanking of the LIC texture. For fragments with |V|<threhold the LIC fragment is not rendered. The default value is 0.0. For surface LIC MaskThreshold units are in the original vector space. For image LIC be aware that while the vector field is transformed to image space while the mask threshold is not. Therefore the mask threshold must be specified in image space units.
vtkTextureObject* vtkLineIntegralConvolution2D::Execute | ( | vtkTextureObject * | vectorTex, |
vtkTextureObject * | noiseTex | ||
) |
Compute the lic on the entire vector field texture.
vtkTextureObject* vtkLineIntegralConvolution2D::Execute | ( | const int | extent[4], |
vtkTextureObject * | vectorTex, | ||
vtkTextureObject * | noiseTex | ||
) |
Compute the lic on the indicated subset of the vector field texture.
vtkTextureObject* vtkLineIntegralConvolution2D::Execute | ( | const vtkPixelExtent & | inputTexExtent, |
const std::deque< vtkPixelExtent > & | vectorExtent, | ||
const std::deque< vtkPixelExtent > & | licExtent, | ||
vtkTextureObject * | vectorTex, | ||
vtkTextureObject * | maskVectorTex, | ||
vtkTextureObject * | noiseTex | ||
) |
Compute LIC over the desired subset of the input texture. The result is copied into the desired subset of the provided output texture. inputTexExtent : screen space extent of the input texture vectorExtent : part of the inpute extent that has valid vectors licExtent : part of the inpute extent to compute on outputTexExtent : screen space extent of the output texture outputExtent : part of the output texture to store the result
static void vtkLineIntegralConvolution2D::SetVectorTexParameters | ( | vtkTextureObject * | vectors | ) | [static] |
Convenience functions to ensure that the input textures are configured correctly.
static void vtkLineIntegralConvolution2D::SetNoiseTexParameters | ( | vtkTextureObject * | noise | ) | [static] |
virtual void vtkLineIntegralConvolution2D::SetCommunicator | ( | vtkPainterCommunicator * | ) | [inline, virtual] |
Set the communicator to use during parallel operation The communicator will not be duplicated or reference counted for performance reasons thus caller should hold/manage reference to the communicator during use of the LIC object.
Reimplemented in vtkPLineIntegralConvolution2D.
Definition at line 313 of file vtkLineIntegralConvolution2D.h.
virtual vtkPainterCommunicator* vtkLineIntegralConvolution2D::GetCommunicator | ( | ) | [virtual] |
Set the communicator to use during parallel operation The communicator will not be duplicated or reference counted for performance reasons thus caller should hold/manage reference to the communicator during use of the LIC object.
Reimplemented in vtkPLineIntegralConvolution2D.
virtual void vtkLineIntegralConvolution2D::GetGlobalMinMax | ( | vtkPainterCommunicator * | , |
float & | , | ||
float & | |||
) | [inline, virtual] |
For parallel operation, find global min/max min/max are in/out.
Reimplemented in vtkPLineIntegralConvolution2D.
Definition at line 319 of file vtkLineIntegralConvolution2D.h.
virtual void vtkLineIntegralConvolution2D::WriteTimerLog | ( | const char * | ) | [inline, virtual] |
Methods used for parallel benchmarks. Use cmake to define vtkLineIntegralConviolution2DTIME to enable benchmarks. During each update timing information is stored, it can be written to disk by calling WriteLog.
Reimplemented in vtkPLineIntegralConvolution2D.
Definition at line 330 of file vtkLineIntegralConvolution2D.h.
void vtkLineIntegralConvolution2D::SetVTShader | ( | vtkShaderProgram2 * | prog | ) | [protected] |
void vtkLineIntegralConvolution2D::SetLIC0Shader | ( | vtkShaderProgram2 * | prog | ) | [protected] |
void vtkLineIntegralConvolution2D::SetLICIShader | ( | vtkShaderProgram2 * | prog | ) | [protected] |
void vtkLineIntegralConvolution2D::SetLICNShader | ( | vtkShaderProgram2 * | prog | ) | [protected] |
void vtkLineIntegralConvolution2D::SetEEShader | ( | vtkShaderProgram2 * | prog | ) | [protected] |
void vtkLineIntegralConvolution2D::SetCEShader | ( | vtkShaderProgram2 * | prog | ) | [protected] |
void vtkLineIntegralConvolution2D::SetAAHShader | ( | vtkShaderProgram2 * | prog | ) | [protected] |
void vtkLineIntegralConvolution2D::SetAAVShader | ( | vtkShaderProgram2 * | prog | ) | [protected] |
void vtkLineIntegralConvolution2D::BuildShaders | ( | ) | [protected] |
void vtkLineIntegralConvolution2D::RenderQuad | ( | float | computeBounds[4], |
vtkPixelExtent | computeExtent | ||
) | [protected] |
vtkTextureObject* vtkLineIntegralConvolution2D::AllocateBuffer | ( | unsigned int | texSize[2] | ) | [protected] |
void vtkLineIntegralConvolution2D::SetNoise2TexParameters | ( | vtkTextureObject * | noise | ) | [protected] |
Convenience functions to ensure that the input textures are configured correctly.
virtual void vtkLineIntegralConvolution2D::StartTimerEvent | ( | const char * | ) | [inline, protected, virtual] |
Methods used for parallel benchmarks. Use cmake to define vtkSurfaceLICPainterTIME to enable benchmarks. During each update timing information is stored, it can be written to disk by calling WriteLog (defined in vtkSurfaceLICPainter).
Reimplemented in vtkPLineIntegralConvolution2D.
Definition at line 362 of file vtkLineIntegralConvolution2D.h.
virtual void vtkLineIntegralConvolution2D::EndTimerEvent | ( | const char * | ) | [inline, protected, virtual] |
Methods used for parallel benchmarks. Use cmake to define vtkSurfaceLICPainterTIME to enable benchmarks. During each update timing information is stored, it can be written to disk by calling WriteLog (defined in vtkSurfaceLICPainter).
Reimplemented in vtkPLineIntegralConvolution2D.
Definition at line 363 of file vtkLineIntegralConvolution2D.h.
vtkPainterCommunicator* vtkLineIntegralConvolution2D::Comm [protected] |
Definition at line 367 of file vtkLineIntegralConvolution2D.h.
Definition at line 369 of file vtkLineIntegralConvolution2D.h.
vtkFrameBufferObject2* vtkLineIntegralConvolution2D::FBO [protected] |
Definition at line 370 of file vtkLineIntegralConvolution2D.h.
int vtkLineIntegralConvolution2D::ShadersNeedBuild [protected] |
Definition at line 372 of file vtkLineIntegralConvolution2D.h.
vtkShaderProgram2* vtkLineIntegralConvolution2D::VTShader [protected] |
Definition at line 373 of file vtkLineIntegralConvolution2D.h.
Definition at line 374 of file vtkLineIntegralConvolution2D.h.
Definition at line 375 of file vtkLineIntegralConvolution2D.h.
Definition at line 376 of file vtkLineIntegralConvolution2D.h.
vtkShaderProgram2* vtkLineIntegralConvolution2D::EEShader [protected] |
Definition at line 377 of file vtkLineIntegralConvolution2D.h.
vtkShaderProgram2* vtkLineIntegralConvolution2D::CEShader [protected] |
Definition at line 378 of file vtkLineIntegralConvolution2D.h.
vtkShaderProgram2* vtkLineIntegralConvolution2D::AAHShader [protected] |
Definition at line 379 of file vtkLineIntegralConvolution2D.h.
vtkShaderProgram2* vtkLineIntegralConvolution2D::AAVShader [protected] |
Definition at line 380 of file vtkLineIntegralConvolution2D.h.
int vtkLineIntegralConvolution2D::NumberOfSteps [protected] |
Definition at line 382 of file vtkLineIntegralConvolution2D.h.
double vtkLineIntegralConvolution2D::StepSize [protected] |
Definition at line 383 of file vtkLineIntegralConvolution2D.h.
int vtkLineIntegralConvolution2D::EnhancedLIC [protected] |
Definition at line 384 of file vtkLineIntegralConvolution2D.h.
int vtkLineIntegralConvolution2D::EnhanceContrast [protected] |
Definition at line 385 of file vtkLineIntegralConvolution2D.h.
Definition at line 386 of file vtkLineIntegralConvolution2D.h.
Definition at line 387 of file vtkLineIntegralConvolution2D.h.
int vtkLineIntegralConvolution2D::AntiAlias [protected] |
Definition at line 388 of file vtkLineIntegralConvolution2D.h.
Definition at line 389 of file vtkLineIntegralConvolution2D.h.
double vtkLineIntegralConvolution2D::MaskThreshold [protected] |
Definition at line 390 of file vtkLineIntegralConvolution2D.h.
int vtkLineIntegralConvolution2D::TransformVectors [protected] |
Definition at line 391 of file vtkLineIntegralConvolution2D.h.
int vtkLineIntegralConvolution2D::NormalizeVectors [protected] |
Definition at line 392 of file vtkLineIntegralConvolution2D.h.
int vtkLineIntegralConvolution2D::ComponentIds[2] [protected] |
Definition at line 393 of file vtkLineIntegralConvolution2D.h.
double vtkLineIntegralConvolution2D::MaxNoiseValue [protected] |
Definition at line 394 of file vtkLineIntegralConvolution2D.h.