ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkMetaSceneConverter.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 itkMetaSceneConverter_h
19#define itkMetaSceneConverter_h
20
21#include "itkObject.h"
23
24#include "metaScene.h"
25#include "itkMetaEvent.h"
26#include "itkSpatialObject.h"
28
29#include <string>
30#include <map>
31
32namespace itk
33{
45template <unsigned int VDimension = 3,
46 typename PixelType = unsigned char,
48class ITK_TEMPLATE_EXPORT MetaSceneConverter : public Object
49{
50public:
56
57 itkNewMacro(Self);
58
60 itkOverrideGetNameOfClassMacro(MetaSceneConverter);
61
66
70 using ConverterMapType = std::map<std::string, MetaConverterPointer>;
71
79 itkSetMacro(MetaIOVersion, unsigned int);
80 itkGetConstMacro(MetaIOVersion, unsigned int);
84 ReadMeta(const std::string & name);
85
87 bool
89 const std::string & fileName,
90 unsigned int depth = SpatialObjectType::MaximumDepth,
91 const std::string & soName = "");
92
93 itkGetMacro(Event, MetaEvent *);
94 itkSetObjectMacro(Event, MetaEvent);
95
98 itkSetMacro(BinaryPoints, bool);
99 itkGetConstMacro(BinaryPoints, bool);
100 itkBooleanMacro(BinaryPoints);
104 itkSetMacro(TransformPrecision, unsigned int);
105 itkGetMacro(TransformPrecision, unsigned int);
109 itkSetMacro(WriteImagesInSeparateFile, bool);
110 itkGetConstMacro(WriteImagesInSeparateFile, bool);
111 itkBooleanMacro(WriteImagesInSeparateFile);
119 void
120 RegisterMetaConverter(const std::string & metaTypeName,
121 const std::string & spatialObjectTypeName,
122 MetaConverterBaseType * converter);
123
128 MetaScene *
130 unsigned int depth = SpatialObjectType::MaximumDepth,
131 const std::string & name = "");
132
134 CreateSpatialObjectScene(MetaScene * mScene);
135
136protected:
138 ~MetaSceneConverter() override = default;
139
140private:
142
143 using MetaObjectListType = std::list<MetaObject *>;
144
145 template <typename TConverter>
146 MetaObject *
148 {
149 auto converter = TConverter::New();
150 // needed just for Image & ImageMask
151 converter->SetMetaIOVersion(m_MetaIOVersion);
152 converter->SetWriteImagesInSeparateFile(this->m_WriteImagesInSeparateFile);
153 return converter->SpatialObjectToMetaObject(so);
154 }
155 template <typename TConverter>
156 SpatialObjectPointer
157 MetaObjectToSpatialObject(const MetaObject * mo)
158 {
159 auto converter = TConverter::New();
160 converter->SetMetaIOVersion(m_MetaIOVersion);
161 return converter->MetaObjectToSpatialObject(mo);
162 }
163 void
164 SetTransform(MetaObject * obj, const TransformType * transform);
165
166 void
167 SetTransform(SpatialObjectType * so, const MetaObject * meta);
168
172 unsigned int m_TransformPrecision{};
174 unsigned int m_MetaIOVersion{ 0 };
175};
176} // end namespace itk
177
178#ifndef ITK_MANUAL_INSTANTIATION
179# include "itkMetaSceneConverter.hxx"
180#endif
181
182#endif
Base class for MetaObject<->SpatialObject converters.
Event abstract class.
SpatialObjectPointer MetaObjectToSpatialObject(const MetaObject *mo)
SpatialObjectPointer CreateSpatialObjectScene(MetaScene *mScene)
typename MetaConverterBaseType::Pointer MetaConverterPointer
void SetTransform(SpatialObjectType *so, const MetaObject *meta)
std::list< MetaObject * > MetaObjectListType
SmartPointer< Self > Pointer
typename SpatialObjectType::Pointer SpatialObjectPointer
SmartPointer< const Self > ConstPointer
bool WriteMeta(const SpatialObjectType *soScene, const std::string &fileName, unsigned int depth=SpatialObjectType::MaximumDepth, const std::string &soName="")
void RegisterMetaConverter(const std::string &metaTypeName, const std::string &spatialObjectTypeName, MetaConverterBaseType *converter)
itk::SpatialObject< VDimension > SpatialObjectType
MetaConverterBase< VDimension > MetaConverterBaseType
std::map< std::string, MetaConverterPointer > ConverterMapType
~MetaSceneConverter() override=default
void SetTransform(MetaObject *obj, const TransformType *transform)
MetaObject * SpatialObjectToMetaObject(SpatialObjectConstPointer &so)
MetaScene * CreateMetaScene(const SpatialObjectType *soScene, unsigned int depth=SpatialObjectType::MaximumDepth, const std::string &name="")
typename SpatialObjectType::TransformType TransformType
SpatialObjectPointer ReadMeta(const std::string &name)
typename SpatialObjectType::ConstPointer SpatialObjectConstPointer
Implements transparent reference counting.
Implementation of the composite pattern.
SmartPointer< const Self > ConstPointer
static constexpr unsigned int MaximumDepth
AffineTransform< ScalarType, VDimension > TransformType
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....