ITK  5.0.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Static Public Member Functions | Protected Types | Protected Member Functions | Private Attributes | List of all members
itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType > Class Template Reference

#include <itkDiffusionTensor3DReconstructionImageFilter.h>

+ Inheritance diagram for itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >:
+ Collaboration diagram for itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >:

Detailed Description

template<typename TReferenceImagePixelType, typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
class itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >

This class takes as input one or more reference image (acquired in the absence of diffusion sensitizing gradients) and 'n' diffusion weighted images and their gradient directions and computes an image of tensors. (with DiffusionTensor3D as the pixel type). Once that is done, you can apply filters on this tensor image to compute FA, ADC, RGB weighted maps etc.

Inputs and Usage
There are two ways to use this class. When you have one reference image and n gradient images, you would use the class as
filter->SetReferenceImage( image0 );
filter->AddGradientImage( direction1, image1 );
filter->AddGradientImage( direction2, image2 );
...
When you have the 'n' gradient and one or more reference images in a single multi-component image (VectorImage), you can specify the images simply as
filter->SetGradientImage( directionsContainer, vectorImage );
Note that this method is used to specify both the reference and gradient images. This is convenient when the DWI images are read in using the NRRD format. Like the Nrrd format, the reference images are those components of the vectorImage whose gradient direction is (0,0,0). If more than one reference image is present, they are averaged prior to applying the Stejskal-Tanner equations.
Outputs
The output image is an image of Tensors:
Image< DiffusionTensor3D< TTensorPixelType >, 3 >
Parameters
  • Threshold - Threshold on the reference image data. The output tensor will be a null tensor for pixels in the reference image that have a value less than this.
  • BValue - See the documentation of SetBValue().
  • At least 6 gradient images must be specified for the filter to be able to run.
Template parameters
The class is templated over the pixel type of the reference and gradient images (expected to be scalar data types) and the internal representation of the DiffusionTensor3D pixel (double, float etc).
References:
  • [1] C.F.Westin, S.E.Maier, H.Mamata, A.Nabavi, F.A.Jolesz, R.Kikinis, "Processing and visualization for Diffusion tensor MRI", Medical image Analysis, 2002, pp 93-108.
  • [2] A Dual Tensor Basis Solution to the Stejskal-Tanner Equations for DT-MRI
Warning
Although this filter has been written to support multiple threads, please set the number of threads to 1.
filter->SetNumberOfWorkUnits(1);
This is due to buggy code in netlib/dsvdc, that is called by vnl_svd. (used to compute the pseudo-inverse to find the dual tensor basis).
Author
Xiaodong Tao, GE, for contributing parts of this class.
Casey Goodlet, UNC for patches to support multiple baseline images and other improvements.
Note
This work is part of the National Alliance for Medical image Computing (NAMIC), funded by the National Institutes of Health through the NIH Roadmap for Medical Research, Grant U54 EB005149.
Examples and Datasets
Sample DTI datasets may be obtained from
*   \li ftp://public.kitware.com/pub/namic/DTI/Data/dwi.nhdr
*   \li ftp://public.kitware.com/pub/namic/DTI/Data/dwi.img.gz ( gunzip this )
* 
See Also
DiffusionTensor3D SymmetricSecondRankTensor
Examples:
Examples/Filtering/DiffusionTensor3DReconstructionImageFilter.cxx.

Definition at line 126 of file itkDiffusionTensor3DReconstructionImageFilter.h.

Public Types

using CoefficientMatrixType = vnl_matrix< double >
 
using ConstPointer = SmartPointer< const Self >
 
using GradientDirectionContainerType = VectorContainer< unsigned int, GradientDirectionType >
 
using GradientDirectionType = vnl_vector_fixed< double, 3 >
 
using GradientImagesType = VectorImage< GradientPixelType, 3 >
 
using GradientImageType = Image< GradientPixelType, 3 >
 
using GradientPixelType = TGradientImagePixelType
 
using MaskImageType = TMaskImageType
 
using MaskSpatialObjectType = SpatialObject< 3 >
 
using OutputImageRegionType = typename Superclass::OutputImageRegionType
 
using OutputImageType = TensorImageType
 
using Pointer = SmartPointer< Self >
 
using ReferenceImageType = typename Superclass::InputImageType
 
using ReferencePixelType = TReferenceImagePixelType
 
using Self = DiffusionTensor3DReconstructionImageFilter
 
using Superclass = ImageToImageFilter< Image< TReferenceImagePixelType, 3 >, Image< DiffusionTensor3D< TTensorPixelType >, 3 > >
 
using TensorBasisMatrixType = vnl_matrix_fixed< double, 6, 6 >
 
using TensorImageType = Image< TensorPixelType, 3 >
 
using TensorPixelType = DiffusionTensor3D< TTensorPixelType >
 
- Public Types inherited from itk::ImageToImageFilter< Image< TReferenceImagePixelType, 3 >, Image< DiffusionTensor3D< TTensorPixelType >, 3 > >
using ConstPointer = SmartPointer< const Self >
 
using InputImageConstPointer = typename InputImageType::ConstPointer
 
using InputImagePixelType = typename InputImageType::PixelType
 
using InputImagePointer = typename InputImageType::Pointer
 
using InputImageRegionType = typename InputImageType::RegionType
 
using InputImageType = Image< TReferenceImagePixelType, 3 >
 
using OutputImagePixelType = typename Superclass::OutputImagePixelType
 
using OutputImageRegionType = typename Superclass::OutputImageRegionType
 
using Pointer = SmartPointer< Self >
 
using Self = ImageToImageFilter
 
using Superclass = ImageSource< Image< DiffusionTensor3D< TTensorPixelType >, 3 > >
 
- Public Types inherited from itk::ImageSource< Image< DiffusionTensor3D< TTensorPixelType >, 3 > >
using ConstPointer = SmartPointer< const Self >
 
using DataObjectIdentifierType = Superclass::DataObjectIdentifierType
 
using DataObjectPointer = DataObject::Pointer
 
using DataObjectPointerArraySizeType = Superclass::DataObjectPointerArraySizeType
 
using OutputImagePixelType = typename OutputImageType::PixelType
 
using OutputImagePointer = typename OutputImageType::Pointer
 
using OutputImageRegionType = typename OutputImageType::RegionType
 
using OutputImageType = Image< DiffusionTensor3D< TTensorPixelType >, 3 >
 
using Pointer = SmartPointer< Self >
 
using Self = ImageSource
 
using Superclass = ProcessObject
 
- Public Types inherited from itk::ProcessObject
using ConstPointer = SmartPointer< const Self >
 
using DataObjectIdentifierType = DataObject::DataObjectIdentifierType
 
using DataObjectPointer = DataObject::Pointer
 
using DataObjectPointerArray = std::vector< DataObjectPointer >
 
using DataObjectPointerArraySizeType = DataObjectPointerArray::size_type
 
using MultiThreaderType = MultiThreaderBase
 
using NameArray = std::vector< DataObjectIdentifierType >
 
using Pointer = SmartPointer< Self >
 
using Self = ProcessObject
 
using Superclass = Object
 
- Public Types inherited from itk::Object
using ConstPointer = SmartPointer< const Self >
 
using Pointer = SmartPointer< Self >
 
using Self = Object
 
using Superclass = LightObject
 
- Public Types inherited from itk::LightObject
using ConstPointer = SmartPointer< const Self >
 
using Pointer = SmartPointer< Self >
 
using Self = LightObject
 

Public Member Functions

virtual ::itk::LightObject::Pointer CreateAnother () const
 
virtual const char * GetNameOfClass () const
 
virtual ReferenceImageTypeGetReferenceImage ()
 
void SetGradientImage (GradientDirectionContainerType *, const GradientImagesType *image)
 
void SetMaskImage (MaskImageType *maskImage)
 
void SetMaskSpatialObject (MaskSpatialObjectType *maskSpatialObject)
 
void SetReferenceImage (ReferenceImageType *referenceImage)
 
void AddGradientImage (const GradientDirectionType &, const GradientImageType *image)
 
const GradientImageTypeGetGradientImage (unsigned index) const
 
virtual GradientDirectionType GetGradientDirection (unsigned int idx) const
 
virtual void SetThreshold (ReferencePixelType _arg)
 
virtual ReferencePixelType GetThreshold () const
 
virtual void SetBValue (TTensorPixelType _arg)
 
virtual const TTensorPixelType & GetBValue () const
 
- Public Member Functions inherited from itk::ImageToImageFilter< Image< TReferenceImagePixelType, 3 >, Image< DiffusionTensor3D< TTensorPixelType >, 3 > >
const InputImageTypeGetInput () const
 
const InputImageTypeGetInput (unsigned int idx) const
 
void PopBackInput () override
 
void PopFrontInput () override
 
virtual void PushBackInput (const InputImageType *image)
 
virtual void PushFrontInput (const InputImageType *image)
 
virtual void SetInput (const InputImageType *image)
 
virtual void SetInput (unsigned int, const Image< TReferenceImagePixelType, 3 > *image)
 
virtual void SetCoordinateTolerance (double _arg)
 
virtual double GetCoordinateTolerance () const
 
virtual void SetDirectionTolerance (double _arg)
 
virtual double GetDirectionTolerance () const
 
- Public Member Functions inherited from itk::ImageSource< Image< DiffusionTensor3D< TTensorPixelType >, 3 > >
OutputImageTypeGetOutput (unsigned int idx)
 
OutputImageTypeGetOutput ()
 
const OutputImageTypeGetOutput () const
 
virtual void GraftOutput (DataObject *output)
 
virtual void GraftOutput (const DataObjectIdentifierType &key, DataObject *output)
 
virtual void GraftNthOutput (unsigned int idx, DataObject *output)
 
ProcessObject::DataObjectPointer MakeOutput (ProcessObject::DataObjectPointerArraySizeType idx) override
 
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 ()
 
MultiThreaderTypeGetMultiThreader () 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)
 
void SetMultiThreader (MultiThreaderType *threader)
 
virtual void Update ()
 
virtual void UpdateLargestPossibleRegion ()
 
virtual void UpdateOutputData (DataObject *output)
 
virtual void UpdateOutputInformation ()
 
void UpdateProgress (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 SetNumberOfWorkUnits (ThreadIdType _arg)
 
virtual const ThreadIdTypeGetNumberOfWorkUnits () 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
 
void Register () const override
 
void RemoveAllObservers ()
 
void RemoveObserver (unsigned long tag)
 
void SetDebug (bool debugFlag) const
 
void SetReferenceCount (int) override
 
void UnRegister () const noexceptoverride
 
void SetMetaDataDictionary (const MetaDataDictionary &rhs)
 
void SetMetaDataDictionary (MetaDataDictionary &&rrhs)
 
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::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 ()
 

Protected Types

enum  GradientImageTypeEnumeration {
  GradientIsInASingleImage = 1,
  GradientIsInManyImages,
  Else
}
 
- Protected Types inherited from itk::ImageToImageFilter< Image< TReferenceImagePixelType, 3 >, Image< DiffusionTensor3D< TTensorPixelType >, 3 > >
using InputToOutputRegionCopierType = ImageToImageFilterDetail::ImageRegionCopier< Self::OutputImageDimension, Self::InputImageDimension >
 
using OutputToInputRegionCopierType = ImageToImageFilterDetail::ImageRegionCopier< Self::InputImageDimension, Self::OutputImageDimension >
 

Protected Member Functions

void BeforeThreadedGenerateData () override
 
void ComputeTensorBasis ()
 
 DiffusionTensor3DReconstructionImageFilter ()
 
void DynamicThreadedGenerateData (const OutputImageRegionType &outputRegionForThread) override
 
void PrintSelf (std::ostream &os, Indent indent) const override
 
void VerifyPreconditions () ITKv5_CONST override
 
 ~DiffusionTensor3DReconstructionImageFilter () override=default
 
- Protected Member Functions inherited from itk::ImageToImageFilter< Image< TReferenceImagePixelType, 3 >, Image< DiffusionTensor3D< TTensorPixelType >, 3 > >
virtual void CallCopyInputRegionToOutputRegion (OutputImageRegionType &destRegion, const InputImageRegionType &srcRegion)
 
virtual void CallCopyOutputRegionToInputRegion (InputImageRegionType &destRegion, const OutputImageRegionType &srcRegion)
 
void GenerateInputRequestedRegion () override
 
 ImageToImageFilter ()
 
void PrintSelf (std::ostream &os, Indent indent) const override
 
void VerifyInputInformation () ITKv5_CONST override
 
 ~ImageToImageFilter () override
 
void PushBackInput (const DataObject *input) override
 
void PushFrontInput (const DataObject *input) override
 
- Protected Member Functions inherited from itk::ImageSource< Image< DiffusionTensor3D< TTensorPixelType >, 3 > >
virtual void AfterThreadedGenerateData ()
 
virtual void AllocateOutputs ()
 
void ClassicMultiThread (ThreadFunctionType callbackFunction)
 
void GenerateData () override
 
virtual const
ImageRegionSplitterBase
GetImageRegionSplitter () const
 
 ImageSource ()
 
virtual unsigned int SplitRequestedRegion (unsigned int i, unsigned int pieces, OutputImageRegionType &splitRegion)
 
 ~ImageSource () override=default
 
virtual void ThreadedGenerateData (const OutputImageRegionType &outputRegionForThread, ThreadIdType threadId)
 
virtual void DynamicThreadedGenerateData (const OutputImageRegionType &outputRegionForThread)
 
virtual bool GetDynamicMultiThreading () const
 
virtual void SetDynamicMultiThreading (bool _arg)
 
virtual void DynamicMultiThreadingOn ()
 
virtual void DynamicMultiThreadingOff ()
 
- Protected Member Functions inherited from itk::ProcessObject
virtual void AddInput (DataObject *input)
 
void AddOptionalInputName (const DataObjectIdentifierType &)
 
void AddOptionalInputName (const DataObjectIdentifierType &, DataObjectPointerArraySizeType idx)
 
virtual void AddOutput (DataObject *output)
 
bool AddRequiredInputName (const DataObjectIdentifierType &)
 
bool AddRequiredInputName (const DataObjectIdentifierType &, DataObjectPointerArraySizeType idx)
 
virtual void CacheInputReleaseDataFlags ()
 
virtual void GenerateOutputInformation ()
 
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
 
DataObjectPointerArraySizeType MakeIndexFromInputName (const DataObjectIdentifierType &name) const
 
DataObjectPointerArraySizeType MakeIndexFromOutputName (const DataObjectIdentifierType &name) const
 
DataObjectIdentifierType MakeNameFromInputIndex (DataObjectPointerArraySizeType idx) const
 
DataObjectIdentifierType MakeNameFromOutputIndex (DataObjectPointerArraySizeType idx) const
 
 ProcessObject ()
 
virtual void PropagateResetPipeline ()
 
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 &)
 
 ~ProcessObject () override
 
DataObjectGetInput (DataObjectPointerArraySizeType idx)
 
const DataObjectGetInput (DataObjectPointerArraySizeType idx) const
 
DataObjectGetPrimaryInput ()
 
const DataObjectGetPrimaryInput () const
 
virtual void SetPrimaryInputName (const DataObjectIdentifierType &key)
 
virtual const char * GetPrimaryInputName () const
 
DataObjectGetOutput (const DataObjectIdentifierType &key)
 
const DataObjectGetOutput (const DataObjectIdentifierType &key) const
 
virtual void SetPrimaryOutputName (const DataObjectIdentifierType &key)
 
virtual const char * GetPrimaryOutputName () 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)
 
 ~Object () override
 
- 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 Attributes

CoefficientMatrixType m_BMatrix
 
TTensorPixelType m_BValue
 
GradientDirectionContainerType::Pointer m_GradientDirectionContainer
 
GradientImageTypeEnumeration m_GradientImageTypeEnumeration
 
bool m_MaskImagePresent
 
unsigned int m_NumberOfBaselineImages
 
unsigned int m_NumberOfGradientDirections
 
TensorBasisMatrixType m_TensorBasis
 
ReferencePixelType m_Threshold
 

Additional Inherited Members

- Static Public Attributes inherited from itk::ImageToImageFilter< Image< TReferenceImagePixelType, 3 >, Image< DiffusionTensor3D< TTensorPixelType >, 3 > >
static constexpr unsigned int InputImageDimension
 
static constexpr unsigned int OutputImageDimension
 
- Static Public Attributes inherited from itk::ImageSource< Image< DiffusionTensor3D< TTensorPixelType >, 3 > >
static constexpr unsigned int OutputImageDimension
 
- Static Protected Member Functions inherited from itk::ImageSource< Image< DiffusionTensor3D< TTensorPixelType >, 3 > >
static const
ImageRegionSplitterBase
GetGlobalDefaultSplitter ()
 
static
ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION 
ThreaderCallback (void *arg)
 
- Protected Attributes inherited from itk::ImageSource< Image< DiffusionTensor3D< TTensorPixelType >, 3 > >
bool m_DynamicMultiThreading
 
- Protected Attributes inherited from itk::ProcessObject
TimeStamp m_OutputInformationMTime
 
bool m_Updating
 
- Protected Attributes inherited from itk::LightObject
std::atomic< int > m_ReferenceCount
 

Member Typedef Documentation

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::CoefficientMatrixType = vnl_matrix< double >
template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::ConstPointer = SmartPointer< const Self >
template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::GradientDirectionContainerType = VectorContainer< unsigned int, GradientDirectionType >

Container to hold gradient directions of the 'n' DW measurements

Definition at line 186 of file itkDiffusionTensor3DReconstructionImageFilter.h.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::GradientDirectionType = vnl_vector_fixed< double, 3 >

Holds each magnetic field gradient used to acquire one DWImage

Definition at line 182 of file itkDiffusionTensor3DReconstructionImageFilter.h.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::GradientImagesType = VectorImage< GradientPixelType, 3 >

An alternative type alias defining one (of the many) gradient images. It will be assumed that the vectorImage has the same dimension as the Reference image and a vector length parameter of n (number of gradient directions)

Definition at line 168 of file itkDiffusionTensor3DReconstructionImageFilter.h.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::GradientImageType = Image< GradientPixelType, 3 >

Typedef defining one (of the many) gradient images.

Definition at line 162 of file itkDiffusionTensor3DReconstructionImageFilter.h.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::GradientPixelType = TGradientImagePixelType
template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::MaskImageType = TMaskImageType

The type for the optional mask image

Definition at line 174 of file itkDiffusionTensor3DReconstructionImageFilter.h.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::MaskSpatialObjectType = SpatialObject<3>

The type for the optional SpatialObject for masking

Definition at line 171 of file itkDiffusionTensor3DReconstructionImageFilter.h.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::OutputImageRegionType = typename Superclass::OutputImageRegionType
template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::OutputImageType = TensorImageType
template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::Pointer = SmartPointer< Self >
template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::ReferenceImageType = typename Superclass::InputImageType

Reference image data, This image is acquired in the absence of a diffusion sensitizing field gradient

Definition at line 153 of file itkDiffusionTensor3DReconstructionImageFilter.h.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::ReferencePixelType = TReferenceImagePixelType
template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::Self = DiffusionTensor3DReconstructionImageFilter
template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::Superclass = ImageToImageFilter< Image< TReferenceImagePixelType, 3 >, Image< DiffusionTensor3D< TTensorPixelType >, 3 > >
template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::TensorBasisMatrixType = vnl_matrix_fixed< double, 6, 6 >

Holds the tensor basis coefficients G_k

Definition at line 177 of file itkDiffusionTensor3DReconstructionImageFilter.h.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::TensorImageType = Image< TensorPixelType, 3 >
template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
using itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::TensorPixelType = DiffusionTensor3D< TTensorPixelType >

Member Enumeration Documentation

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
enum itk::DiffusionTensor3DReconstructionImageFilter::GradientImageTypeEnumeration
protected

enum to indicate if the gradient image is specified as a single multi- component image or as several separate images

Enumerator
GradientIsInASingleImage 
GradientIsInManyImages 
Else 

Definition at line 297 of file itkDiffusionTensor3DReconstructionImageFilter.h.

Constructor & Destructor Documentation

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::DiffusionTensor3DReconstructionImageFilter ( )
protected
template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::~DiffusionTensor3DReconstructionImageFilter ( )
overrideprotecteddefault

Member Function Documentation

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
void itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::AddGradientImage ( const GradientDirectionType ,
const GradientImageType image 
)

Set method to add a gradient direction and its corresponding image.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
void itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::BeforeThreadedGenerateData ( )
overrideprotectedvirtual

If an imaging filter needs to perform processing after the buffer has been allocated but before threads are spawned, the filter can can provide an implementation for BeforeThreadedGenerateData(). The execution flow in the default GenerateData() method will be: 1) Allocate the output buffer 2) Call BeforeThreadedGenerateData() 3) Spawn threads, calling ThreadedGenerateData() in each thread. 4) Call AfterThreadedGenerateData() Note that this flow of control is only available if a filter provides a ThreadedGenerateData() method and NOT a GenerateData() method.

Reimplemented from itk::ImageSource< Image< DiffusionTensor3D< TTensorPixelType >, 3 > >.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
void itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::ComputeTensorBasis ( )
protected
template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
virtual::itk::LightObject::Pointer itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::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::Object.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
void itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::DynamicThreadedGenerateData ( const OutputImageRegionType outputRegionForThread)
overrideprotected
template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
virtual const TTensorPixelType& itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::GetBValue ( ) const
virtual

The BValue $ (s/mm^2) $ value used in normalizing the tensors to physically meaningful units. See equation (24) of the first reference for a description of how this is applied to the tensor estimation. Equation (1) of the same reference describes the physical significance.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
virtual GradientDirectionType itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::GetGradientDirection ( unsigned int  idx) const
inlinevirtual

Return the gradient direction. idx is 0 based

Definition at line 221 of file itkDiffusionTensor3DReconstructionImageFilter.h.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
const GradientImageType* itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::GetGradientImage ( unsigned  index) const

Set method to add a gradient direction and its corresponding image.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
virtual const char* itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::GetNameOfClass ( ) const
virtual
template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
virtual ReferenceImageType* itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::GetReferenceImage ( )
inlinevirtual

Get reference image

Definition at line 217 of file itkDiffusionTensor3DReconstructionImageFilter.h.

References itk::ProcessObject::GetInput().

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
virtual ReferencePixelType itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::GetThreshold ( ) const
virtual

Threshold on the reference image data. The output tensor will be a null tensor for pixels in the reference image that have a value less than this threshold.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
static Pointer itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::New ( )
static

Method for creation through the object factory.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
void itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::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::ProcessObject.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
virtual void itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::SetBValue ( TTensorPixelType  _arg)
virtual

The BValue $ (s/mm^2) $ value used in normalizing the tensors to physically meaningful units. See equation (24) of the first reference for a description of how this is applied to the tensor estimation. Equation (1) of the same reference describes the physical significance.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
void itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::SetGradientImage ( GradientDirectionContainerType ,
const GradientImagesType image 
)

Another set method to add a gradient directions and its corresponding image. The image here is a VectorImage. The user is expected to pass the gradient directions in a container. The ith element of the container corresponds to the gradient direction of the ith component image the VectorImage. For the baseline image, a vector of all zeros should be set.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
void itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::SetMaskImage ( MaskImageType maskImage)

set an image mask

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
void itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::SetMaskSpatialObject ( MaskSpatialObjectType maskSpatialObject)

set a spatial object mask

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
void itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::SetReferenceImage ( ReferenceImageType referenceImage)
inline

Set method to set the reference image.

Definition at line 203 of file itkDiffusionTensor3DReconstructionImageFilter.h.

References itk::ProcessObject::SetNthInput().

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
virtual void itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::SetThreshold ( ReferencePixelType  _arg)
virtual

Threshold on the reference image data. The output tensor will be a null tensor for pixels in the reference image that have a value less than this threshold.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
void itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::VerifyPreconditions ( )
overrideprotectedvirtual

Verifies that the process object has been configured correctly, that all required inputs are set, and needed parameters are set appropriately. If not valid an exceptions will be thrown.

This method is called before UpdateOutputInformation is propagated to the inputs.

The ProcessObject's implementation verifies that the NumberOfRequiredInputs are set and not null.

Reimplemented from itk::ProcessObject.

Member Data Documentation

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
CoefficientMatrixType itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::m_BMatrix
private
template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
TTensorPixelType itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::m_BValue
private

LeBihan's b-value for normalizing tensors

Definition at line 323 of file itkDiffusionTensor3DReconstructionImageFilter.h.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
GradientDirectionContainerType::Pointer itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::m_GradientDirectionContainer
private

container to hold gradient directions

Definition at line 311 of file itkDiffusionTensor3DReconstructionImageFilter.h.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
GradientImageTypeEnumeration itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::m_GradientImageTypeEnumeration
private

Gradient image was specified in a single image or in multiple images

Definition at line 326 of file itkDiffusionTensor3DReconstructionImageFilter.h.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
bool itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::m_MaskImagePresent
private

Mask Image Present

Definition at line 329 of file itkDiffusionTensor3DReconstructionImageFilter.h.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
unsigned int itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::m_NumberOfBaselineImages
private

Number of baseline images

Definition at line 317 of file itkDiffusionTensor3DReconstructionImageFilter.h.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
unsigned int itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::m_NumberOfGradientDirections
private

Number of gradient measurements

Definition at line 314 of file itkDiffusionTensor3DReconstructionImageFilter.h.

template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
TensorBasisMatrixType itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::m_TensorBasis
private
template<typename TReferenceImagePixelType , typename TGradientImagePixelType = TReferenceImagePixelType, typename TTensorPixelType = double, typename TMaskImageType = Image<unsigned char, 3>>
ReferencePixelType itk::DiffusionTensor3DReconstructionImageFilter< TReferenceImagePixelType, TGradientImagePixelType, TTensorPixelType, TMaskImageType >::m_Threshold
private

Threshold on the reference image data

Definition at line 320 of file itkDiffusionTensor3DReconstructionImageFilter.h.


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