ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkGEAdwImageIO.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 *=========================================================================*/
31
32#ifndef itkGEAdwImageIO_h
33#define itkGEAdwImageIO_h
34#include "ITKIOGEExport.h"
35
36
37#include "itkIPLCommonImageIO.h"
38
39namespace itk
40{
50class ITKIOGE_EXPORT GEAdwImageIO : public IPLCommonImageIO
51{
52public:
53 ITK_DISALLOW_COPY_AND_MOVE(GEAdwImageIO);
54
59
61 itkNewMacro(Self);
62
64 itkOverrideGetNameOfClassMacro(GEAdwImageIO);
65
66 /*-------- This part of the interfaces deals with reading data. ----- */
67
74 bool
75 CanReadFile(const char * FileNameToRead) override;
76
77 /* * Set the spacing and dimension information for the set filename. */
78 // Implemented in superclass
79 // virtual void ReadImageInformation();
80
81 /* * Get the type of the pixel. */
82 // Implemented in superclass
83 // virtual const std::type_info& GetPixelType() const;
84
85 /* * Reads the data from disk into the memory buffer provided. */
86 // Implemented in superclass
87 // virtual void Read(void* buffer);
88
89 /* * Compute the size (in bytes) of the components of a pixel. For
90 * example, and RGB pixel of unsigned char would have a
91 * component size of 1 byte. */
92 // Implemented in superclass
93 // virtual unsigned int GetComponentSize() const;
94
95 /*-------- This part of the interfaces deals with writing data. ----- */
96
97 /* * Determine if the file can be written with this ImageIO implementation.
98 * \param FileNameToWrite The name of the file to test for writing.
99 * \author Hans J. Johnson
100 * \post Sets classes ImageIOBase::m_FileName variable to be FileNameToWrite
101 * \return Returns true if this ImageIO can write the file specified.
102 */
103 // Implemented in superclass
104 // virtual bool CanWriteFile(const char * FileNameToWrite);
105
106 /* * Set the spacing and dimension information for the set filename. */
107 // Implemented in superclass
108 // virtual void WriteImageInformation();
109
110 /* * Writes the data to disk from the memory buffer provided. Make sure
111 * that the IORegions has been set properly. */
112 // Implemented in superclass
113 // virtual void Write(const void* buffer);
114
115protected:
117 ~GEAdwImageIO() override;
118 // Implemented in superclass
119 // void PrintSelf(std::ostream& os, Indent indent) const;
121 ReadHeader(const char * FileNameToRead) override;
122
123private:
125 {
168
209
431
437 };
438};
439} // end namespace itk
440
441#endif // itkGEAdwImageIO_h
IPLCommonImageIO Superclass
~GEAdwImageIO() override
SmartPointer< Self > Pointer
GEImageHeader * ReadHeader(const char *FileNameToRead) override
bool CanReadFile(const char *FileNameToRead) override
Implements transparent reference counting.
This file was written as a modification to the itkMetaImageIO as a new method for reading in files fr...
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....