ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkMRCHeaderObject.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 itkMRCHeaderObject_h
19#define itkMRCHeaderObject_h
20#include "ITKIOMRCExport.h"
21
22#include "itkObjectFactory.h"
23#include "itkLightObject.h"
24#include "itkIntTypes.h"
25
26namespace itk
27{
28
48class ITKIOMRC_EXPORT MRCHeaderObject : public LightObject
49{
50public:
51 ITK_DISALLOW_COPY_AND_MOVE(MRCHeaderObject);
52
58
66 struct Header
67 {
68 int32_t nx;
69 int32_t ny;
70 int32_t nz;
71
81 int32_t mode;
82
84 int32_t nxstart;
85 int32_t nystart;
86 int32_t nzstart;
87
89 int32_t mx;
90 int32_t my;
91 int32_t mz;
92
94 float xlen;
95 float ylen;
96 float zlen;
97
99 float alpha;
100 float beta;
101 float gamma;
102
103 int32_t mapc;
104 int32_t mapr;
105 int32_t maps;
106
107 // These need to be set for proper scaling of
108 // non byte data.
109 float amin;
110 float amax;
111 float amean;
112
113 int16_t ispg;
114 int16_t nsymbt;
115
116 int32_t next;
117 int16_t creatid;
118
119 int8_t notused1[30];
120
121 // These two values specify the structure of data in the
122 // extended header; their meaning depend on whether the
123 // extended header has the Agard format, a series of
124 // 4-byte integers then real numbers, or has data
125 // produced by SerialEM, a series of short integers.
126 // SerialEM stores a float as two shorts, s1 and s2, by:
127 // value = (sign of s1)*(|s1|*256 + (|s2| modulo 256))
128 // * 2**((sign of s2) * (|s2|/256))
129
130 int16_t nint; // Number of integers per section (Agard format) or
131 // number of bytes per section (SerialEM format)
132 int16_t nreal; // Number of reals per section (Agard format) or
133 // flags for which types of short data (SerialEM format):
134 // 1 = tilt angle * 100 (2 bytes)
135 // 2 = piece coordinates for montage (6 bytes)
136 // 4 = Stage position * 25 (4 bytes)
137 // 8 = Magnification / 100 (2 bytes)
138 // 16 = Intensity * 25000 (2 bytes)
139 // 32 = Exposure dose in e-/A2, a float in 4 bytes
140 // 128, 512: Reserved for 4-byte items
141 // 64, 256, 1024: Reserved for 2-byte items
142 // If the number of bytes implied by these flags does
143 // not add up to the value in nint, then nint and nreal
144 // are interpreted as ints and reals per section
145
147 int8_t notused2[28];
148
149 // Explanation of type of data.
150 int16_t idtype; // ( 0 = mono, 1 = tilt, 2 = tilts, 3 = lina, 4 =
151 // lins)
152 int16_t lens;
153 int16_t nd1; // for idtype = 1, nd1 = axis (1, 2, or 3)
154 int16_t nd2;
155 int16_t vd1; // vd1 = 100. * tilt increment
156 int16_t vd2; // vd2 = 100. * starting angle
157
158 // Used to rotate model to match new rotated image.
159 float tiltangles[6]; // 0,1,2 = original: 3,4,5 = current
160
161 // NEW-STYLE MRC image2000 HEADER - IMOD 2.6.20 and above:
162 float xorg; // Origin of image. Used to auto translate model
163 float yorg; // to match a new image that has been translated.
164 float zorg;
165
166 char cmap[4];
167 char stamp[4];
169 float rms;
170
171 // ALL HEADERS:
172 int32_t nlabl;
173 char label[10][80];
174 };
175
178 {
179 float atilt;
180 float btilt;
181 float xstage;
182 float ystage;
183 float zstage;
184 float xshift;
185 float yshift;
186 float defocus;
187 float exptime;
188 float meanint;
189 float tiltaxis;
190 float pixelsize;
192 char notused[76];
193 };
194
196 enum
197 {
206 };
207
209 enum
210 {
214 };
215
216public:
218 itkNewMacro(Self);
219
221 itkOverrideGetNameOfClassMacro(MRCHeaderObject);
222
223 void
225
236 bool
237 SetHeader(const Header * buffer);
238
239 const Header &
240 GetHeader() const;
241
250 bool
251 SetExtendedHeader(const void * buffer);
252
258
262 {
263 return sizeof(Header);
264 }
265
269 bool
271
273 Header m_Header{}; // FIXME : This should be private and
274 // should have Get/Set Methods.
275
276protected:
279
281 void
282 swapHeader(bool bigEndian);
283
285 void
286 PrintSelf(std::ostream & os, Indent indent) const override;
287
288private:
290 void * m_ExtendedHeader{ nullptr };
291
293
295};
296} // namespace itk
297
298#endif
Control indentation during Print() invocation.
Definition itkIndent.h:50
const Header & GetHeader() const
bool SetHeader(const Header *buffer)
void DeepCopy(ConstPointer h)
bool SetExtendedHeader(const void *buffer)
SmartPointer< const Self > ConstPointer
SizeValueType GetHeaderSize() const
bool IsOriginalHeaderBigEndian() const
SizeValueType GetExtendedHeaderSize() const
FeiExtendedHeader * m_ExtendedFeiHeader
void swapHeader(bool bigEndian)
SizeValueType m_ExtendedHeaderSize
void PrintSelf(std::ostream &os, Indent indent) const override
SmartPointer< Self > Pointer
~MRCHeaderObject() override
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86