VTK  9.2.5
vtkImageCast.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageCast.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 =========================================================================*/
148 #ifndef vtkImageCast_h
149 #define vtkImageCast_h
150 
151 #include "vtkImagingCoreModule.h" // For export macro
153 
154 class VTKIMAGINGCORE_EXPORT vtkImageCast : public vtkThreadedImageAlgorithm
155 {
156 public:
157  static vtkImageCast* New();
159  void PrintSelf(ostream& os, vtkIndent indent) override;
160 
162 
165  vtkSetMacro(OutputScalarType, int);
166  vtkGetMacro(OutputScalarType, int);
167  void SetOutputScalarTypeToFloat() { this->SetOutputScalarType(VTK_FLOAT); }
168  void SetOutputScalarTypeToDouble() { this->SetOutputScalarType(VTK_DOUBLE); }
169  void SetOutputScalarTypeToInt() { this->SetOutputScalarType(VTK_INT); }
170  void SetOutputScalarTypeToUnsignedInt() { this->SetOutputScalarType(VTK_UNSIGNED_INT); }
171  void SetOutputScalarTypeToLong() { this->SetOutputScalarType(VTK_LONG); }
172  void SetOutputScalarTypeToUnsignedLong() { this->SetOutputScalarType(VTK_UNSIGNED_LONG); }
173  void SetOutputScalarTypeToShort() { this->SetOutputScalarType(VTK_SHORT); }
174  void SetOutputScalarTypeToUnsignedShort() { this->SetOutputScalarType(VTK_UNSIGNED_SHORT); }
175  void SetOutputScalarTypeToUnsignedChar() { this->SetOutputScalarType(VTK_UNSIGNED_CHAR); }
176  void SetOutputScalarTypeToChar() { this->SetOutputScalarType(VTK_CHAR); }
178 
180 
188  vtkSetMacro(ClampOverflow, vtkTypeBool);
189  vtkGetMacro(ClampOverflow, vtkTypeBool);
190  vtkBooleanMacro(ClampOverflow, vtkTypeBool);
192 
193 protected:
195  ~vtkImageCast() override = default;
196 
200 
201  void ThreadedExecute(vtkImageData* inData, vtkImageData* outData, int ext[6], int id) override;
202 
203 private:
204  vtkImageCast(const vtkImageCast&) = delete;
205  void operator=(const vtkImageCast&) = delete;
206 };
207 
208 #endif
Image Data type Casting Filter.
Definition: vtkImageCast.h:155
void ThreadedExecute(vtkImageData *inData, vtkImageData *outData, int ext[6], int id) override
vtkTypeBool ClampOverflow
Definition: vtkImageCast.h:197
void SetOutputScalarTypeToLong()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:171
void SetOutputScalarTypeToFloat()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:167
void SetOutputScalarTypeToUnsignedLong()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:172
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
void SetOutputScalarTypeToDouble()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:168
void SetOutputScalarTypeToShort()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:173
static vtkImageCast * New()
int OutputScalarType
Definition: vtkImageCast.h:198
~vtkImageCast() override=default
void SetOutputScalarTypeToChar()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:176
void SetOutputScalarTypeToUnsignedChar()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:175
void SetOutputScalarTypeToInt()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:169
void SetOutputScalarTypeToUnsignedShort()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:174
void SetOutputScalarTypeToUnsignedInt()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:170
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
topologically and geometrically regular array of data
Definition: vtkImageData.h:163
a simple class to control print indentation
Definition: vtkIndent.h:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Generic filter that has one input.
int vtkTypeBool
Definition: vtkABI.h:69
#define VTK_SHORT
Definition: vtkType.h:48
#define VTK_UNSIGNED_INT
Definition: vtkType.h:51
#define VTK_DOUBLE
Definition: vtkType.h:55
#define VTK_UNSIGNED_CHAR
Definition: vtkType.h:47
#define VTK_UNSIGNED_SHORT
Definition: vtkType.h:49
#define VTK_INT
Definition: vtkType.h:50
#define VTK_FLOAT
Definition: vtkType.h:54
#define VTK_CHAR
Definition: vtkType.h:45
#define VTK_UNSIGNED_LONG
Definition: vtkType.h:53
#define VTK_LONG
Definition: vtkType.h:52