Documentation for vtkImageConnector

vtkImageConnector - Create a binary image of a sphere.

Super Class: vtkObject

Description:

vtkImageConnector is a helper class for connectivity filters. It is not meant to be used directly. It implements a stack and breadth first search necessary for some connectivity filters. Filtered axes sets the dimensionality of the neighbor comparison, and cannot be more than three dimensions. As implemented, only voxels which share faces are considered neighbors.

 

Methods:

void vtkImageConnector ()
void vtkImageConnector ()
static vtkImageConnector *New ()
const char *GetClassName ()
void PrintSelf (unknown & ,vtkIndent )
void RemoveAllSeeds ()
void SetConnectedValue (unsigned char )
unsigned char GetConnectedValue ()
void SetUnconnectedValue (unsigned char )
unsigned char GetUnconnectedValue ()
void MarkData (vtkImageData * ,int ,int )
vtkImageConnectorSeed *PopSeed ()

 

Detailed Method Descriptions:

Values used by the MarkRegion method

void SetConnectedValue (unsigned char )
unsigned char GetConnectedValue ()
void SetUnconnectedValue (unsigned char )
unsigned char GetUnconnectedValue ()

Input a data of 0's and "UnconnectedValue"s. Seeds of this object are used to find connected pixels. All pixels connected to seeds are set to ConnectedValue. The data has to be unsigned char.

void MarkData (vtkImageData * ,int ,int )