VTK  9.2.6
vtkImageClip.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkImageClip.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=========================================================================*/
27
28#ifndef vtkImageClip_h
29#define vtkImageClip_h
30
31// I did not make this a subclass of in place filter because
32// the references on the data do not matter. I make no modifications
33// to the data.
34#include "vtkImageAlgorithm.h"
35#include "vtkImagingCoreModule.h" // For export macro
36
37class VTKIMAGINGCORE_EXPORT vtkImageClip : public vtkImageAlgorithm
38{
39public:
40 static vtkImageClip* New();
42 void PrintSelf(ostream& os, vtkIndent indent) override;
43
45
48 void SetOutputWholeExtent(int extent[6], vtkInformation* outInfo = nullptr);
49 void SetOutputWholeExtent(int minX, int maxX, int minY, int maxY, int minZ, int maxZ);
50 void GetOutputWholeExtent(int extent[6]);
53
55
57
62 vtkSetMacro(ClipData, vtkTypeBool);
63 vtkGetMacro(ClipData, vtkTypeBool);
64 vtkBooleanMacro(ClipData, vtkTypeBool);
66
67protected:
69 ~vtkImageClip() override = default;
70
71 // Time when OutputImageExtent was computed.
73 int Initialized; // Set the OutputImageExtent for the first time.
75
77
79
80 void CopyData(vtkImageData* inData, vtkImageData* outData, int* ext);
81
83
84private:
85 vtkImageClip(const vtkImageClip&) = delete;
86 void operator=(const vtkImageClip&) = delete;
87};
88
89#endif
static vtkImageClip * New()
void CopyData(vtkImageData *inData, vtkImageData *outData, int *ext)
int OutputWholeExtent[6]
void ResetOutputWholeExtent()
void SetOutputWholeExtent(int minX, int maxX, int minY, int maxY, int minZ, int maxZ)
The whole extent of the output has to be set explicitly.
void GetOutputWholeExtent(int extent[6])
The whole extent of the output has to be set explicitly.
~vtkImageClip() override=default
vtkTimeStamp CTime
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
int * GetOutputWholeExtent()
The whole extent of the output has to be set explicitly.
void SetOutputWholeExtent(int extent[6], vtkInformation *outInfo=nullptr)
The whole extent of the output has to be set explicitly.
vtkTypeBool ClipData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called in response to a REQUEST_DATA request from the executive.
topologically and geometrically regular array of data
a simple class to control print indentation
Definition vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
record modification and/or execution time
int vtkTypeBool
Definition vtkABI.h:69
#define VTK_SIZEHINT(...)