ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkMetaArrayWriter.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 itkMetaArrayWriter_h
19#define itkMetaArrayWriter_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 MetaArrayWriter : public LightProcessObject
31{
32public:
36
39
41 itkNewMacro(Self);
42
44 itkOverrideGetNameOfClassMacro(MetaArrayWriter);
45
48 itkSetStringMacro(FileName);
49 itkGetStringMacro(FileName);
54 itkSetStringMacro(DataFileName);
55 itkGetStringMacro(DataFileName);
62 itkBooleanMacro(Binary);
63 itkSetMacro(Binary, bool);
64 itkGetConstMacro(Binary, bool);
67 template <typename TValue>
68 void
69 SetInput(MET_ValueEnumType _metaElementType, const Array<TValue> * _array)
70 {
71 m_Buffer = (const void *)(_array->data_block());
72 m_MetaArray.InitializeEssential(_array->Size(), _metaElementType);
73 }
74
76 template <typename TValue, unsigned int VLength>
77 void
78 SetInput(MET_ValueEnumType _metaElementType, const FixedArray<TValue, VLength> * _array)
79 {
80 m_Buffer = (const void *)(_array->GetDataPointer());
81 m_MetaArray.InitializeEssential(VLength, _metaElementType);
82 }
83
85 template <typename TValue, unsigned int VLength>
86 void
87 SetInput(MET_ValueEnumType _metaElementType, const Vector<TValue, VLength> * _vector)
88 {
89 m_Buffer = (const void *)(_vector->GetDataPointer());
90 m_MetaArray.InitializeEssential(VLength, _metaElementType);
91 }
92
94 template <typename TValue, unsigned int VLength>
95 void
96 SetInput(MET_ValueEnumType _metaElementType, const CovariantVector<TValue, VLength> * _vector)
97 {
98 m_Buffer = (const void *)(_vector->GetDataPointer());
99 m_MetaArray.InitializeEssential(VLength, _metaElementType);
100 }
101
103 template <typename TValue>
104 void
105 SetInput(MET_ValueEnumType _metaElementType, const VariableLengthVector<TValue> * _vector)
106 {
107 m_Buffer = (const void *)(_vector->GetDataPointer());
108 m_MetaArray.InitializeEssential(_vector->Size(), _metaElementType);
109 }
110
118 template <typename TValue>
119 void
120 SetMultiChannelInput(MET_ValueEnumType _metaElementType, int, const Array<TValue> * _array)
121 {
122 int rows = _array->GetSize();
123 int cols = (*_array)[0].GetSize();
124
125 m_MetaArray.InitializeEssential(rows, _metaElementType, cols, nullptr, true, true);
126 m_Buffer = m_MetaArray.ElementData();
127 for (int i = 0; i < rows; ++i)
128 {
129 for (int j = 0; j < cols; ++j)
130 {
131 m_MetaArray.ElementData(i * cols + j, static_cast<double>((*_array)[i][j]));
132 }
133 }
134 }
135
138 itkSetMacro(Precision, unsigned int);
139 itkGetConstMacro(Precision, unsigned int);
142 void
143 ConvertTo(MET_ValueEnumType _metaElementType);
144
146 void
148
149protected:
152 void
153 PrintSelf(std::ostream & os, Indent indent) const override;
154
155private:
156 bool m_Binary{ false };
157
158 unsigned int m_Precision{ 6 };
159
160 std::string m_FileName{};
161 std::string m_DataFileName{};
162
163 MetaArray m_MetaArray{};
164
165 const void * m_Buffer{ nullptr };
166};
167} // namespace itk
168
169#endif // itkMetaArrayWriter_h
Array class with size defined at construction time.
Definition itkArray.h:48
SizeValueType Size() const
Definition itkArray.h:130
SizeValueType GetSize() const
Definition itkArray.h:159
A templated class holding a n-Dimensional covariant vector.
Simulate a standard C array with copy semantics.
ValueType * GetDataPointer()
Control indentation during Print() invocation.
Definition itkIndent.h:50
LightProcessObject Superclass
SmartPointer< const Self > ConstPointer
void PrintSelf(std::ostream &os, Indent indent) const override
void SetInput(MET_ValueEnumType _metaElementType, const VariableLengthVector< TValue > *_vector)
void SetInput(MET_ValueEnumType _metaElementType, const Array< TValue > *_array)
~MetaArrayWriter() override
void SetInput(MET_ValueEnumType _metaElementType, const FixedArray< TValue, VLength > *_array)
void SetInput(MET_ValueEnumType _metaElementType, const Vector< TValue, VLength > *_vector)
void SetInput(MET_ValueEnumType _metaElementType, const CovariantVector< TValue, VLength > *_vector)
void ConvertTo(MET_ValueEnumType _metaElementType)
SmartPointer< Self > Pointer
void SetMultiChannelInput(MET_ValueEnumType _metaElementType, int, const Array< TValue > *_array)
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....