/usr/include/InsightToolkit/Common/itkSymmetricSecondRankTensor.h is in libinsighttoolkit3-dev 3.20.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkSymmetricSecondRankTensor.h
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __itkSymmetricSecondRankTensor_h
#define __itkSymmetricSecondRankTensor_h
// Undefine an eventual SymmetricSecondRankTensor macro
#ifdef SymmetricSecondRankTensor
#undef SymmetricSecondRankTensor
#endif
#include "itkIndent.h"
#include "itkFixedArray.h"
#include "itkMatrix.h"
#include "itkSymmetricEigenAnalysis.h"
namespace itk
{
/** \class SymmetricSecondRankTensor
* \brief Represent a symmetric tensor of second rank.
*
* This class implements a ND symmetric tensor of second rank.
*
* Since SymmetricSecondRankTensor is a subclass of FixedArray,
* you can access its components as:
*
* typedef itk::SymmetricSecondRankTensor< float > TensorPixelType;
* TensorPixelType tensor;
*
* tensor[0] = 1.233;
* tensor[1] = 1.456;
*
* for convenience the indexed access is also available as
*
* tensor(0,0) = 1.233;
* tensor(2,0) = 1.233;
*
* The Tensor in principle represents a NxN matrix, but given that it is always
* symmetric the representation can be compacted into a N*(N+1)/2 elements
* array that derives from the itk::FixedArray<T>
*
* \author Jeffrey Duda from School of Engineering at University of Pennsylvania
* \author Torsten Rohlfing from SRI International Neuroscience Program.
*
* This class was mostly based on files that Jeffrey Duda, Torsten Rohlfing and
* Martin Styner contributed to the ITK users list during a discussion on
* support for DiffusionTensorImages. The funding for creating this class was
* largely provided by NAMIC (National Alliance for Medical Image Computing)
* (http://www.na-mic.org). A discussion on the design of this class can be
* found in the WIKI pages of NAMIC:
*
* http://www.na-mic.org/Wiki/index.php/NAMIC_Wiki:DTI:ITK-DiffusionTensorPixelType
*
* \sa DiffusionTensor3D
*
* \ingroup ImageObjects TensorObjects Geometry
*/
template < typename TComponent, unsigned int NDimension=3 >
class SymmetricSecondRankTensor: public
FixedArray<TComponent,NDimension*(NDimension+1)/2>
{
public:
/** Standard class typedefs. */
typedef SymmetricSecondRankTensor Self;
typedef FixedArray<TComponent,NDimension*(NDimension+1)/2> Superclass;
/** Dimension of the vector space. */
itkStaticConstMacro(Dimension, unsigned int, NDimension);
itkStaticConstMacro(InternalDimension, unsigned int, NDimension*(NDimension+1)/2);
/** Convenience typedefs. */
typedef FixedArray<TComponent,
itkGetStaticConstMacro(InternalDimension)> BaseArray;
/** Array of eigen-values. */
typedef FixedArray<TComponent, NDimension> EigenValuesArrayType;
/** Matrix of eigen-vectors. */
typedef Matrix<TComponent, NDimension, NDimension> MatrixType;
typedef Matrix<TComponent, NDimension, NDimension> EigenVectorsMatrixType;
/** Define the component type. */
typedef TComponent ComponentType;
typedef typename Superclass::ValueType ValueType;
typedef typename NumericTraits<ValueType>::RealType AccumulateValueType;
typedef typename NumericTraits<ValueType>::RealType RealValueType;
typedef SymmetricEigenAnalysis< MatrixType,
EigenValuesArrayType, EigenVectorsMatrixType > SymmetricEigenAnalysisType;
/** Default constructor has nothing to do. */
SymmetricSecondRankTensor() {this->Fill(0);}
SymmetricSecondRankTensor (const ComponentType& r) { this->Fill(r); }
/** Constructor to enable casting... */
template < typename TCoordRepB >
SymmetricSecondRankTensor( const SymmetricSecondRankTensor<TCoordRepB,NDimension> & pa ):
BaseArray(pa) { }
typedef ComponentType ComponentArrayType[ itkGetStaticConstMacro(InternalDimension) ];
/** Pass-through constructor for the Array base class. */
SymmetricSecondRankTensor(const ComponentArrayType r): BaseArray(r) {}
/** Templated Pass-through assignment for the Array base class. */
template < typename TCoordRepB >
Self& operator= ( const SymmetricSecondRankTensor<TCoordRepB,NDimension> & pa )
{
BaseArray::operator=(pa);
return *this;
}
/** Pass-through assignment operator for the Array base class. */
Self& operator= (const ComponentType& r);
Self& operator= (const ComponentArrayType r);
/** Aritmetic operations between pixels. Return a new SymmetricSecondRankTensor. */
Self operator+(const Self &vec) const;
Self operator-(const Self &vec) const;
const Self & operator+=(const Self &vec);
const Self & operator-=(const Self &vec);
/** Arithmetic operations between tensors and scalars */
Self operator*(const RealValueType & scalar ) const;
Self operator/(const RealValueType & scalar ) const;
const Self & operator*=(const RealValueType & scalar );
const Self & operator/=(const RealValueType & scalar );
/** Return the number of components. */
static unsigned int GetNumberOfComponents()
{
return itkGetStaticConstMacro(InternalDimension);
}
/** Return the value for the Nth component. */
ComponentType GetNthComponent(int c) const
{ return this->operator[](c); }
/** Set the Nth component to v. */
void SetNthComponent(int c, const ComponentType& v)
{ this->operator[](c) = v; }
/** Matrix notation, in const and non-const forms. */
ValueType & operator()( unsigned int row, unsigned int col );
const ValueType & operator()( unsigned int row, unsigned int col ) const;
/** Set the tensor to an identity tensor. This has 1 in its diagonal elements
* zero elsewhere */
void SetIdentity();
/** Get Trace value */
AccumulateValueType GetTrace() const;
/** Return an array containing EigenValues. */
void ComputeEigenValues( EigenValuesArrayType & eigenValues ) const;
/** Return an array containing EigenValues, and a matrix containing Eigen
* vectors. */
void ComputeEigenAnalysis( EigenValuesArrayType & eigenValues,
EigenVectorsMatrixType & eigenVectors ) const;
/** Pre-Multiply by a Matrix as ResultingTensor = Matrix * ThisTensor. */
Self PreMultiply( const MatrixType & m ) const;
/** Post-Multiply by a Matrix as ResultingTensor = ThisTensor * Matrix. */
Self PostMultiply( const MatrixType & m ) const;
private:
};
/** 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. */
typedef std::ostream OutputStreamType;
typedef std::istream InputStreamType;
template< typename TComponent, unsigned int NDimension >
ITK_EXPORT OutputStreamType& operator<<(OutputStreamType& os,
const SymmetricSecondRankTensor<TComponent,NDimension> & c);
template< typename TComponent, unsigned int NDimension >
ITK_EXPORT InputStreamType& operator>>(InputStreamType& is,
SymmetricSecondRankTensor<TComponent,NDimension> & c);
} // end namespace itk
#include "itkNumericTraitsTensorPixel.h"
// Define instantiation macro for this template.
#define ITK_TEMPLATE_SymmetricSecondRankTensor(_, EXPORT, x, y) namespace itk { \
_(2(class EXPORT SymmetricSecondRankTensor< ITK_TEMPLATE_2 x >)) \
namespace Templates { typedef SymmetricSecondRankTensor< ITK_TEMPLATE_2 x > \
SymmetricSecondRankTensor##y; } \
}
#if ITK_TEMPLATE_EXPLICIT
# include "Templates/itkSymmetricSecondRankTensor+-.h"
#endif
#if ITK_TEMPLATE_TXX
# include "itkSymmetricSecondRankTensor.txx"
#endif
#endif
|