VTK  9.0.1
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 =========================================================================*/
33 #ifndef vtkImageCast_h
34 #define vtkImageCast_h
35 
36 #include "vtkImagingCoreModule.h" // For export macro
38 
39 class VTKIMAGINGCORE_EXPORT vtkImageCast : public vtkThreadedImageAlgorithm
40 {
41 public:
42  static vtkImageCast* New();
44  void PrintSelf(ostream& os, vtkIndent indent) override;
45 
47 
50  vtkSetMacro(OutputScalarType, int);
51  vtkGetMacro(OutputScalarType, int);
52  void SetOutputScalarTypeToFloat() { this->SetOutputScalarType(VTK_FLOAT); }
53  void SetOutputScalarTypeToDouble() { this->SetOutputScalarType(VTK_DOUBLE); }
54  void SetOutputScalarTypeToInt() { this->SetOutputScalarType(VTK_INT); }
55  void SetOutputScalarTypeToUnsignedInt() { this->SetOutputScalarType(VTK_UNSIGNED_INT); }
56  void SetOutputScalarTypeToLong() { this->SetOutputScalarType(VTK_LONG); }
57  void SetOutputScalarTypeToUnsignedLong() { this->SetOutputScalarType(VTK_UNSIGNED_LONG); }
58  void SetOutputScalarTypeToShort() { this->SetOutputScalarType(VTK_SHORT); }
59  void SetOutputScalarTypeToUnsignedShort() { this->SetOutputScalarType(VTK_UNSIGNED_SHORT); }
60  void SetOutputScalarTypeToUnsignedChar() { this->SetOutputScalarType(VTK_UNSIGNED_CHAR); }
61  void SetOutputScalarTypeToChar() { this->SetOutputScalarType(VTK_CHAR); }
63 
65 
73  vtkSetMacro(ClampOverflow, vtkTypeBool);
74  vtkGetMacro(ClampOverflow, vtkTypeBool);
75  vtkBooleanMacro(ClampOverflow, vtkTypeBool);
77 
78 protected:
79  vtkImageCast();
80  ~vtkImageCast() override {}
81 
85 
86  void ThreadedExecute(vtkImageData* inData, vtkImageData* outData, int ext[6], int id) override;
87 
88 private:
89  vtkImageCast(const vtkImageCast&) = delete;
90  void operator=(const vtkImageCast&) = delete;
91 };
92 
93 #endif
Image Data type Casting Filter.
Definition: vtkImageCast.h:39
#define VTK_UNSIGNED_INT
Definition: vtkType.h:49
int OutputScalarType
Definition: vtkImageCast.h:83
virtual void ThreadedExecute(vtkImageData *inData, vtkImageData *outData, int extent[6], int threadId)
Store vtkAlgorithm input/output information.
#define VTK_UNSIGNED_SHORT
Definition: vtkType.h:47
void SetOutputScalarTypeToInt()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:54
~vtkImageCast() override
Definition: vtkImageCast.h:80
void SetOutputScalarTypeToUnsignedChar()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:60
vtkTypeBool ClampOverflow
Definition: vtkImageCast.h:82
int vtkTypeBool
Definition: vtkABI.h:69
#define VTK_DOUBLE
Definition: vtkType.h:53
Generic filter that has one input.
#define VTK_FLOAT
Definition: vtkType.h:52
a simple class to control print indentation
Definition: vtkIndent.h:33
topologically and geometrically regular array of data
Definition: vtkImageData.h:41
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
Subclasses can reimplement this method to collect information from their inputs and set information f...
#define VTK_SHORT
Definition: vtkType.h:46
#define VTK_CHAR
Definition: vtkType.h:43
#define VTK_LONG
Definition: vtkType.h:50
void SetOutputScalarTypeToUnsignedLong()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:57
void SetOutputScalarTypeToDouble()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:53
void SetOutputScalarTypeToShort()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:58
#define VTK_UNSIGNED_CHAR
Definition: vtkType.h:45
void SetOutputScalarTypeToUnsignedInt()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:55
void SetOutputScalarTypeToUnsignedShort()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:59
Store zero or more vtkInformation instances.
static vtkAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
#define VTK_UNSIGNED_LONG
Definition: vtkType.h:51
void SetOutputScalarTypeToLong()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:56
#define VTK_INT
Definition: vtkType.h:48
void SetOutputScalarTypeToFloat()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:52
void SetOutputScalarTypeToChar()
Set the desired output scalar type to cast to.
Definition: vtkImageCast.h:61