ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkMetaConverterBase.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 itkMetaConverterBase_h
19#define itkMetaConverterBase_h
20
21#include "itkSpatialObject.h"
22#include "metaObject.h"
23
24namespace itk
25{
26
41template <unsigned int VDimension = 3>
42class ITK_TEMPLATE_EXPORT MetaConverterBase : public Object
43{
44public:
50
52 itkOverrideGetNameOfClassMacro(MetaConverterBase);
53
57 using MetaObjectType = MetaObject;
59 itkSetMacro(MetaIOVersion, unsigned int);
60 itkGetConstMacro(MetaIOVersion, unsigned int);
61
64 ReadMeta(const char * name);
65
67 virtual bool
68 WriteMeta(const SpatialObjectType * spatialObject, const char * name);
69
70 void
72
73 void
75
79
81 virtual MetaObjectType *
82 SpatialObjectToMetaObject(const SpatialObjectType * spatialObject) = 0;
83
88 itkSetMacro(WriteImagesInSeparateFile, bool);
89 itkGetConstMacro(WriteImagesInSeparateFile, bool);
90 itkBooleanMacro(WriteImagesInSeparateFile);
92protected:
93 MetaConverterBase() = default;
94 ~MetaConverterBase() override = default;
95
97 virtual MetaObjectType *
99
100
101private:
103 unsigned int m_MetaIOVersion{ 0 };
104};
105
106} // namespace itk
107
108#ifndef ITK_MANUAL_INSTATIATION
109# include "itkMetaConverterBase.hxx"
110#endif
111
112#endif // itkMetaConverterBase_h
void MetaObjectToSpatialObjectBase(const MetaObjectType *mo, SpatialObjectPointer rval)
virtual SpatialObjectPointer MetaObjectToSpatialObject(const MetaObjectType *mo)=0
typename SpatialObjectType::Pointer SpatialObjectPointer
~MetaConverterBase() override=default
typename SpatialObjectType::ConstPointer SpatialObjectConstPointer
SpatialObject< VDimension > SpatialObjectType
void SpatialObjectToMetaObjectBase(SpatialObjectConstPointer spatialObject, MetaObjectType *mo)
virtual SpatialObjectPointer ReadMeta(const char *name)
virtual MetaObjectType * SpatialObjectToMetaObject(const SpatialObjectType *spatialObject)=0
SmartPointer< const Self > ConstPointer
virtual MetaObjectType * CreateMetaObject()=0
virtual bool WriteMeta(const SpatialObjectType *spatialObject, const char *name)
Implements transparent reference counting.
Implementation of the composite pattern.
SmartPointer< const Self > ConstPointer
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....