ITK
4.3.0
Insight Segmentation and Registration Toolkit
|
Classes | |
class | itk::AutomaticTopologyMeshSource< TOutputMesh > |
Convenience class for generating meshes. More... | |
class | itk::BinaryMask3DMeshSource< TInputImage, TOutputMesh > |
class | itk::Mesh< TPixelType, VDimension, TMeshTraits >::BoundaryAssignmentIdentifier |
class | itk::ConnectedRegionsMeshFilter< TInputMesh, TOutputMesh > |
Extract portions of a mesh that are connected at vertices. More... | |
class | itk::AutomaticTopologyMeshSource< TOutputMesh >::IdentifierArrayEqualsFunction |
class | itk::AutomaticTopologyMeshSource< TOutputMesh >::IdentifierArrayHashFunction |
class | itk::ImageToMeshFilter< TInputImage, TOutputMesh > |
ImageToMeshFilter is the base class for all process objects that output Mesh data and require image data as input. Specifically, this class defines the SetInput() method for defining the input to a filter. More... | |
class | itk::ImageToParametricSpaceFilter< TInputImage, TOutputMesh > |
Generate a mesh of parametric space from input images. More... | |
class | itk::InteriorExteriorMeshFilter< TInputMesh, TOutputMesh, TSpatialFunction > |
InteriorExteriorMeshFilter takes an itk::Mesh and extracts from it a Sub-Mesh such that all its points Evaluate > 0 in an itk::SpatialFunction provided by the user. More... | |
class | itk::Mesh< TPixelType, VDimension, TMeshTraits > |
Implements the N-dimensional mesh structure. More... | |
class | itk::MeshRegion |
A mesh region represents an unstructured region of data. More... | |
class | itk::MeshSource< TOutputMesh > |
Base class for all process objects that output mesh data. More... | |
class | itk::MeshToMeshFilter< TInputMesh, TOutputMesh > |
MeshToMeshFilter is the base class for all process objects that output mesh data, and require mesh data as input. Specifically, this class defines the SetInput() method for defining the input to a filter. More... | |
class | itk::ParametricSpaceToImageSpaceMeshFilter< TInputMesh, TOutputMesh > |
ParametricSpaceToImageSpaceMeshFilter takes an itk::Mesh on which the point Data is expected to contain itk::Index of itk::Image pixels associated with each point of the Mesh, and construct with them a new mesh whose points are in the coordinates of those pixels. More... | |
class | itk::RegularSphereMeshSource< TOutputMesh > |
Inputs are the center of the mesh, the scale (radius in each dimension) of the mesh and a resolution parameter, which corresponds to the recursion depth whlie creating a spherical triangle mesh. More... | |
class | itk::SimplexMeshVolumeCalculator< TInputMesh >::SimplexCellVisitor |
class | itk::SimplexMeshToTriangleMeshFilter< TInputMesh, TOutputMesh >::SimplexCellVisitor |
class | itk::SimplexMeshAdaptTopologyFilter< TInputMesh, TOutputMesh >::SimplexCellVisitor |
class | itk::SimplexMesh< TPixelType, VDimension, TMeshTraits > |
The class represents a 2-simplex mesh. More... | |
class | itk::SimplexMeshAdaptTopologyFilter< TInputMesh, TOutputMesh > |
This filter changes the topology of a 2-simplex mesh. More... | |
class | itk::SimplexMeshGeometry |
handle geometric properties for vertices of a simplx mesh More... | |
class | itk::SimplexMeshToTriangleMeshFilter< TInputMesh, TOutputMesh > |
This filter converts a 2-simplex mesh into a triangle mesh. More... | |
class | itk::SimplexMeshVolumeCalculator< TInputMesh > |
Adapted from itkSimplexMeshToTriangleFilter to calculate the volume of a simplex mesh using the barycenters and normals. call Compute() to calculate the volume and GetVolume() to get the value. For an example see itkDeformableSimplexMesh3DFilter.cxx (Thomas Boettger. Division Medical and Biological Informatics, German Cancer Research Center, Heidelberg.) More... | |
class | itk::SphereMeshSource< TOutputMesh > |
Input the center and resolutions in 2 directions(verizon and horizon) to create a sphere-like deformable model. The cell on the surface is in the shape of triangular. More parameters are added to make the sphere mesh have global and local deform ability. More... | |
class | itk::TransformMeshFilter< TInputMesh, TOutputMesh, TTransform > |
TransformMeshFilter applies a transform to all the points of a mesh. More... | |
class | itk::TriangleMeshToBinaryImageFilter< TInputMesh, TOutputImage > |
3D Rasterization algorithm Courtesy of Dr David Gobbi of Atamai Inc. More... | |
class | itk::TriangleMeshToSimplexMeshFilter< TInputMesh, TOutputMesh > |
This filter converts a triangle mesh into a 2-simplex mesh. More... | |
class | itk::VTKPolyDataReader< TOutputMesh > |
Reads a vtkPolyData file and create an itkMesh. More... | |
class | itk::VTKPolyDataWriter< TInputMesh > |
Writes an itkMesh to a file in VTK file format. More... | |
class | itk::WarpMeshFilter< TInputMesh, TOutputMesh, TDisplacementField > |
WarpMeshFilter applies a deformation field to all the points of a mesh. The deformation field is represented as an image of Vectors. More... | |
The Mesh module contains the datastructures required for representing N-Dimensional meshes in ITK. The Mesh class is heavily templated and very generic. It can represent a K-Complex in an N-Dimensional space. Many of the Mesh properties are defined in Traits helper classes, and then propagate to the components of the Mesh. These classes are typically used for representing the outcome of image segmentation.