VTK  9.3.20240419
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
31 #ifndef vtkOMETIFFReader_h
32 #define vtkOMETIFFReader_h
33 
34 #include "vtkTIFFReader.h"
35 
36 VTK_ABI_NAMESPACE_BEGIN
37 class VTKIOIMAGE_EXPORT vtkOMETIFFReader : public vtkTIFFReader
38 {
39 public:
40  static vtkOMETIFFReader* New();
42  void PrintSelf(ostream& os, vtkIndent indent) override;
43 
45  int CanReadFile(VTK_FILEPATH const char* fname) override;
46  const char* GetFileExtensions() override { return ".ome.tif .ome.tiff"; }
47  const char* GetDescriptiveName() override { return "OME TIFF"; }
49 
50 protected:
52  ~vtkOMETIFFReader() override;
53 
55  vtkInformationVector* outputVector) override;
56  void ExecuteInformation() override;
58 
59 private:
60  vtkOMETIFFReader(const vtkOMETIFFReader&) = delete;
61  void operator=(const vtkOMETIFFReader&) = delete;
62 
63  class vtkOMEInternals;
64  vtkOMEInternals* OMEInternals;
65 };
66 
67 VTK_ABI_NAMESPACE_END
68 #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.
reader for OME TIFF files
~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...
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
static vtkOMETIFFReader * New()
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
const char * GetFileExtensions() override
Get the file extensions for this format.
read TIFF files
Definition: vtkTIFFReader.h:63
#define VTK_FILEPATH