Namespaces | Classes | Typedefs | Functions | Variables

itk Namespace Reference

Namespaces

namespace  Statistics

Classes

class  ImportMitkImageContainer
class  SquaredEuclideanMetric
class  LocalVariationImageFilter
 Calculates the local variation in each pixel. More...
class  TotalVariationDenoisingImageFilter
 Applies a total variation denoising filter to an image. More...
class  TotalVariationSingleIterationImageFilter
 Applies a total variation denoising filter to an image. More...
class  VtkAbstractTransform
 Adapter from vtkAbstractTransform to itk::Transform<TScalarType, 3, 3> More...
class  BSplineDeformableTransformInitializer
 BSplineDeformableTransformInitializer is a helper class intended to initialize the grid parameters of a BSplineDeformableTransform based on the parameters of an image. More...
class  B0ImageExtractionImageFilter
 This class takes as input a T2-weighted image and computes a brainmask. More...
class  BrainMaskExtractionImageFilter
 This class takes as input a T2-weighted image and computes a brainmask. More...
class  DiffusionQballGeneralizedFaImageFilter
class  DiffusionQballPrepareVisualizationImageFilter
class  QBallToRgbImageFilter
class  TensorDerivedMeasurementsFilter
class  TensorImageToDiffusionImageFilter
class  TensorToL2NormImageFilter
class  TensorToRgbImageFilter
class  AnalyticalDiffusionQballReconstructionImageFilter
 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 orientation distribution function coefficients in a spherical harmonic basis. More...
class  DiffusionQballReconstructionImageFilter
 This class takes as input one or more reference images (acquired in the absence of diffusion sensitizing gradients) and 'n' diffusion weighted images and their gradient directions and computes an image of orientation distribution functions (ODFs). More...
class  OrientationDistributionFunction
 Represents an ODF for Q-Ball imaging. More...
class  PointShell
class  PointShell< 12, vnl_matrix_fixed< double, 3, 12 > >
class  PointShell< 42, vnl_matrix_fixed< double, 3, 42 > >
class  PointShell< 92, vnl_matrix_fixed< double, 3, 92 > >
class  PointShell< 162, vnl_matrix_fixed< double, 3, 162 > >
class  PointShell< 252, vnl_matrix_fixed< double, 3, 252 > >
class  PointShell< 362, vnl_matrix_fixed< double, 3, 362 > >
class  PointShell< 492, vnl_matrix_fixed< double, 3, 492 > >
class  PointShell< 642, vnl_matrix_fixed< double, 3, 642 > >
class  PointShell< 812, vnl_matrix_fixed< double, 3, 812 > >
class  PointShell< 1002, vnl_matrix_fixed< double, 3, 1002 > >
class  NonUniformBSpline
 BSpline with nonuniform knot spacing. More...
class  AffineGeometryFrame
 Describes the geometry of a data object. More...
class  SmartPointerVectorContainer

Typedefs

typedef std::ostream OutputStreamType
typedef std::istream InputStreamType

Functions

template<typename TComponent , unsigned int NOdfDirections>
MitkDiffusionImaging_EXPORT
OutputStreamType
operator<< (OutputStreamType &os, const OrientationDistributionFunction< TComponent, NOdfDirections > &c)
template<typename TComponent , unsigned int NOdfDirections>
MitkDiffusionImaging_EXPORT
InputStreamType
operator>> (InputStreamType &is, OrientationDistributionFunction< TComponent, NOdfDirections > &c)
template<class T , unsigned int NOdfDirections>
std::ostream & operator<< (std::ostream &os, const OrientationDistributionFunction< T, NOdfDirections > &c)
template<class T , unsigned int NOdfDirections>
std::istream & operator>> (std::istream &is, OrientationDistributionFunction< T, NOdfDirections > &dt)

Variables

class ITK_EXPORT Image

Typedef Documentation

typedef std::istream itk::InputStreamType

Definition at line 210 of file itkOrientationDistributionFunction.h.

typedef std::ostream itk::OutputStreamType

This extra typedef is necessary for preventing an Internal Compiler Error in Microsoft Visual C++ 6.0. This typedef is not needed for any other compiler.

Definition at line 209 of file itkOrientationDistributionFunction.h.


Function Documentation

template<typename TComponent , unsigned int NOdfDirections>
MitkDiffusionImaging_EXPORT OutputStreamType& itk::operator<< ( OutputStreamType &  os,
const OrientationDistributionFunction< TComponent, NOdfDirections > &  c 
)
template<class T , unsigned int NOdfDirections>
std::ostream& itk::operator<< ( std::ostream &  os,
const OrientationDistributionFunction< T, NOdfDirections > &  c 
)

Print content to an ostream

Definition at line 1186 of file itkOrientationDistributionFunction.txx.

  {
    for(unsigned int i=0; i<c.GetNumberOfComponents(); i++)
    {
      os <<  static_cast<typename NumericTraits<T>::PrintType>(c[i]) << "  ";
    }
    return os;
  }
template<class T , unsigned int NOdfDirections>
std::istream& itk::operator>> ( std::istream &  is,
OrientationDistributionFunction< T, NOdfDirections > &  dt 
)

Read content from an istream

Definition at line 1201 of file itkOrientationDistributionFunction.txx.

References itk::OrientationDistributionFunction< TComponent, NOdfDirections >::GetNumberOfComponents().

  {
    for(unsigned int i=0; i < dt.GetNumberOfComponents(); i++)
    {
      is >> dt[i];
    }
    return is;
  }
template<typename TComponent , unsigned int NOdfDirections>
MitkDiffusionImaging_EXPORT InputStreamType& itk::operator>> ( InputStreamType &  is,
OrientationDistributionFunction< TComponent, NOdfDirections > &  c 
)

Variable Documentation

class ITK_EXPORT itk::Image
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines