VTK  9.1.0
vtkSLCReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkSLCReader.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 =========================================================================*/
15 
25 #ifndef vtkSLCReader_h
26 #define vtkSLCReader_h
27 
28 #include "vtkIOImageModule.h" // For export macro
29 #include "vtkImageReader2.h"
30 
31 class VTKIOIMAGE_EXPORT vtkSLCReader : public vtkImageReader2
32 {
33 public:
34  static vtkSLCReader* New();
35  vtkTypeMacro(vtkSLCReader, vtkImageReader2);
36  void PrintSelf(ostream& os, vtkIndent indent) override;
37 
39 
42  vtkGetMacro(Error, int);
44 
48  int CanReadFile(VTK_FILEPATH const char* fname) override;
52  const char* GetFileExtensions() override { return ".slc"; }
53 
57  const char* GetDescriptiveName() override { return "SLC"; }
58 
59 protected:
61  ~vtkSLCReader() override;
62 
63  // Reads the file name and builds a vtkStructuredPoints dataset.
65 
67  vtkInformationVector* outputVector) override;
68 
69  // Decodes an array of eight bit run-length encoded data.
70  unsigned char* Decode8BitData(unsigned char* in_ptr, int size);
71  int Error;
72 
73 private:
74  vtkSLCReader(const vtkSLCReader&) = delete;
75  void operator=(const vtkSLCReader&) = delete;
76 };
77 
78 #endif
general representation of visualization data
Definition: vtkDataObject.h:60
Superclass of binary file readers.
a simple class to control print indentation
Definition: vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
read an SLC volume file.
Definition: vtkSLCReader.h:32
const char * GetFileExtensions() override
.slc
Definition: vtkSLCReader.h:52
unsigned char * Decode8BitData(unsigned char *in_ptr, int size)
~vtkSLCReader() override
static vtkSLCReader * New()
int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
int CanReadFile(VTK_FILEPATH const char *fname) override
Is the given file an SLC file?
const char * GetDescriptiveName() override
SLC.
Definition: vtkSLCReader.h:57
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void ExecuteDataWithInformation(vtkDataObject *, vtkInformation *) override
This is a convenience method that is implemented in many subclasses instead of RequestData.
@ size
Definition: vtkX3D.h:259
#define VTK_FILEPATH