ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkTIFFImageIO.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 itkTIFFImageIO_h
19#define itkTIFFImageIO_h
20#include "ITKIOTIFFExport.h"
21
22#include "itkImageIOBase.h"
23#include <fstream>
24
25namespace itk
26{
27// BTX
28class TIFFReaderInternal;
29// ETX
30
48class ITKIOTIFF_EXPORT TIFFImageIO : public ImageIOBase
49{
50public:
51 ITK_DISALLOW_COPY_AND_MOVE(TIFFImageIO);
52
57
59 using PaletteType = std::vector<RGBPixelType>;
60
62 itkNewMacro(Self);
63
65 itkOverrideGetNameOfClassMacro(TIFFImageIO);
66
67 /*-------- This part of the interface deals with reading data. ------ */
68
71 bool
72 CanReadFile(const char *) override;
73
75 void
77
79 void
80 Read(void * buffer) override;
81
83 virtual void
84 ReadVolume(void * buffer);
85
86 /*-------- This part of the interfaces deals with writing data. ----- */
87
90 bool
91 CanWriteFile(const char *) override;
92
95 void
97
100 void
101 Write(const void * buffer) override;
102
103 enum
104 {
111 };
112
113 // BTX
114 enum
115 { // Compression types
121 };
122 // ETX
123
128 void
130 {
131 this->UseCompressionOff();
132 this->SetCompressor("NoCompression");
133 }
134 void
136 {
137 this->UseCompressionOn();
138 this->SetCompressor("PackBits");
139 }
140 void
142 {
143 this->UseCompressionOn();
144 this->SetCompressor("JPEG");
145 }
146 void
148 {
149 this->UseCompressionOn();
150 this->SetCompressor("Deflate");
151 }
152 void
154 {
155 this->UseCompressionOn();
156 this->SetCompressor("LZW");
157 }
158
159
164 virtual void
165 SetJPEGQuality(int _JPEGQuality)
166 {
167 this->SetCompressionLevel(_JPEGQuality);
168 }
169 virtual int
171 {
172 return this->GetCompressionLevel();
173 }
174
175
180 itkGetConstReferenceMacro(ColorPalette, PaletteType);
181
184 void
186 {
187 if (this->m_ColorPalette != _arg)
188 {
189 this->m_ColorPalette = _arg;
190 this->Modified();
191 }
192 }
193
194protected:
196 ~TIFFImageIO() override;
197 void
198 PrintSelf(std::ostream & os, Indent indent) const override;
199
200 void
201 InternalSetCompressor(const std::string & _compressor) override;
202
203 // This method is protected because it does not keep
204 // ImageIO::m_Compressor and TIFFImageIO::m_Compression in sync.
205 void
206 SetCompression(int compression)
207 {
208 m_Compression = compression;
209 }
210
211 void
212 InternalWrite(const void * buffer);
213
214 void
216
217 void
218 ReadGenericImage(void * out, unsigned int width, unsigned int height);
219
220 // To support Zeiss images
221 void
222 ReadTwoSamplesPerPixelImage(void * out, unsigned int width, unsigned int height);
223
224 unsigned int
226
227 void
228 GetColor(uint64_t index, uint16_t * red, uint16_t * green, uint16_t * blue);
229
230 // Check that tag t can be found
231 bool
232 CanFindTIFFTag(unsigned int t);
233
234 // Read and returns the raw bytes of tag t
235 void *
236 ReadRawByteFromTag(unsigned int t, unsigned int & value_count);
237
238 // Populate m_ColorPalette from the file palette
239 // The palette corresponds to the one of the first page in case of multipage tiff
240 void
242
243 TIFFReaderInternal * m_InternalImage{};
244
245 void
247
249
251
252private:
253 void
254 AllocateTiffPalette(uint16_t bps);
255
256 void
257 ReadCurrentPage(void * buffer, size_t pixelOffset);
258
259 template <typename TComponent>
260 void
261 ReadGenericImage(void * _out, unsigned int width, unsigned int height);
262
263 template <typename TComponent>
264 void
265 RGBAImageToBuffer(void * out, const uint32_t * tempImage);
266
267 template <typename TType>
268 void
269 PutGrayscale(TType * to,
270 TType * from,
271 unsigned int xsize,
272 unsigned int ysize,
273 unsigned int toskew,
274 unsigned int fromskew);
275
276 template <typename TType>
277 void
278 PutRGB_(TType * to, TType * from, unsigned int xsize, unsigned int ysize, unsigned int toskew, unsigned int fromskew);
279
280
281 template <typename TType, typename TFromType>
282 void
284 TFromType * from,
285 unsigned int xsize,
286 unsigned int ysize,
287 unsigned int toskew,
288 unsigned int fromskew);
289
290 template <typename TType, typename TFromType>
291 void
292 PutPaletteRGB(TType * to,
293 TFromType * from,
294 unsigned int xsize,
295 unsigned int ysize,
296 unsigned int toskew,
297 unsigned int fromskew);
298
299 template <typename TType, typename TFromType>
300 void
302 TFromType * from,
303 unsigned int xsize,
304 unsigned int ysize,
305 unsigned int toskew,
306 unsigned int fromskew);
307
308 uint16_t * m_ColorRed{};
309 uint16_t * m_ColorGreen{};
310 uint16_t * m_ColorBlue{};
311 uint64_t m_TotalColors{ 0 };
313};
314} // end namespace itk
315
316#endif // itkTIFFImageIO_h
virtual void SetCompressionLevel(int _arg)
Set/Get a compression level hint.
virtual int GetCompressionLevel() const
virtual void UseCompressionOn()
virtual void SetCompressor(std::string _c)
Set/Get the compression algorithm to use.
virtual void UseCompressionOff()
Control indentation during Print() invocation.
Definition itkIndent.h:50
virtual void Modified() const
Represent Red, Green and Blue components for color images.
Definition itkRGBPixel.h:59
Implements transparent reference counting.
bool CanFindTIFFTag(unsigned int t)
void WriteImageInformation() override
SmartPointer< Self > Pointer
void Write(const void *buffer) override
unsigned int GetFormat()
void ReadTwoSamplesPerPixelImage(void *out, unsigned int width, unsigned int height)
void InternalSetCompressor(const std::string &_compressor) override
void SetCompression(int compression)
void AllocateTiffPalette(uint16_t bps)
void PutGrayscale(TType *to, TType *from, unsigned int xsize, unsigned int ysize, unsigned int toskew, unsigned int fromskew)
void ReadGenericImage(void *out, unsigned int width, unsigned int height)
virtual void SetJPEGQuality(int _JPEGQuality)
void SetCompressionToDeflate()
std::vector< RGBPixelType > PaletteType
void PutPaletteScalar(TType *to, TFromType *from, unsigned int xsize, unsigned int ysize, unsigned int toskew, unsigned int fromskew)
~TIFFImageIO() override
PaletteType m_ColorPalette
void SetCompressionToPackBits()
void PutPaletteRGB(TType *to, TFromType *from, unsigned int xsize, unsigned int ysize, unsigned int toskew, unsigned int fromskew)
uint16_t * m_ColorGreen
void PutPaletteGrayscale(TType *to, TFromType *from, unsigned int xsize, unsigned int ysize, unsigned int toskew, unsigned int fromskew)
void SetCompressionToNoCompression()
Set type and automatically enable/disable compression.
void PutRGB_(TType *to, TType *from, unsigned int xsize, unsigned int ysize, unsigned int toskew, unsigned int fromskew)
void SetColorPalette(const PaletteType _arg)
void * ReadRawByteFromTag(unsigned int t, unsigned int &value_count)
bool CanWriteFile(const char *) override
void GetColor(uint64_t index, uint16_t *red, uint16_t *green, uint16_t *blue)
ImageIOBase Superclass
void ReadGenericImage(void *_out, unsigned int width, unsigned int height)
TIFFReaderInternal * m_InternalImage
void InternalWrite(const void *buffer)
bool CanReadFile(const char *) override
void ReadCurrentPage(void *buffer, vcl_size_t pixelOffset)
void RGBAImageToBuffer(void *out, const uint32_t *tempImage)
void PrintSelf(std::ostream &os, Indent indent) const override
virtual void ReadVolume(void *buffer)
RGBPixel< unsigned short > RGBPixelType
uint16_t * m_ColorBlue
virtual int GetJPEGQuality() const
unsigned int m_ImageFormat
uint16_t * m_ColorRed
void ReadImageInformation() override
void Read(void *buffer) override
void PopulateColorPalette()
void InitializeColors()
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....