18#ifndef itkMetaArrayWriter_h
19#define itkMetaArrayWriter_h
20#include "ITKIOMetaExport.h"
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>
71 m_Buffer = (
const void *)(_array->data_block());
76 template <
typename TValue,
unsigned int VLength>
81 m_MetaArray.InitializeEssential(VLength, _metaElementType);
85 template <
typename TValue,
unsigned int VLength>
90 m_MetaArray.InitializeEssential(VLength, _metaElementType);
94 template <
typename TValue,
unsigned int VLength>
99 m_MetaArray.InitializeEssential(VLength, _metaElementType);
103 template <
typename TValue>
107 m_Buffer = (
const void *)(_vector->GetDataPointer());
108 m_MetaArray.InitializeEssential(_vector->Size(), _metaElementType);
118 template <
typename TValue>
123 int cols = (*_array)[0].GetSize();
125 m_MetaArray.InitializeEssential(rows, _metaElementType, cols,
nullptr,
true,
true);
127 for (
int i = 0; i < rows; ++i)
129 for (
int j = 0; j < cols; ++j)
131 m_MetaArray.ElementData(i * cols + j,
static_cast<double>((*_array)[i][j]));
138 itkSetMacro(Precision,
unsigned int);
139 itkGetConstMacro(Precision,
unsigned int);
Array class with size defined at construction time.
SizeValueType Size() const
SizeValueType GetSize() const
A templated class holding a n-Dimensional covariant vector.
Simulate a standard C array with copy semantics.
ValueType * GetDataPointer()
Control indentation during Print() invocation.
Implements transparent reference counting.
A templated class holding a n-Dimensional vector.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....