VTK  9.6.20260204
vtkOMETIFFReader.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
32
33#ifndef vtkOMETIFFReader_h
34#define vtkOMETIFFReader_h
35
36#include "vtkTIFFReader.h"
37
38VTK_ABI_NAMESPACE_BEGIN
39class VTKIOIMAGE_EXPORT vtkOMETIFFReader : public vtkTIFFReader
40{
41public:
44 void PrintSelf(ostream& os, vtkIndent indent) override;
45
48 int CanReadFile(VTK_FILEPATH const char* fname) override;
49 const char* GetFileExtensions() override { return ".ome.tif .ome.tiff"; }
50 const char* GetDescriptiveName() override { return "OME TIFF"; }
52
53protected:
56
58 vtkInformationVector* outputVector) override;
59 void ExecuteInformation() override;
61
62private:
63 vtkOMETIFFReader(const vtkOMETIFFReader&) = delete;
64 void operator=(const vtkOMETIFFReader&) = delete;
65
66 class vtkOMEInternals;
67 vtkOMEInternals* OMEInternals;
68};
69
70VTK_ABI_NAMESPACE_END
71#endif
general representation of visualization data
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
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
int CanReadFile(const char *fname) override
Return non zero if the reader can read the given file name.
void ExecuteDataWithInformation(vtkDataObject *out, vtkInformation *outInfo) override
This is a convenience method that is implemented in many subclasses instead of RequestData.
int CanReadFile(const char *fname) override
Is the given file name a tiff file?
#define VTK_FILEPATH