ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkMetaArrayReader.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 itkMetaArrayReader_h
19#define itkMetaArrayReader_h
20#include "ITKIOMetaExport.h"
21
23#include "itkArray.h"
24#include "itkCovariantVector.h"
26#include "metaArray.h"
27
28namespace itk
29{
30class ITKIOMeta_EXPORT MetaArrayReader : public LightProcessObject
31{
32public:
38
40 itkNewMacro(Self);
41
43 itkOverrideGetNameOfClassMacro(MetaArrayReader);
44
46 itkSetStringMacro(FileName);
47
49 itkGetStringMacro(FileName);
50
53 MetaArray *
55
57 void
58 SetBuffer(void * _buffer);
59
61 void
63
65 MET_ValueEnumType
67 {
68 return m_MetaArray.ElementType();
69 }
70
72 int
73 Size() const
74 {
75 return m_MetaArray.Length();
76 }
77
79 int
81 {
82 return m_MetaArray.Length();
83 }
84
86 int
88 {
89 return m_MetaArray.Length();
90 }
91
93 int
95 {
96 return m_MetaArray.Length();
97 }
98
100 int
102 {
103 return m_MetaArray.Length();
104 }
105
107 template <typename TValue>
108 inline void
109 GetElement(TValue & value, unsigned int i, unsigned int channel = 0) const
110 {
111 value = static_cast<TValue>(m_MetaArray.ElementData(i * m_MetaArray.ElementNumberOfChannels() + channel));
112 }
113
122 template <typename TValue>
123 void
124 GetOutput(MET_ValueEnumType _metaElementType, Array<TValue> * _array, bool _letArrayManageData = true)
125 {
126 if (m_MetaArray.ElementType() != _metaElementType)
127 {
128 m_MetaArray.ConvertElementDataTo(_metaElementType);
129 }
130 _array->SetData((TValue *)(m_MetaArray.ElementData()), m_MetaArray.Length(), _letArrayManageData);
131 if (_letArrayManageData)
132 {
133 m_MetaArray.AutoFreeElementData(false);
134 }
135 }
136
138 template <typename TValue, unsigned int VLength>
139 bool
140 GetOutput(MET_ValueEnumType itkNotUsed(_metaElementType), FixedArray<TValue, VLength> * _array)
141 {
142 if (static_cast<int>(VLength) <= m_MetaArray.Length())
143 {
144 for (unsigned int i = 0; i < VLength; ++i)
145 {
146 this->GetElement((*_array)[i], i);
147 }
148 return true;
149 }
150 return false;
151 }
152
156 template <typename TValue, unsigned int VLength>
157 bool
158 GetOutput(MET_ValueEnumType itkNotUsed(_metaElementType), Vector<TValue, VLength> * _vector)
159 {
160 if (static_cast<int>(VLength) <= m_MetaArray.Length())
161 {
162 for (unsigned int i = 0; i < VLength; ++i)
163 {
164 this->GetElement((*_vector)[i], i);
165 }
166 return true;
167 }
168 return false;
169 }
170
175 template <typename TValue, unsigned int VLength>
176 bool
177 GetOutput(MET_ValueEnumType itkNotUsed(_metaElementType), CovariantVector<TValue, VLength> * _vector)
178 {
179 if (static_cast<int>(VLength) <= m_MetaArray.Length())
180 {
181 for (unsigned int i = 0; i < VLength; ++i)
182 {
183 this->GetElement((*_vector)[i], i);
184 }
185 return true;
186 }
187 return false;
188 }
189
199 template <typename TValue>
200 void
201 GetOutput(MET_ValueEnumType _metaElementType,
203 bool _letVectorManageData = true)
204 {
205 if (m_MetaArray.ElementType() != _metaElementType)
206 {
207 m_MetaArray.ConvertElementDataTo(_metaElementType);
208 }
209 _vector->SetData((TValue *)(m_MetaArray.ElementData()), m_MetaArray.Length(), _letVectorManageData);
210 if (_letVectorManageData)
211 {
212 m_MetaArray.AutoFreeElementData(false);
213 }
214 }
215
221 template <typename TValue>
222 void
223 GetMultiChannelOutput(MET_ValueEnumType _metaElementType, Array<TValue> * _array)
224 {
225 if (m_MetaArray.ElementType() != _metaElementType)
226 {
227 m_MetaArray.ConvertElementDataTo(_metaElementType);
228 }
229 int rows = m_MetaArray.Length();
230 int cols = m_MetaArray.ElementNumberOfChannels();
231 _array->SetSize(rows);
232 for (int i = 0; i < rows; ++i)
233 {
234 (*_array)[i].SetSize(cols);
235 for (int j = 0; j < cols; ++j)
236 {
237 (*_array)[i][j] = static_cast<typename TValue::ValueType>(m_MetaArray.ElementData(i * cols + j));
238 }
239 }
240 }
241
242protected:
245 void
246 PrintSelf(std::ostream & os, Indent indent) const override;
247
248private:
249 MetaArray m_MetaArray{};
250
251 std::string m_FileName{};
252
253 void * m_Buffer{ nullptr };
254};
255} // namespace itk
256
257#endif // itkMetaArrayReader_h
Array class with size defined at construction time.
Definition itkArray.h:48
void SetData(TValue *datain, SizeValueType sz, bool LetArrayManageMemory=false)
void SetSize(SizeValueType sz)
A templated class holding a n-Dimensional covariant vector.
Simulate a standard C array with copy semantics.
Control indentation during Print() invocation.
Definition itkIndent.h:50
SmartPointer< const Self > ConstPointer
LightProcessObject Superclass
void GetOutput(MET_ValueEnumType _metaElementType, VariableLengthVector< TValue > *_vector, bool _letVectorManageData=true)
void GetElement(TValue &value, unsigned int i, unsigned int channel=0) const
int GetCovariantVectorDimension() const
void SetBuffer(void *_buffer)
void GetMultiChannelOutput(MET_ValueEnumType _metaElementType, Array< TValue > *_array)
void GetOutput(MET_ValueEnumType _metaElementType, Array< TValue > *_array, bool _letArrayManageData=true)
~MetaArrayReader() override
SmartPointer< Self > Pointer
MetaArray * GetMetaArrayPointer()
void PrintSelf(std::ostream &os, Indent indent) const override
int GetNumberOfComponents() const
bool GetOutput(MET_ValueEnumType _metaElementType, FixedArray< TValue, VLength > *_array)
bool GetOutput(MET_ValueEnumType _metaElementType, CovariantVector< TValue, VLength > *_vector)
bool GetOutput(MET_ValueEnumType _metaElementType, Vector< TValue, VLength > *_vector)
MET_ValueEnumType GetDataType() const
Implements transparent reference counting.
A templated class holding a n-Dimensional vector.
Definition itkVector.h:63
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....