ITK  4.8.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Member Functions | Private Member Functions | Private Attributes | List of all members
itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet > Class Template Reference

#include <itkFEMScatteredDataPointSetToImageFilter.h>

+ Inheritance diagram for itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >:
+ Collaboration diagram for itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >:

Detailed Description

template<typename TInputPointSet, typename TInputMesh, typename TOutputImage, typename TInputConfidencePointSet, typename TInputTensorPointSet>
class itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >

Scattered data approximation to interpolation in the presence of outliers.

Given a 2- or 3-D scattered and noisy data, this filter is able to approximate the data while rejecting outliers, and then it advances toward interpolation.

This filter also takes the confidence and structrual information into account, if users can provide a scalar to represent the confidence and a tensor to represent the structural information for each feature point.

This filter requires a point set, of which each point is associated with a 2-D or 3-D displacement, as input, and outputs a deformation field. Two optional point sets are supported. Confidence point set: this point set defines the confidence associated with each point, which will make the solver behavior like a weighted Least Square Tensor point set: this point set defines a tensor associated with each point, such as a structural tensor.

The purpose of this filter is to facilitate the use of the FEMRobustSolver, which does the concrete work on finding the solution. See FEMRobustSolver for details.

*
* const unsigned int ParametricDimension = 3;
* const unsigned int DataDimension = 3;
*
* typedef int PixelType;
* typedef float RealType;
* typedef itk::Matrix<RealType, DataDimension,
* DataDimension> MatrixType;
* typedef itk::PointSet <VectorType,
* ParametricDimension> PointSetType;
*
* typedef itk::PointSet <MatrixType,
* ParametricDimension> TensorPointSetType;
*
*
*
*
* typedef itk::FEMScatteredDataPointSetToImageFilter
* <PointSetType, MeshType, VectorImageType,
* ConfidencePointSetType, TensorPointSetType> FilterType;
*
* FilterType::Pointer filter = FilterType::New();
*
* filter->SetInput(displacementPointSet);
* filter->SetConfidencePointSet(confidencePointSet); //optional
* filter->SetTensorPointSet(tensorPointSet); //optional
* filter->SetMesh(aITKMesh);
* filter->Update();
*
* DeformationField::Pointer = filter->GetOutput();
*
*
Author
Yixun Liu
REFERENCE
O. Clatz, H. Delingette, I.-F. Talos, A. Golby, R. Kikinis, F. Jolesz, N. Ayache, and S. Warfield, "Robust non-rigid registration to capture brain shift from intra-operative MRI", IEEE Trans. Med. Imag., 24(11);1417-27, 2005.
REFERENCE
Yixun Liu, Andriy Fedorov, Ron Kikinis and Nikos Chrisochoides, "Real-time Non-rigidRegistration of Medical Images on a Cooperative Parallel Architecture", IEEE International Conference on Bioinformatics & Biomedicine, pp. 401-404, November 2009.
See Also
FEMRobustSolver

Definition at line 127 of file itkFEMScatteredDataPointSetToImageFilter.h.

Public Types

typedef CellType::CellAutoPointer CellAutoPointer
 
typedef
CellsContainer::ConstIterator 
CellIterator
 
typedef MeshType::CellsContainer CellsContainer
 
typedef MeshType::CellType CellType
 
typedef
ConfidencePointSetType::PointDataContainer 
ConfidencePointDataContainerType
 
typedef
ConfidencePointSetType::PixelType 
ConfidencePointDataType
 
typedef TInputConfidencePointSet ConfidencePointSetType
 
typedef
ConfidencePointSetType::PointsContainer::ConstIterator 
ConfidencePointsIterator
 
typedef SmartPointer< const SelfConstPointer
 
typedef ContinuousIndex
< SpacePrecisionType,
ImageDimension
ContinuousIndexType
 
typedef
FEMObjectType::ElementContainerType 
ElementContainerType
 
typedef
Element2DC0LinearQuadrilateralStrain 
FEM2DQuadrilateralType
 
typedef
Element2DC0LinearTriangularStrain 
FEM2DTriangleType
 
typedef
Element3DC0LinearHexahedronStrain 
FEMHexahedronType
 
typedef Element::MatrixType FEMMatrixType
 
typedef FEMObject< ImageDimensionFEMObjectType
 
typedef RobustSolver
< ImageDimension
FEMSolverType
 
typedef
Element3DC0LinearTetrahedronStrain 
FEMTetrahedronType
 
typedef Element::VectorType FEMVectorType
 
typedef HexahedronCell< CellTypeHexahedronType
 
typedef
ImageToRectilinearFEMObjectFilter
< ImageType
ImageToRectilinearFEMObjectFilterType
 
typedef TOutputImage ImageType
 
typedef ImageType::IndexType IndexType
 
typedef
FEMObjectType::LoadContainerType 
LoadContainerType
 
typedef LoadNoisyLandmark LoadType
 
typedef
FEMObjectType::MaterialContainerType 
MaterialContainerType
 
typedef MaterialType::Pointer MaterialPointerType
 
typedef MaterialLinearElasticity MaterialType
 
typedef TInputMesh MeshType
 
typedef
FEMObjectType::NodeContainerType 
NodeContainerType
 
typedef Element::Node NodeType
 
typedef ImageType::PixelType PixelType
 
typedef
PointSetType::PointDataContainer 
PointDataContainerType
 
typedef
PointDataContainerType::ConstIterator 
PointDataIterator
 
typedef PointSetType::PixelType PointDataType
 
typedef SmartPointer< SelfPointer
 
typedef CellType::PointIdIterator PointIdIterator
 
typedef
PointSetType::PointsContainer 
PointsContainer
 
typedef TInputPointSet PointSetType
 
typedef
PointsContainer::ConstIterator 
PointsIterator
 
typedef PointSetType::PointType PointType
 
typedef QuadrilateralCell
< CellType
QuadrilateralType
 
typedef ImageType::RegionType RegionType
 
typedef
FEMScatteredDataPointSetToImageFilter 
Self
 
typedef ImageType::SizeType SizeType
 
typedef ImageType::SpacingType SpacingType
 
typedef PointSetToImageFilter
< TInputPointSet, TOutputImage > 
Superclass
 
typedef
TensorPointSetType::PointDataContainer 
TensorPointDataContainerType
 
typedef
TensorPointDataContainerType::Iterator 
TensorPointDataIterator
 
typedef
TensorPointSetType::PixelType 
TensorPointDataType
 
typedef TInputTensorPointSet TensorPointSetType
 
typedef
TensorPointSetType::PointsContainer::ConstIterator 
TensorPointsIterator
 
typedef TetrahedronCell< CellTypeTetrahedronType
 
typedef TriangleCell< CellTypeTriangleType
 
- Public Types inherited from itk::PointSetToImageFilter< TInputPointSet, TOutputImage >
typedef SmartPointer< const SelfConstPointer
 
typedef TOutputImage::DirectionType DirectionType
 
typedef
InputPointSetType::ConstPointer 
InputPointSetConstPointer
 
typedef InputPointSetType::Pointer InputPointSetPointer
 
typedef TInputPointSet InputPointSetType
 
typedef OutputImageType::Pointer OutputImagePointer
 
typedef
Superclass::OutputImageRegionType 
OutputImageRegionType
 
typedef TOutputImage OutputImageType
 
typedef SmartPointer< SelfPointer
 
typedef TOutputImage::PointType PointType
 
typedef PointSetToImageFilter Self
 
typedef TOutputImage::SizeType SizeType
 
typedef TOutputImage::SpacingType SpacingType
 
typedef ImageSource< TOutputImage > Superclass
 
typedef OutputImageType::ValueType ValueType
 
- Public Types inherited from itk::ImageSource< TOutputImage >
typedef SmartPointer< const SelfConstPointer
 
typedef
Superclass::DataObjectIdentifierType 
DataObjectIdentifierType
 
typedef DataObject::Pointer DataObjectPointer
 
typedef
Superclass::DataObjectPointerArraySizeType 
DataObjectPointerArraySizeType
 
typedef OutputImageType::PixelType OutputImagePixelType
 
typedef OutputImageType::Pointer OutputImagePointer
 
typedef OutputImageType::RegionType OutputImageRegionType
 
typedef TOutputImage OutputImageType
 
typedef SmartPointer< SelfPointer
 
typedef ImageSource Self
 
typedef ProcessObject Superclass
 
- Public Types inherited from itk::ProcessObject
typedef SmartPointer< const SelfConstPointer
 
typedef
DataObject::DataObjectIdentifierType 
DataObjectIdentifierType
 
typedef DataObject::Pointer DataObjectPointer
 
typedef std::vector
< DataObjectPointer
DataObjectPointerArray
 
typedef
DataObjectPointerArray::size_type 
DataObjectPointerArraySizeType
 
typedef std::vector
< DataObjectIdentifierType
NameArray
 
typedef SmartPointer< SelfPointer
 
typedef ProcessObject Self
 
typedef Object Superclass
 
- Public Types inherited from itk::Object
typedef SmartPointer< const SelfConstPointer
 
typedef SmartPointer< SelfPointer
 
typedef Object Self
 
typedef LightObject Superclass
 
- Public Types inherited from itk::LightObject
typedef SmartPointer< const SelfConstPointer
 
typedef SmartPointer< SelfPointer
 
typedef LightObject Self
 

Public Member Functions

virtual ::itk::LightObject::Pointer CreateAnother () const
 
virtual const FEMSolverTypeGetFEMSolver () const
 
virtual const MeshTypeGetMesh () const
 
virtual FEMSolverTypeGetModifiableFEMSolver ()
 
virtual MeshTypeGetModifiableMesh ()
 
virtual const SizeTypeGetNumberOfElements () const
 
virtual void SetConfidencePointSet (const ConfidencePointSetType *_arg)
 
virtual void SetFEMSolver (FEMSolverType *_arg)
 
virtual void SetMesh (MeshType *_arg)
 
virtual void SetTensorPointSet (const TensorPointSetType *_arg)
 
virtual const ContinuousIndexTypeGetPixelsPerElement () const
 
virtual void SetPixelsPerElement (ContinuousIndexType _arg)
 
void SetElementSpacing (const SpacingType &elementSpacing)
 
virtual const SpacingTypeGetSpacingPerElement () const
 
- Public Member Functions inherited from itk::PointSetToImageFilter< TInputPointSet, TOutputImage >
const InputPointSetTypeGetInput ()
 
const InputPointSetTypeGetInput (unsigned int idx)
 
virtual const char * GetNameOfClass () const
 
virtual const PointTypeGetOrigin () const
 
virtual const SpacingTypeGetSpacing () const
 
virtual void SetInput (const InputPointSetType *pointset)
 
virtual void SetInput (unsigned int, const InputPointSetType *pointset)
 
virtual void SetOrigin (const float *origin)
 
virtual void SetSpacing (const float *spacing)
 
virtual void SetSpacing (SpacingType _arg)
 
virtual void SetSpacing (const double *spacing)
 
virtual void SetDirection (DirectionType _arg)
 
virtual const DirectionTypeGetDirection () const
 
virtual void SetOrigin (PointType _arg)
 
virtual void SetOrigin (const double *origin)
 
virtual void SetInsideValue (ValueType _arg)
 
virtual ValueType GetInsideValue () const
 
virtual void SetOutsideValue (ValueType _arg)
 
virtual ValueType GetOutsideValue () const
 
virtual void SetSize (SizeType _arg)
 
virtual SizeType GetSize () const
 
- Public Member Functions inherited from itk::ImageSource< TOutputImage >
OutputImageTypeGetOutput (unsigned int idx)
 
virtual void GraftNthOutput (unsigned int idx, DataObject *output)
 
virtual void GraftOutput (const DataObjectIdentifierType &key, DataObject *output)
 
OutputImageTypeGetOutput ()
 
const OutputImageTypeGetOutput () const
 
virtual void GraftOutput (DataObject *output)
 
virtual
ProcessObject::DataObjectPointer 
MakeOutput (ProcessObject::DataObjectPointerArraySizeType idx) override
 
virtual
ProcessObject::DataObjectPointer 
MakeOutput (const ProcessObject::DataObjectIdentifierType &) override
 
- Public Member Functions inherited from itk::ProcessObject
virtual void AbortGenerateDataOff ()
 
virtual void AbortGenerateDataOn ()
 
virtual void EnlargeOutputRequestedRegion (DataObject *)
 
virtual const bool & GetAbortGenerateData () const
 
DataObjectPointerArray GetIndexedInputs ()
 
DataObjectPointerArray GetIndexedOutputs ()
 
NameArray GetInputNames () const
 
DataObjectPointerArray GetInputs ()
 
MultiThreader * GetMultiThreader () const
 
DataObjectPointerArraySizeType GetNumberOfIndexedInputs () const
 
DataObjectPointerArraySizeType GetNumberOfIndexedOutputs () const
 
DataObjectPointerArraySizeType GetNumberOfInputs () const
 
DataObjectPointerArraySizeType GetNumberOfOutputs () const
 
virtual
DataObjectPointerArraySizeType 
GetNumberOfValidRequiredInputs () const
 
NameArray GetOutputNames () const
 
DataObjectPointerArray GetOutputs ()
 
virtual const float & GetProgress () const
 
NameArray GetRequiredInputNames () const
 
bool HasInput (const DataObjectIdentifierType &key) const
 
bool HasOutput (const DataObjectIdentifierType &key) const
 
virtual void PrepareOutputs ()
 
virtual void PropagateRequestedRegion (DataObject *output)
 
virtual void ResetPipeline ()
 
virtual void SetAbortGenerateData (bool _arg)
 
virtual void Update ()
 
virtual void UpdateLargestPossibleRegion ()
 
virtual void UpdateOutputData (DataObject *output)
 
virtual void UpdateOutputInformation ()
 
void UpdateProgress (float progress)
 
void SetProgress (float progress)
 
virtual void SetReleaseDataFlag (bool flag)
 
virtual bool GetReleaseDataFlag () const
 
void ReleaseDataFlagOn ()
 
void ReleaseDataFlagOff ()
 
virtual void SetReleaseDataBeforeUpdateFlag (bool _arg)
 
virtual const bool & GetReleaseDataBeforeUpdateFlag () const
 
virtual void ReleaseDataBeforeUpdateFlagOn ()
 
virtual void ReleaseDataBeforeUpdateFlagOff ()
 
virtual void SetNumberOfThreads (ThreadIdType _arg)
 
virtual const ThreadIdTypeGetNumberOfThreads () const
 
- Public Member Functions inherited from itk::Object
unsigned long AddObserver (const EventObject &event, Command *)
 
unsigned long AddObserver (const EventObject &event, Command *) const
 
virtual void DebugOff () const
 
virtual void DebugOn () const
 
CommandGetCommand (unsigned long tag)
 
bool GetDebug () const
 
MetaDataDictionaryGetMetaDataDictionary ()
 
const MetaDataDictionaryGetMetaDataDictionary () const
 
virtual ModifiedTimeType GetMTime () const
 
virtual const TimeStampGetTimeStamp () const
 
bool HasObserver (const EventObject &event) const
 
void InvokeEvent (const EventObject &)
 
void InvokeEvent (const EventObject &) const
 
virtual void Modified () const
 
virtual void Register () const override
 
void RemoveAllObservers ()
 
void RemoveObserver (unsigned long tag)
 
void SetDebug (bool debugFlag) const
 
void SetMetaDataDictionary (const MetaDataDictionary &rhs)
 
virtual void SetReferenceCount (int) override
 
virtual void UnRegister () const noexceptoverride
 
virtual void SetObjectName (std::string _arg)
 
virtual const std::string & GetObjectName () const
 
- Public Member Functions inherited from itk::LightObject
virtual void Delete ()
 
virtual int GetReferenceCount () const
 
 itkCloneMacro (Self)
 
void Print (std::ostream &os, Indent indent=0) const
 

Static Public Member Functions

static Pointer New ()
 
- Static Public Member Functions inherited from itk::PointSetToImageFilter< TInputPointSet, TOutputImage >
static Pointer New ()
 
- Static Public Member Functions inherited from itk::Object
static bool GetGlobalWarningDisplay ()
 
static void GlobalWarningDisplayOff ()
 
static void GlobalWarningDisplayOn ()
 
static Pointer New ()
 
static void SetGlobalWarningDisplay (bool flag)
 
- Static Public Member Functions inherited from itk::LightObject
static void BreakOnError ()
 
static Pointer New ()
 

Static Public Attributes

static const unsigned int ImageDimension = TOutputImage::ImageDimension
 
- Static Public Attributes inherited from itk::PointSetToImageFilter< TInputPointSet, TOutputImage >
static const unsigned int InputPointSetDimension = InputPointSetType::PointDimension
 
static const unsigned int OutputImageDimension = TOutputImage::ImageDimension
 
- Static Public Attributes inherited from itk::ImageSource< TOutputImage >
static const unsigned int OutputImageDimension = TOutputImage::ImageDimension
 

Protected Member Functions

 FEMScatteredDataPointSetToImageFilter ()
 
void Generate2DQuadrilateralMesh ()
 
void Generate3DHexahedralMesh ()
 
void GenerateData () override
 
void GenerateRectilinearMesh ()
 
void InitializeElements (FEMObjectType *femObject)
 
void InitializeFEMObject (FEMObjectType *femObject)
 
void InitializeLoads (FEMObjectType *femObject)
 
void InitializeMaterials (FEMObjectType *femObject)
 
void InitializeNodes (FEMObjectType *femObject)
 
void PrintSelf (std::ostream &os, Indent indent) const override
 
void ProduceDeformationField ()
 
virtual ~FEMScatteredDataPointSetToImageFilter ()
 
- Protected Member Functions inherited from itk::PointSetToImageFilter< TInputPointSet, TOutputImage >
virtual void GenerateOutputInformation () override
 
 PointSetToImageFilter ()
 
 ~PointSetToImageFilter ()
 
- Protected Member Functions inherited from itk::ImageSource< TOutputImage >
virtual void AfterThreadedGenerateData ()
 
virtual void AllocateOutputs ()
 
virtual void BeforeThreadedGenerateData ()
 
virtual const
ImageRegionSplitterBase
GetImageRegionSplitter () const
 
 ImageSource ()
 
virtual unsigned int SplitRequestedRegion (unsigned int i, unsigned int pieces, OutputImageRegionType &splitRegion)
 
virtual void ThreadedGenerateData (const OutputImageRegionType &outputRegionForThread, ThreadIdType threadId)
 
virtual ~ImageSource ()
 
- Protected Member Functions inherited from itk::ProcessObject
virtual void AddInput (DataObject *input)
 
virtual void AddOutput (DataObject *output)
 
bool AddRequiredInputName (const DataObjectIdentifierType &)
 
bool AddRequiredInputName (const DataObjectIdentifierType &, DataObjectPointerArraySizeType idx)
 
virtual void CacheInputReleaseDataFlags ()
 
virtual void GenerateInputRequestedRegion ()
 
virtual void GenerateOutputRequestedRegion (DataObject *output)
 
DataObjectGetInput (const DataObjectIdentifierType &key)
 
const DataObjectGetInput (const DataObjectIdentifierType &key) const
 
virtual const
DataObjectPointerArraySizeType
GetNumberOfRequiredInputs () const
 
virtual const
DataObjectPointerArraySizeType
GetNumberOfRequiredOutputs () const
 
bool IsIndexedInputName (const DataObjectIdentifierType &) const
 
bool IsIndexedOutputName (const DataObjectIdentifierType &) const
 
bool IsRequiredInputName (const DataObjectIdentifierType &) const
 
 itkLegacyMacro (virtual void RemoveOutput(DataObject *output))
 
 itkLegacyMacro (void SetNumberOfOutputs(DataObjectPointerArraySizeType num))
 
 itkLegacyMacro (virtual void RemoveInput(DataObject *input))
 
 itkLegacyMacro (void SetNumberOfInputs(DataObjectPointerArraySizeType num))
 
DataObjectPointerArraySizeType MakeIndexFromInputName (const DataObjectIdentifierType &name) const
 
DataObjectPointerArraySizeType MakeIndexFromOutputName (const DataObjectIdentifierType &name) const
 
DataObjectIdentifierType MakeNameFromInputIndex (DataObjectPointerArraySizeType idx) const
 
DataObjectIdentifierType MakeNameFromOutputIndex (DataObjectPointerArraySizeType idx) const
 
virtual void PopBackInput ()
 
virtual void PopFrontInput ()
 
 ProcessObject ()
 
virtual void PropagateResetPipeline ()
 
virtual void PushBackInput (const DataObject *input)
 
virtual void PushFrontInput (const DataObject *input)
 
virtual void ReleaseInputs ()
 
virtual void RemoveInput (const DataObjectIdentifierType &key)
 
virtual void RemoveInput (DataObjectPointerArraySizeType)
 
virtual void RemoveOutput (const DataObjectIdentifierType &key)
 
virtual void RemoveOutput (DataObjectPointerArraySizeType idx)
 
bool RemoveRequiredInputName (const DataObjectIdentifierType &)
 
virtual void RestoreInputReleaseDataFlags ()
 
virtual void SetInput (const DataObjectIdentifierType &key, DataObject *input)
 
virtual void SetNthInput (DataObjectPointerArraySizeType num, DataObject *input)
 
virtual void SetNthOutput (DataObjectPointerArraySizeType num, DataObject *output)
 
void SetNumberOfIndexedInputs (DataObjectPointerArraySizeType num)
 
void SetNumberOfIndexedOutputs (DataObjectPointerArraySizeType num)
 
virtual void SetNumberOfRequiredInputs (DataObjectPointerArraySizeType)
 
virtual void SetNumberOfRequiredOutputs (DataObjectPointerArraySizeType _arg)
 
virtual void SetOutput (const DataObjectIdentifierType &key, DataObject *output)
 
virtual void SetPrimaryInput (DataObject *input)
 
virtual void SetPrimaryOutput (DataObject *output)
 
void SetRequiredInputNames (const NameArray &)
 
virtual void VerifyInputInformation ()
 
virtual void VerifyPreconditions ()
 
 ~ProcessObject ()
 
DataObjectGetInput (DataObjectPointerArraySizeType idx)
 
const DataObjectGetInput (DataObjectPointerArraySizeType idx) const
 
DataObjectGetPrimaryInput ()
 
const DataObjectGetPrimaryInput () const
 
virtual void SetPrimaryInputName (const DataObjectIdentifierType &key)
 
virtual const char * GetPrimaryInputName (void) const
 
DataObjectGetOutput (const DataObjectIdentifierType &key)
 
const DataObjectGetOutput (const DataObjectIdentifierType &key) const
 
virtual void SetPrimaryOutputName (const DataObjectIdentifierType &key)
 
virtual const char * GetPrimaryOutputName (void) const
 
DataObjectGetOutput (DataObjectPointerArraySizeType idx)
 
const DataObjectGetOutput (DataObjectPointerArraySizeType idx) const
 
DataObjectGetPrimaryOutput ()
 
const DataObjectGetPrimaryOutput () const
 
- Protected Member Functions inherited from itk::Object
 Object ()
 
bool PrintObservers (std::ostream &os, Indent indent) const
 
virtual void SetTimeStamp (const TimeStamp &time)
 
virtual ~Object ()
 
- Protected Member Functions inherited from itk::LightObject
virtual LightObject::Pointer InternalClone () const
 
 LightObject ()
 
virtual void PrintHeader (std::ostream &os, Indent indent) const
 
virtual void PrintTrailer (std::ostream &os, Indent indent) const
 
virtual ~LightObject ()
 

Private Member Functions

 FEMScatteredDataPointSetToImageFilter (const Self &)
 
void operator= (const Self &)
 

Private Attributes

ConfidencePointSetType::ConstPointer m_ConfidencePointSet
 
FEMSolverType::ConstPointer m_FEMDeformedObject
 
FEMObjectType::Pointer m_FEMObject
 
FEMSolverType::Pointer m_FEMSolver
 
MaterialPointerType m_Material
 
MeshType::Pointer m_Mesh
 
SizeType m_NumberOfElements
 
ContinuousIndexType m_PixelsPerElement
 
SpacingType m_SpacingPerElement
 
TensorPointSetType::ConstPointer m_TensorPointSet
 

Additional Inherited Members

- Static Protected Member Functions inherited from itk::ImageSource< TOutputImage >
static const
ImageRegionSplitterBase
GetGlobalDefaultSplitter ()
 
static ITK_THREAD_RETURN_TYPE ThreaderCallback (void *arg)
 
- Protected Attributes inherited from itk::PointSetToImageFilter< TInputPointSet, TOutputImage >
DirectionType m_Direction
 
ValueType m_InsideValue
 
PointType m_Origin
 
ValueType m_OutsideValue
 
SizeType m_Size
 
SpacingType m_Spacing
 
- Protected Attributes inherited from itk::ProcessObject
TimeStamp m_OutputInformationMTime
 
bool m_Updating
 
- Protected Attributes inherited from itk::LightObject
AtomicInt< int > m_ReferenceCount
 

Member Typedef Documentation

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef CellType::CellAutoPointer itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::CellAutoPointer

Definition at line 167 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef CellsContainer::ConstIterator itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::CellIterator

Definition at line 169 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef MeshType::CellsContainer itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::CellsContainer

Definition at line 168 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef MeshType::CellType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::CellType

Definition at line 166 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef ConfidencePointSetType::PointDataContainer itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::ConfidencePointDataContainerType

Definition at line 155 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef ConfidencePointSetType::PixelType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::ConfidencePointDataType

Definition at line 154 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef TInputConfidencePointSet itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::ConfidencePointSetType

Confidence point set typedef support

Definition at line 152 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef ConfidencePointSetType::PointsContainer::ConstIterator itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::ConfidencePointsIterator

Definition at line 153 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef SmartPointer<const Self> itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::ConstPointer

Definition at line 134 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef ContinuousIndex<SpacePrecisionType, ImageDimension> itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::ContinuousIndexType

Definition at line 184 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef FEMObjectType::ElementContainerType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::ElementContainerType

Definition at line 217 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef Element2DC0LinearQuadrilateralStrain itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::FEM2DQuadrilateralType

Definition at line 198 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef Element2DC0LinearTriangularStrain itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::FEM2DTriangleType

Definition at line 197 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef Element3DC0LinearHexahedronStrain itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::FEMHexahedronType

Definition at line 196 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef Element::MatrixType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::FEMMatrixType

Definition at line 212 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef FEMObject<ImageDimension> itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::FEMObjectType

FEMObject typedef support

Definition at line 189 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef RobustSolver<ImageDimension> itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::FEMSolverType

FEM solver typedef support

Definition at line 192 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef Element3DC0LinearTetrahedronStrain itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::FEMTetrahedronType

FEM element typedef support

Definition at line 195 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef Element::VectorType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::FEMVectorType

FEM element typedef support

Definition at line 211 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef HexahedronCell<CellType> itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::HexahedronType

Definition at line 174 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef ImageToRectilinearFEMObjectFilter<ImageType> itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::ImageToRectilinearFEMObjectFilterType

Definition at line 186 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef TOutputImage itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::ImageType

Image typedef support

Definition at line 178 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef ImageType::IndexType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::IndexType

Definition at line 182 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef FEMObjectType::LoadContainerType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::LoadContainerType

FEM container typedef support

Definition at line 215 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef LoadNoisyLandmark itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::LoadType

FEM Load typedef support

Definition at line 204 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef FEMObjectType::MaterialContainerType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::MaterialContainerType

Definition at line 218 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef MaterialType::Pointer itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::MaterialPointerType

Definition at line 208 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef MaterialLinearElasticity itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::MaterialType

FEM material typedef support

Definition at line 207 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef TInputMesh itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::MeshType

Mesh typedef support

Definition at line 165 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef FEMObjectType::NodeContainerType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::NodeContainerType

Definition at line 216 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef Element::Node itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::NodeType

FEM node typedef support

Definition at line 201 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef ImageType::PixelType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::PixelType

Definition at line 179 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef PointSetType::PointDataContainer itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::PointDataContainerType

Definition at line 148 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef PointDataContainerType::ConstIterator itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::PointDataIterator

Definition at line 149 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef PointSetType::PixelType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::PointDataType

Definition at line 147 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef SmartPointer<Self> itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::Pointer

Definition at line 133 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef CellType::PointIdIterator itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::PointIdIterator

Definition at line 175 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef PointSetType::PointsContainer itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::PointsContainer

Definition at line 145 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef TInputPointSet itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::PointSetType

Displacement point set typedef support

Definition at line 143 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef PointsContainer::ConstIterator itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::PointsIterator

Definition at line 146 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef PointSetType::PointType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::PointType

Definition at line 144 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef QuadrilateralCell<CellType> itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::QuadrilateralType

Definition at line 173 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef ImageType::RegionType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::RegionType

Definition at line 180 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef FEMScatteredDataPointSetToImageFilter itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::Self

Definition at line 131 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef ImageType::SizeType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::SizeType

Definition at line 181 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef ImageType::SpacingType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::SpacingType

Definition at line 183 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef PointSetToImageFilter<TInputPointSet, TOutputImage> itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::Superclass

Definition at line 132 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef TensorPointSetType::PointDataContainer itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::TensorPointDataContainerType

Definition at line 161 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef TensorPointDataContainerType::Iterator itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::TensorPointDataIterator

Definition at line 162 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef TensorPointSetType::PixelType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::TensorPointDataType

Definition at line 160 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef TInputTensorPointSet itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::TensorPointSetType

Tensor point set typedef support

Definition at line 158 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef TensorPointSetType::PointsContainer::ConstIterator itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::TensorPointsIterator

Definition at line 159 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef TetrahedronCell<CellType> itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::TetrahedronType

Definition at line 172 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
typedef TriangleCell<CellType> itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::TriangleType

Definition at line 171 of file itkFEMScatteredDataPointSetToImageFilter.h.

Constructor & Destructor Documentation

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::FEMScatteredDataPointSetToImageFilter ( )
protected
template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
virtual itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::~FEMScatteredDataPointSetToImageFilter ( )
protectedvirtual
template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::FEMScatteredDataPointSetToImageFilter ( const Self )
private

Member Function Documentation

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
virtual::itk::LightObject::Pointer itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::CreateAnother ( ) const
virtual

Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.

Reimplemented from itk::PointSetToImageFilter< TInputPointSet, TOutputImage >.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::Generate2DQuadrilateralMesh ( )
protected

Generate a 2D quadrilateral mesh

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::Generate3DHexahedralMesh ( )
protected

generate 3D hexahedral mesh

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::GenerateData ( )
overrideprotectedvirtual

Run the solver and call ProduceDeformationField to produce deformation field

Reimplemented from itk::PointSetToImageFilter< TInputPointSet, TOutputImage >.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::GenerateRectilinearMesh ( )
protected

Generate 2D/3D rectilinear mesh

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
virtual const FEMSolverType* itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::GetFEMSolver ( ) const
virtual
template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
virtual const MeshType* itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::GetMesh ( ) const
virtual
template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
virtual FEMSolverType* itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::GetModifiableFEMSolver ( )
virtual
template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
virtual MeshType* itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::GetModifiableMesh ( )
virtual
template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
virtual const SizeType& itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::GetNumberOfElements ( ) const
virtual

Get the number of element in each dimension of the generated mesh

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
virtual const ContinuousIndexType& itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::GetPixelsPerElement ( ) const
virtual

Get/Set the number of voxels/pixels in each dimension used during the mesh generation

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
virtual const SpacingType& itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::GetSpacingPerElement ( ) const
virtual

Set/Get the spacing of the rectilinear element

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::InitializeElements ( FEMObjectType femObject)
protected

Initialize Elements

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::InitializeFEMObject ( FEMObjectType femObject)
protected

Initialize FEMObject from a mesh and feature points

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::InitializeLoads ( FEMObjectType femObject)
protected

Initialize Loads

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::InitializeMaterials ( FEMObjectType femObject)
protected

Initialize Materials

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::InitializeNodes ( FEMObjectType femObject)
protected

Initialize Nodes

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
static Pointer itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::New ( )
static

Method for creation through the object factory.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::operator= ( const Self )
private
template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const
overrideprotectedvirtual

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 itk::PointSetToImageFilter< TInputPointSet, TOutputImage >.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::ProduceDeformationField ( )
protected
template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
virtual void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::SetConfidencePointSet ( const ConfidencePointSetType _arg)
virtual

Helper functions

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::SetElementSpacing ( const SpacingType elementSpacing)

Set/Get the spacing of the rectilinear element

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
virtual void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::SetFEMSolver ( FEMSolverType _arg)
virtual
template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
virtual void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::SetMesh ( MeshType _arg)
virtual
template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
virtual void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::SetPixelsPerElement ( ContinuousIndexType  _arg)
virtual

Get/Set the number of voxels/pixels in each dimension used during the mesh generation

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
virtual void itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::SetTensorPointSet ( const TensorPointSetType _arg)
virtual

Member Data Documentation

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
const unsigned int itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::ImageDimension = TOutputImage::ImageDimension
static

Extract dimension from the output image.

Definition at line 140 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
ConfidencePointSetType::ConstPointer itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::m_ConfidencePointSet
private

Definition at line 290 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
FEMSolverType::ConstPointer itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::m_FEMDeformedObject
private

Definition at line 287 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
FEMObjectType::Pointer itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::m_FEMObject
private

Definition at line 285 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
FEMSolverType::Pointer itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::m_FEMSolver
private

Definition at line 286 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
MaterialPointerType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::m_Material
private
template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
MeshType::Pointer itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::m_Mesh
private

Definition at line 288 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
SizeType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::m_NumberOfElements
private

Rectilinear mesh

Definition at line 294 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
ContinuousIndexType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::m_PixelsPerElement
private

Definition at line 295 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
SpacingType itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::m_SpacingPerElement
private

Definition at line 296 of file itkFEMScatteredDataPointSetToImageFilter.h.

template<typename TInputPointSet , typename TInputMesh , typename TOutputImage , typename TInputConfidencePointSet , typename TInputTensorPointSet >
TensorPointSetType::ConstPointer itk::fem::FEMScatteredDataPointSetToImageFilter< TInputPointSet, TInputMesh, TOutputImage, TInputConfidencePointSet, TInputTensorPointSet >::m_TensorPointSet
private

Definition at line 291 of file itkFEMScatteredDataPointSetToImageFilter.h.


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