VTK  9.6.1
vtkSLCReader.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
3
16
17#ifndef vtkSLCReader_h
18#define vtkSLCReader_h
19
20#include "vtkIOImageModule.h" // For export macro
21#include "vtkImageReader2.h"
22
23VTK_ABI_NAMESPACE_BEGIN
24class VTKIOIMAGE_EXPORT vtkSLCReader : public vtkImageReader2
25{
26public:
27 static vtkSLCReader* New();
29 void PrintSelf(ostream& os, vtkIndent indent) override;
30
32
35 vtkGetMacro(Error, int);
37
41 int CanReadFile(VTK_FILEPATH const char* fname) override;
45 const char* GetFileExtensions() override { return ".slc"; }
46
50 const char* GetDescriptiveName() override { return "SLC"; }
51
52protected:
54 ~vtkSLCReader() override;
55
56 // Reads the file name and builds a vtkStructuredPoints dataset.
58
60 vtkInformationVector* outputVector) override;
61
62 // Decodes an array of eight bit run-length encoded data.
63 unsigned char* Decode8BitData(unsigned char* in_ptr, int size);
64 int Error;
65
66private:
67 vtkSLCReader(const vtkSLCReader&) = delete;
68 void operator=(const vtkSLCReader&) = delete;
69};
70
71VTK_ABI_NAMESPACE_END
72#endif
general representation of visualization data
vtkImageReader2()
Return a descriptive name for the file format that might be useful in a GUI.
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
const char * GetFileExtensions() override
.slc
static vtkSLCReader * New()
~vtkSLCReader() 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...
const char * GetDescriptiveName() override
SLC.
int CanReadFile(const char *fname) override
Is the given file an SLC file?
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
unsigned char * Decode8BitData(unsigned char *in_ptr, int size)
void ExecuteDataWithInformation(vtkDataObject *, vtkInformation *) override
This is a convenience method that is implemented in many subclasses instead of RequestData.
#define VTK_FILEPATH