VTK  9.1.0
vtkImageStencilToImage.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageStencilToImage.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 =========================================================================*/
47 #ifndef vtkImageStencilToImage_h
48 #define vtkImageStencilToImage_h
49 
50 #include "vtkImageAlgorithm.h"
51 #include "vtkImagingStencilModule.h" // For export macro
52 
53 class VTKIMAGINGSTENCIL_EXPORT vtkImageStencilToImage : public vtkImageAlgorithm
54 {
55 public:
58  void PrintSelf(ostream& os, vtkIndent indent) override;
59 
61 
64  vtkSetMacro(OutsideValue, double);
65  vtkGetMacro(OutsideValue, double);
67 
69 
72  vtkSetMacro(InsideValue, double);
73  vtkGetMacro(InsideValue, double);
75 
77 
80  vtkSetMacro(OutputScalarType, int);
81  vtkGetMacro(OutputScalarType, int);
82  void SetOutputScalarTypeToFloat() { this->SetOutputScalarType(VTK_FLOAT); }
83  void SetOutputScalarTypeToDouble() { this->SetOutputScalarType(VTK_DOUBLE); }
84  void SetOutputScalarTypeToInt() { this->SetOutputScalarType(VTK_INT); }
85  void SetOutputScalarTypeToUnsignedInt() { this->SetOutputScalarType(VTK_UNSIGNED_INT); }
86  void SetOutputScalarTypeToLong() { this->SetOutputScalarType(VTK_LONG); }
87  void SetOutputScalarTypeToUnsignedLong() { this->SetOutputScalarType(VTK_UNSIGNED_LONG); }
88  void SetOutputScalarTypeToShort() { this->SetOutputScalarType(VTK_SHORT); }
89  void SetOutputScalarTypeToUnsignedShort() { this->SetOutputScalarType(VTK_UNSIGNED_SHORT); }
90  void SetOutputScalarTypeToUnsignedChar() { this->SetOutputScalarType(VTK_UNSIGNED_CHAR); }
91  void SetOutputScalarTypeToChar() { this->SetOutputScalarType(VTK_CHAR); }
93 
94 protected:
97 
99 
101 
102  double OutsideValue;
103  double InsideValue;
105 
107 
108 private:
110  void operator=(const vtkImageStencilToImage&) = delete;
111 };
112 
113 #endif
vtkImageStencilToImage::SetOutputScalarTypeToUnsignedShort
void SetOutputScalarTypeToUnsignedShort()
The desired output scalar type.
Definition: vtkImageStencilToImage.h:89
vtkImageStencilToImage::SetOutputScalarTypeToInt
void SetOutputScalarTypeToInt()
The desired output scalar type.
Definition: vtkImageStencilToImage.h:84
vtkImageStencilToImage::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called in response to a REQUEST_DATA request from the executive.
VTK_UNSIGNED_INT
#define VTK_UNSIGNED_INT
Definition: vtkType.h:51
vtkImageStencilToImage::OutputScalarType
int OutputScalarType
Definition: vtkImageStencilToImage.h:104
vtkImageStencilToImage::SetOutputScalarTypeToDouble
void SetOutputScalarTypeToDouble()
The desired output scalar type.
Definition: vtkImageStencilToImage.h:83
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:145
VTK_UNSIGNED_SHORT
#define VTK_UNSIGNED_SHORT
Definition: vtkType.h:49
vtkImageStencilToImage::FillInputPortInformation
int FillInputPortInformation(int, vtkInformation *) override
These method should be reimplemented by subclasses that have more than a single input or single outpu...
vtkImageAlgorithm.h
vtkImageStencilToImage::~vtkImageStencilToImage
~vtkImageStencilToImage() override
vtkImageStencilToImage::SetOutputScalarTypeToUnsignedLong
void SetOutputScalarTypeToUnsignedLong()
The desired output scalar type.
Definition: vtkImageStencilToImage.h:87
vtkImageStencilToImage::SetOutputScalarTypeToLong
void SetOutputScalarTypeToLong()
The desired output scalar type.
Definition: vtkImageStencilToImage.h:86
vtkImageAlgorithm
Generic algorithm superclass for image algs.
Definition: vtkImageAlgorithm.h:57
vtkImageStencilToImage::RequestInformation
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
vtkImageStencilToImage::SetOutputScalarTypeToUnsignedChar
void SetOutputScalarTypeToUnsignedChar()
The desired output scalar type.
Definition: vtkImageStencilToImage.h:90
vtkImageStencilToImage::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkImageStencilToImage::InsideValue
double InsideValue
Definition: vtkImageStencilToImage.h:103
vtkImageStencilToImage::SetOutputScalarTypeToFloat
void SetOutputScalarTypeToFloat()
The desired output scalar type.
Definition: vtkImageStencilToImage.h:82
vtkImageStencilToImage::OutsideValue
double OutsideValue
Definition: vtkImageStencilToImage.h:102
VTK_CHAR
#define VTK_CHAR
Definition: vtkType.h:45
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:113
VTK_FLOAT
#define VTK_FLOAT
Definition: vtkType.h:54
vtkImageStencilToImage::New
static vtkImageStencilToImage * New()
VTK_DOUBLE
#define VTK_DOUBLE
Definition: vtkType.h:55
VTK_UNSIGNED_CHAR
#define VTK_UNSIGNED_CHAR
Definition: vtkType.h:47
VTK_LONG
#define VTK_LONG
Definition: vtkType.h:52
vtkImageStencilToImage::SetOutputScalarTypeToUnsignedInt
void SetOutputScalarTypeToUnsignedInt()
The desired output scalar type.
Definition: vtkImageStencilToImage.h:85
VTK_UNSIGNED_LONG
#define VTK_UNSIGNED_LONG
Definition: vtkType.h:53
vtkImageStencilToImage::SetOutputScalarTypeToChar
void SetOutputScalarTypeToChar()
The desired output scalar type.
Definition: vtkImageStencilToImage.h:91
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:183
vtkImageStencilToImage::vtkImageStencilToImage
vtkImageStencilToImage()
VTK_SHORT
#define VTK_SHORT
Definition: vtkType.h:48
vtkImageStencilToImage::SetOutputScalarTypeToShort
void SetOutputScalarTypeToShort()
The desired output scalar type.
Definition: vtkImageStencilToImage.h:88
vtkImageStencilToImage
Convert an image stencil into an image.
Definition: vtkImageStencilToImage.h:54
VTK_INT
#define VTK_INT
Definition: vtkType.h:50