VTK  9.6.1
vtkImageMathematics.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
15
16#ifndef vtkImageMathematics_h
17#define vtkImageMathematics_h
18
19// Operation options.
20#define VTK_ADD 0
21#define VTK_SUBTRACT 1
22#define VTK_MULTIPLY 2
23#define VTK_DIVIDE 3
24#define VTK_INVERT 4
25#define VTK_SIN 5
26#define VTK_COS 6
27#define VTK_EXP 7
28#define VTK_LOG 8
29#define VTK_ABS 9
30#define VTK_SQR 10
31#define VTK_SQRT 11
32#define VTK_MIN 12
33#define VTK_MAX 13
34#define VTK_ATAN 14
35#define VTK_ATAN2 15
36#define VTK_MULTIPLYBYK 16
37#define VTK_ADDC 17
38#define VTK_CONJUGATE 18
39#define VTK_COMPLEX_MULTIPLY 19
40#define VTK_REPLACECBYK 20
41
42#include "vtkImagingMathModule.h" // For export macro
44
45VTK_ABI_NAMESPACE_BEGIN
46// Excluded from JavaScript wrapping because it provides overloads for SetInputConnection which
47// take precedence for all vtkAlgorithm(s)
50{
51public:
54 void PrintSelf(ostream& os, vtkIndent indent) override;
55
57
60 vtkSetMacro(Operation, int);
61 vtkGetMacro(Operation, int);
63
69
75
81
87
89
91
97
103
109
115
121
127
133
139
145
151
157
159
165
171
177
179
182 vtkSetMacro(ConstantK, double);
183 vtkGetMacro(ConstantK, double);
185
187
190 vtkSetMacro(ConstantC, double);
191 vtkGetMacro(ConstantC, double);
193
195
200 vtkBooleanMacro(DivideByZeroToC, vtkTypeBool);
202
204
208 virtual void SetInput1Data(vtkDataObject* in) { this->SetInputData(0, in); }
209 virtual void SetInput2Data(vtkDataObject* in) { this->AddInputData(0, in); }
210 void SetInputConnection(int idx, vtkAlgorithmOutput* input) override;
212 {
213 this->SetInputConnection(0, input);
214 }
215
216
223 virtual void ReplaceNthInputConnection(int idx, vtkAlgorithmOutput* input);
224
226
231 void SetInputData(int idx, vtkDataObject* input);
232 void SetInputData(vtkDataObject* input) { this->SetInputData(0, input); }
234
236
242 vtkDataObject* GetInput() { return this->GetInput(0); }
244
251
252protected:
254 ~vtkImageMathematics() override = default;
255
257 double ConstantK;
258 double ConstantC;
260
262
264 vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData,
265 int outExt[6], int threadId) override;
266
267 int FillInputPortInformation(int port, vtkInformation* info) override;
268
269private:
271 void operator=(const vtkImageMathematics&) = delete;
272};
273
274VTK_ABI_NAMESPACE_END
275#endif
Proxy object to connect input/output ports.
virtual void SetInputConnection(int port, vtkAlgorithmOutput *input)
Set the connection for the given input port index.
int GetNumberOfInputConnections(int port)
Get the number of inputs currently connected to a port.
general representation of visualization data
void SetInputData(vtkDataObject *)
Assign a data object as input.
virtual void AddInputData(vtkDataObject *)
Assign a data object as input.
topologically and geometrically regular array of data
void SetOperationToMultiply()
Set each pixel in the output image to the product of the corresponding pixels in Input1 and Input2.
void SetOperationToATAN()
Set each pixel in the output image to the arctangent of the corresponding pixel in Input1.
void SetInputConnection(int idx, vtkAlgorithmOutput *input) override
Set the inputs to this filter.
vtkDataObject * GetInput(int idx)
Get one input to this filter.
virtual void SetInput1Data(vtkDataObject *in)
Set the inputs to this filter.
void SetOperationToMultiplyByK()
Set each pixel in the output image to the product of ConstantK with the corresponding pixel in Input1...
void ThreadedRequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector, vtkImageData ***inData, vtkImageData **outData, int outExt[6], int threadId) override
If the subclass does not define an Execute method, then the task will be broken up,...
~vtkImageMathematics() override=default
void SetOperationToSquareRoot()
Set each pixel in the output image to the square root of the corresponding pixel in Input1.
void SetOperationToMin()
Set each pixel in the output image to the minimum of the corresponding pixels in Input1 and Input2.
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
void SetInputConnection(vtkAlgorithmOutput *input) override
Set the inputs to this filter.
virtual void ReplaceNthInputConnection(int idx, vtkAlgorithmOutput *input)
Replace one of the input connections with a new input.
void SetInputData(vtkDataObject *input)
Assign a data object as input.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual void SetInput2Data(vtkDataObject *in)
Set the inputs to this filter.
void SetOperationToDivide()
Set each pixel in the output image to the quotient of the corresponding pixels in Input1 and Input2 (...
void SetOperationToExp()
Set each pixel in the output image to the exponential of the corresponding pixel in Input1.
void SetInputData(int idx, vtkDataObject *input)
Assign a data object as input.
void SetOperationToSubtract()
Set each pixel in the output image to the difference of the corresponding pixels in Input1 and Input2...
void SetOperationToLog()
Set each pixel in the output image to the log of the corresponding pixel in Input1.
void SetOperationToMax()
Set each pixel in the output image to the maximum of the corresponding pixels in Input1 and Input2.
void SetOperationToAdd()
Set each pixel in the output image to the sum of the corresponding pixels in Input1 and Input2.
int FillInputPortInformation(int port, vtkInformation *info) override
int GetNumberOfInputs()
Get the number of inputs to this filter.
void SetOperationToReplaceCByK()
Find every pixel in Input1 that equals ConstantC and set the corresponding pixels in the Output to Co...
void SetOperationToSin()
Set each pixel in the output image to the sine of the corresponding pixel in Input1.
void SetOperationToAddConstant()
Set each pixel in the output image to the product of ConstantC with the corresponding pixel in Input1...
virtual void SetOperation(int)
Set/Get the Operation to perform.
void SetOperationToAbsoluteValue()
Set each pixel in the output image to the absolute value of the corresponding pixel in Input1.
static vtkImageMathematics * New()
void SetOperationToSquare()
Set each pixel in the output image to the square of the corresponding pixel in Input1.
void SetOperationToInvert()
Set each pixel in the output image to 1 over the corresponding pixel in Input1 and Input2 (output = 1...
vtkDataObject * GetInput()
Get one input to this filter.
void SetOperationToCos()
Set each pixel in the output image to the cosine of the corresponding pixel in Input1.
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
int vtkTypeBool
Definition vtkABI.h:64
#define VTK_SQRT
#define VTK_MULTIPLYBYK
#define VTK_LOG
#define VTK_ATAN
#define VTK_ATAN2
#define VTK_INVERT
#define VTK_SUBTRACT
#define VTK_EXP
#define VTK_MIN
#define VTK_MULTIPLY
#define VTK_COMPLEX_MULTIPLY
#define VTK_SIN
#define VTK_ABS
#define VTK_COS
#define VTK_ADD
#define VTK_SQR
#define VTK_MAX
#define VTK_REPLACECBYK
#define VTK_ADDC
#define VTK_CONJUGATE
#define VTK_DIVIDE
#define VTK_WRAPEXCLUDE_JAVASCRIPT