ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkDTITubeSpatialObjectPoint.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18#ifndef itkDTITubeSpatialObjectPoint_h
19#define itkDTITubeSpatialObjectPoint_h
20
23#include "vnl/vnl_vector_fixed.h"
24
25namespace itk
26{
32{
33public:
39 enum class DTITubeSpatialObjectPointField : uint8_t
40 {
41 FA = 0,
42 ADC = 1,
43 GA = 2
44 };
45};
46// Define how to print enumeration
47extern ITKSpatialObjects_EXPORT std::ostream &
59template <unsigned int TPointDimension = 3>
60class ITK_TEMPLATE_EXPORT DTITubeSpatialObjectPoint : public TubeSpatialObjectPoint<TPointDimension>
61{
62public:
64
70 using FieldType = std::pair<std::string, float>;
71 using FieldListType = std::vector<FieldType>;
72
74#if !defined(ITK_LEGACY_REMOVE)
76 using FieldEnumType = DTITubeSpatialObjectPointFieldEnum;
77 // We need to expose the enum values at the class level
78 // for backwards compatibility
79 static constexpr DTITubeSpatialObjectPointFieldEnum FA = DTITubeSpatialObjectPointFieldEnum::FA;
80 static constexpr DTITubeSpatialObjectPointFieldEnum ADC = DTITubeSpatialObjectPointFieldEnum::ADC;
81 static constexpr DTITubeSpatialObjectPointFieldEnum GA = DTITubeSpatialObjectPointFieldEnum::GA;
82#endif
83
87
89 ~DTITubeSpatialObjectPoint() override = default;
90
92 void
94 {
95 std::copy(matrix.Begin(), matrix.End(), m_TensorMatrix);
96 }
97
98 void
100 {
101 std::copy(matrix.Begin(), matrix.End(), m_TensorMatrix);
102 }
103
104 void
105 SetTensorMatrix(const float * matrix)
106 {
107 for (unsigned int i = 0; i < 6; ++i)
108 {
109 m_TensorMatrix[i] = matrix[i];
110 }
111 }
112
113 const float *
115 {
116 return m_TensorMatrix;
117 }
118
120 void
121 AddField(const char * name, float value);
122
124 void
126
128 void
130
131 void
132 SetField(const char * name, float value);
133
135 const FieldListType &
136 GetFields() const
137 {
138 return m_Fields;
139 }
140
142 float
143 GetField(const char * name) const;
144
145 float
147
148protected:
149 float m_TensorMatrix[6]{};
151
153 void
154 PrintSelf(std::ostream & os, Indent indent) const override;
155
157 std::string
159};
160} // end of namespace itk
161
162#ifndef ITK_MANUAL_INSTANTIATION
163# include "itkDTITubeSpatialObjectPoint.hxx"
164#endif
165
166#endif // itkDTITubeSpatialObjectPoint_h
A templated class holding a n-Dimensional covariant vector.
Contains all enum classes used by DTITubeSpatialObjectPoint class.
void SetTensorMatrix(const DiffusionTensor3D< double > &matrix)
std::string TranslateEnumToChar(DTITubeSpatialObjectPointFieldEnum name) const
CovariantVector< double, TPointDimension > CovariantVectorType
~DTITubeSpatialObjectPoint() override=default
void AddField(const char *name, float value)
float GetField(const char *name) const
void SetTensorMatrix(const DiffusionTensor3D< float > &matrix)
void PrintSelf(std::ostream &os, Indent indent) const override
void AddField(DTITubeSpatialObjectPointFieldEnum name, float value)
TubeSpatialObjectPoint< TPointDimension > Superclass
ITK_DEFAULT_COPY_AND_MOVE(DTITubeSpatialObjectPoint)
DTITubeSpatialObjectPointEnums::DTITubeSpatialObjectPointField DTITubeSpatialObjectPointFieldEnum
void SetField(DTITubeSpatialObjectPointFieldEnum name, float value)
float GetField(DTITubeSpatialObjectPointFieldEnum name) const
void SetField(const char *name, float value)
const FieldListType & GetFields() const
Represent a diffusion tensor as used in DTI images.
Iterator End()
Iterator Begin()
Control indentation during Print() invocation.
Definition itkIndent.h:50
A templated class holding a geometric point in n-Dimensional space.
Definition itkPoint.h:54
A templated class holding a n-Dimensional vector.
Definition itkVector.h:63
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
ITKCommon_EXPORT std::ostream & operator<<(std::ostream &out, typename AnatomicalOrientation::CoordinateEnum value)