Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

vtkImageBlend Class Reference

#include <vtkImageBlend.h>

Inheritance diagram for vtkImageBlend:

Inheritance graph
[legend]
Collaboration diagram for vtkImageBlend:

Collaboration graph
[legend]
List of all members.

Detailed Description

blend images together using alpha or opacity

vtkImageBlend takes L, LA, RGB, or RGBA images as input and blends them according to the alpha values and/or the opacity setting for each input.

The spacing, origin, extent, and number of components of the output are the same as those for the first input. If the input has an alpha component, then this component is copied unchanged into the output. In addition, if the first input has either one component or two components i.e. if it is either L (greyscale) or LA (greyscale + alpha) then all other inputs must also be L or LA.

Different blending modes are available:

Normal (default) : This is the standard blending mode used by OpenGL and other graphics packages. The output always has the same number of components and the same extent as the first input. The alpha value of the first input is not used in the blending computation, instead it is copied directly to the output.

 output <- input[0]
 foreach input i {
   foreach pixel px {
     r <- input[i](px)(alpha) * opacity[i]
     f <- (255 - r)
     output(px) <- output(px) * f + input(px) * r
   }
 }

Compound : Images are compounded together and each component is scaled by the sum of the alpha/opacity values. Use the CompoundThreshold method to set specify a threshold in compound mode. Pixels with opacity*alpha less or equal than this threshold are ignored. The alpha value of the first input, if present, is NOT copied to the alpha value of the output. The output always has the same number of components and the same extent as the first input.

 output <- 0
 foreach pixel px {
   sum <- 0
   foreach input i {
     r <- input[i](px)(alpha) * opacity(i)
     sum <- sum + r
     if r > threshold {
       output(px) <- output(px) + input(px) * r
     }
   }
   output(px) <- output(px) / sum
 }

Created by:
  • Gobbi, David
CVS contributions (if > 5%):
  • Gobbi, David (56%)
  • Barre, Sebastien (32%)
  • Martin, Ken (6%)
CVS logs (CVSweb):
  • .cxx (/Imaging/vtkImageBlend.cxx)
  • .h (/Imaging/vtkImageBlend.h)
Tests:
vtkImageBlend (Tests)

Definition at line 99 of file vtkImageBlend.h.

Public Types

typedef vtkImageMultipleInputFilter Superclass

Public Member Functions

virtual const char * GetClassName ()
virtual int IsA (const char *type)
void PrintSelf (ostream &os, vtkIndent indent)
void SetOpacity (int idx, double opacity)
double GetOpacity (int idx)
virtual void SetStencil (vtkImageStencilData *)
virtual vtkImageStencilDataGetStencil ()
virtual void SetBlendMode (int)
virtual int GetBlendMode ()
void SetBlendModeToNormal ()
void SetBlendModeToCompound ()
const char * GetBlendModeAsString (void)
virtual void SetCompoundThreshold (double)
virtual double GetCompoundThreshold ()

Static Public Member Functions

vtkImageBlendNew ()
int IsTypeOf (const char *type)
vtkImageBlendSafeDownCast (vtkObject *o)

Protected Member Functions

 vtkImageBlend ()
 ~vtkImageBlend ()
void ComputeInputUpdateExtent (int inExt[6], int outExt[6], int whichInput)
void ExecuteInformation ()
void ExecuteInformation (vtkImageData **, vtkImageData *)
void ThreadedExecute (vtkImageData **inDatas, vtkImageData *outData, int extent[6], int id)
void ExecuteData (vtkDataObject *output)

Protected Attributes

vtkImageStencilDataStencil
double * Opacity
int OpacityArrayLength
int BlendMode
double CompoundThreshold
int DataWasPassed


Member Typedef Documentation

typedef vtkImageMultipleInputFilter vtkImageBlend::Superclass
 

Reimplemented from vtkImageMultipleInputFilter.

Definition at line 103 of file vtkImageBlend.h.


Constructor & Destructor Documentation

vtkImageBlend::vtkImageBlend  )  [protected]
 

vtkImageBlend::~vtkImageBlend  )  [protected]
 


Member Function Documentation

vtkImageBlend* vtkImageBlend::New  )  [static]
 

Create an object with Debug turned off, modified time initialized to zero, and reference counting on.

Reimplemented from vtkAlgorithm.

virtual const char* vtkImageBlend::GetClassName  )  [virtual]
 

Reimplemented from vtkImageMultipleInputFilter.

int vtkImageBlend::IsTypeOf const char *  type  )  [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 vtkTypeRevisionMacro found in vtkSetGet.h.

Reimplemented from vtkImageMultipleInputFilter.

virtual int vtkImageBlend::IsA const char *  type  )  [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 vtkTypeRevisionMacro found in vtkSetGet.h.

Reimplemented from vtkImageMultipleInputFilter.

vtkImageBlend* vtkImageBlend::SafeDownCast vtkObject o  )  [static]
 

Reimplemented from vtkImageMultipleInputFilter.

void vtkImageBlend::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 vtkImageMultipleInputFilter.

void vtkImageBlend::SetOpacity int  idx,
double  opacity
 

Set the opacity of an input image: the alpha values of the image are multiplied by the opacity. The opacity of image idx=0 is ignored.

double vtkImageBlend::GetOpacity int  idx  ) 
 

Set the opacity of an input image: the alpha values of the image are multiplied by the opacity. The opacity of image idx=0 is ignored.

virtual void vtkImageBlend::SetStencil vtkImageStencilData  )  [virtual]
 

Set a stencil to apply when blending the data.

virtual vtkImageStencilData* vtkImageBlend::GetStencil  )  [virtual]
 

Set a stencil to apply when blending the data.

virtual void vtkImageBlend::SetBlendMode int   )  [virtual]
 

Set the blend mode

virtual int vtkImageBlend::GetBlendMode  )  [virtual]
 

Set the blend mode

void vtkImageBlend::SetBlendModeToNormal  )  [inline]
 

Set the blend mode

Definition at line 125 of file vtkImageBlend.h.

References VTK_IMAGE_BLEND_MODE_NORMAL.

void vtkImageBlend::SetBlendModeToCompound  )  [inline]
 

Set the blend mode

Definition at line 127 of file vtkImageBlend.h.

References VTK_IMAGE_BLEND_MODE_COMPOUND.

const char * vtkImageBlend::GetBlendModeAsString void   )  [inline]
 

Get the blending mode as a descriptive string

Definition at line 170 of file vtkImageBlend.h.

References VTK_IMAGE_BLEND_MODE_COMPOUND, and VTK_IMAGE_BLEND_MODE_NORMAL.

virtual void vtkImageBlend::SetCompoundThreshold double   )  [virtual]
 

Specify a threshold in compound mode. Pixels with opacity*alpha less or equal the threshold are ignored.

virtual double vtkImageBlend::GetCompoundThreshold  )  [virtual]
 

Specify a threshold in compound mode. Pixels with opacity*alpha less or equal the threshold are ignored.

void vtkImageBlend::ComputeInputUpdateExtent int  inExt[6],
int  outExt[6],
int  whichInput
[protected, virtual]
 

Reimplemented from vtkImageMultipleInputFilter.

void vtkImageBlend::ExecuteInformation  )  [inline, protected, virtual]
 

Reimplemented from vtkImageMultipleInputFilter.

Definition at line 146 of file vtkImageBlend.h.

References vtkImageMultipleInputFilter::ExecuteInformation().

void vtkImageBlend::ExecuteInformation vtkImageData **  ,
vtkImageData
[protected, virtual]
 

Reimplemented from vtkImageMultipleInputFilter.

void vtkImageBlend::ThreadedExecute vtkImageData **  inDatas,
vtkImageData outData,
int  extent[6],
int  id
[protected, 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 from vtkImageMultipleInputFilter.

void vtkImageBlend::ExecuteData vtkDataObject output  )  [protected, virtual]
 

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 vtkImageMultipleInputFilter.


Member Data Documentation

vtkImageStencilData* vtkImageBlend::Stencil [protected]
 

Definition at line 158 of file vtkImageBlend.h.

double* vtkImageBlend::Opacity [protected]
 

Definition at line 159 of file vtkImageBlend.h.

int vtkImageBlend::OpacityArrayLength [protected]
 

Definition at line 160 of file vtkImageBlend.h.

int vtkImageBlend::BlendMode [protected]
 

Definition at line 161 of file vtkImageBlend.h.

double vtkImageBlend::CompoundThreshold [protected]
 

Definition at line 162 of file vtkImageBlend.h.

int vtkImageBlend::DataWasPassed [protected]
 

Definition at line 163 of file vtkImageBlend.h.


The documentation for this class was generated from the following file: