VTK  9.1.0
vtkOMETIFFReader.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkOMETIFFReader.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
40#ifndef vtkOMETIFFReader_h
41#define vtkOMETIFFReader_h
42
43#include "vtkTIFFReader.h"
44
45class VTKIOIMAGE_EXPORT vtkOMETIFFReader : public vtkTIFFReader
46{
47public:
50 void PrintSelf(ostream& os, vtkIndent indent) override;
51
53 int CanReadFile(VTK_FILEPATH const char* fname) override;
54 const char* GetFileExtensions() override { return ".ome.tif .ome.tiff"; }
55 const char* GetDescriptiveName() override { return "OME TIFF"; }
57
58protected:
61
63 vtkInformationVector* outputVector) override;
64 void ExecuteInformation() override;
66
67private:
68 vtkOMETIFFReader(const vtkOMETIFFReader&) = delete;
69 void operator=(const vtkOMETIFFReader&) = delete;
70
71 class vtkOMEInternals;
72 vtkOMEInternals* OMEInternals;
73};
74
75#endif
general representation of visualization data
a simple class to control print indentation
Definition: vtkIndent.h:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
reader for OME TIFF files
const char * GetFileExtensions() override
Get the file extensions for this format.
~vtkOMETIFFReader() override
int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
static vtkOMETIFFReader * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
const char * GetDescriptiveName() override
Return a descriptive name for the file format that might be useful in a GUI.
void ExecuteInformation() override
void ExecuteDataWithInformation(vtkDataObject *out, vtkInformation *outInfo) override
This is a convenience method that is implemented in many subclasses instead of RequestData.
int CanReadFile(VTK_FILEPATH const char *fname) override
read TIFF files
Definition: vtkTIFFReader.h:91
#define VTK_FILEPATH