ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkIPLFileNameList.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/*=========================================================================
19 *
20 * Portions of this file are subject to the VTK Toolkit Version 3 copyright.
21 *
22 * Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
23 *
24 * For complete copyright, license and disclaimer of warranty information
25 * please refer to the NOTICE file at the top of the ITK source tree.
26 *
27 *=========================================================================*/
28#ifndef itkIPLFileNameList_h
29#define itkIPLFileNameList_h
30#include "ITKIOIPLExport.h"
31
32#include "itkMath.h"
33#include "itkMacro.h"
34#include "itkObject.h"
35
36#include <cstdio>
37#include <string>
38#include <list>
40#define IPLSetMacroDeclaration(name, type) virtual void Set##name(const type _arg)
41
42#define IPLSetMacroDefinition(class, name, type) \
43 void class ::Set##name(const type _arg) \
44 { \
45 ITK_GCC_PRAGMA_PUSH \
46 ITK_GCC_SUPPRESS_Wfloat_equal \
47 if (this->m_##name != _arg) \
48 { \
49 this->m_##name = _arg; \
50 } \
51 ITK_GCC_PRAGMA_POP \
52 } \
53 ITK_MACROEND_NOOP_STATEMENT
54
56#define IPLGetMacroDeclaration(name, type) virtual type Get##name()
57
58#define IPLGetMacroDefinition(class, name, type) \
59 type class ::Get##name() { return this->m_##name; } \
60 ITK_MACROEND_NOOP_STATEMENT
61namespace itk
62{
69{
70public:
72 {
74 m_SliceOffset = 0;
75 m_EchoNumber = 0;
76 m_ImageNumber = 0;
77 m_Data = nullptr;
78 }
79
80 IPLFileSortInfo(const char * const filename,
81 float sliceLocation,
82 int sliceOffset,
83 int echoNumber,
84 int imageNumber,
85 void * data = nullptr)
86 {
87 m_ImageFileName = filename;
88 m_SliceLocation = sliceLocation;
89 m_SliceOffset = sliceOffset;
90 m_EchoNumber = echoNumber;
91 m_ImageNumber = imageNumber;
92 m_Data = data;
93 }
94
96
97 IPLSetMacroDeclaration(ImageFileName, std::string);
98 IPLGetMacroDeclaration(ImageFileName, std::string);
99 IPLSetMacroDeclaration(SliceLocation, float);
100 IPLGetMacroDeclaration(SliceLocation, float);
101 IPLSetMacroDeclaration(SliceOffset, int);
102 IPLGetMacroDeclaration(SliceOffset, int);
103 IPLSetMacroDeclaration(EchoNumber, int);
104 IPLGetMacroDeclaration(EchoNumber, int);
105 IPLSetMacroDeclaration(ImageNumber, int);
106 IPLGetMacroDeclaration(ImageNumber, int);
108 IPLGetMacroDeclaration(Data, const void *);
109
110private:
111 std::string m_ImageFileName{};
116 const void * m_Data{};
117};
118
124class ITKIOIPL_EXPORT IPLFileNameList
125{
126public:
127 using ListType = std::vector<IPLFileSortInfo *>;
128 using IteratorType = ListType::iterator;
129 using ListSizeType = size_t;
130
131 enum
132 {
137 };
138
140 {
141 m_XDim = 0;
142 m_YDim = 0;
143 m_XRes = 0.0;
144 m_YRes = 0.0;
145 m_Key1 = 0;
147 m_Key2 = 0;
150 }
151
153
156 {
157 return m_List.begin();
158 }
159
160 IteratorType
162 {
163 return m_List.end();
164 }
165
167 operator[](unsigned int __n)
168 {
169 auto it = begin();
170 auto itend = end();
171
172 for (unsigned int i = 0; it != itend && i != __n; it++, i++)
173 {
174 }
175 if (it == itend)
176 {
177 return nullptr;
178 }
179 return *it;
180 }
181
182 ListSizeType
183 NumFiles() const
184 {
185 return m_List.size();
186 }
187
188 bool
189 AddElementToList(const char * const filename,
190 const float sliceLocation,
191 const int offset,
192 const int XDim,
193 const int YDim,
194 const float XRes,
195 const float YRes,
196 const int imageNumber,
197 const int Key1,
198 const int Key2)
199 {
200 if (m_List.empty())
201 {
202 m_XDim = XDim;
203 m_YDim = YDim;
204 m_XRes = XRes;
205 m_YRes = YRes;
206 m_Key1 = Key1;
207 m_Key2 = Key2;
208 }
209 else if (XDim != m_XDim || YDim != m_YDim)
210 {
211 return false;
212 }
214 {
215 return false;
216 }
217 else if (Key1 != m_Key1 || Key2 != m_Key2)
218 {
219 return true;
220 }
221 auto it = begin();
222 auto itend = end();
223 while (it != itend)
224 {
225 if (std::string(filename) == (*it)->GetImageFileName())
226 {
227 return true;
228 }
229 ++it;
230 }
231 m_List.push_back(new IPLFileSortInfo(filename,
232 sliceLocation,
233 offset,
234 0, // echo number
235 imageNumber));
236 return true;
237 }
238
239 void
240 RemoveElementFromList(const int ElementToRemove)
241 {
242 auto it = m_List.begin();
243 auto itend = m_List.end();
244
245 for (int i = 0; it != itend; i++, it++)
246 {
247 if (i != ElementToRemove)
248 {
249 break;
250 }
251 }
252 if (it == itend)
253 {
254 return;
255 }
256 m_List.erase(it);
257 }
258
259 void
261
262 void
264
265 void
267
270 {
271 return m_List.size();
272 }
273
286 IPLSetMacroDeclaration(SortOrder, int);
287
288private:
290 int m_XDim{};
291 int m_YDim{};
292 float m_XRes{};
293 float m_YRes{};
294 int m_Key1{};
296 int m_Key2{};
299};
300} // namespace itk
301#endif /* itkIPLFileNameList_h */
IPLGetMacroDeclaration(XRes, float)
std::vector< IPLFileSortInfo * > ListType
void RemoveElementFromList(const int ElementToRemove)
ListType::iterator IteratorType
IPLSetMacroDeclaration(SortOrder, int)
IPLSetMacroDeclaration(Key2, int)
IPLSetMacroDeclaration(XDim, int)
bool AddElementToList(const char *const filename, const float sliceLocation, const int offset, const int XDim, const int YDim, const float XRes, const float YRes, const int imageNumber, const int Key1, const int Key2)
IPLGetMacroDeclaration(Key1, int)
IPLGetMacroDeclaration(YDim, int)
IPLFileSortInfo * operator[](unsigned int __n)
ListSizeType NumFiles() const
IPLSetMacroDeclaration(Key1, int)
IPLGetMacroDeclaration(XDim, int)
virtual ~IPLFileNameList()
IPLGetMacroDeclaration(Key2, int)
IPLGetMacroDeclaration(YRes, float)
IPLSetMacroDeclaration(YRes, float)
IPLSetMacroDeclaration(YDim, int)
IPLSetMacroDeclaration(XRes, float)
ListSizeType GetnumImageInfoStructs() const
IPLGetMacroDeclaration(Data, const void *)
IPLSetMacroDeclaration(EchoNumber, int)
IPLSetMacroDeclaration(SliceLocation, float)
IPLGetMacroDeclaration(SliceOffset, int)
IPLGetMacroDeclaration(EchoNumber, int)
IPLSetMacroDeclaration(ImageNumber, int)
IPLSetMacroDeclaration(Data, void *)
virtual ~IPLFileSortInfo()
IPLGetMacroDeclaration(ImageFileName, std::string)
IPLGetMacroDeclaration(SliceLocation, float)
IPLSetMacroDeclaration(SliceOffset, int)
IPLGetMacroDeclaration(ImageNumber, int)
IPLSetMacroDeclaration(ImageFileName, std::string)
IPLFileSortInfo(const char *const filename, float sliceLocation, int sliceOffset, int echoNumber, int imageNumber, void *data=nullptr)
bool NotAlmostEquals(T1 x1, T2 x2)
Definition itkMath.h:689
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....