VTK  9.2.5
vtkPResampleFilter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkPResampleFilter.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=========================================================================*/
24#ifndef vtkPResampleFilter_h
25#define vtkPResampleFilter_h
26
27#include "vtkFiltersParallelModule.h" // For export macro
28#include "vtkImageAlgorithm.h"
29
31
32class VTKFILTERSPARALLEL_EXPORT vtkPResampleFilter : public vtkImageAlgorithm
33{
34public:
36 void PrintSelf(ostream& os, vtkIndent indent) override;
37
39
41
45 vtkGetObjectMacro(Controller, vtkMultiProcessController);
47
49
53 vtkSetMacro(UseInputBounds, vtkTypeBool);
54 vtkGetMacro(UseInputBounds, vtkTypeBool);
55 vtkBooleanMacro(UseInputBounds, vtkTypeBool);
57
59
63 vtkSetVector6Macro(CustomSamplingBounds, double);
64 vtkGetVector6Macro(CustomSamplingBounds, double);
66
68
71 vtkSetVector3Macro(SamplingDimension, int);
72 vtkGetVector3Macro(SamplingDimension, int);
74
75protected:
78
79 // Usual data generation method
83 int FillInputPortInformation(int port, vtkInformation* info) override;
84
85 double* CalculateBounds(vtkDataSet* input);
86
89 double CustomSamplingBounds[6];
90 int SamplingDimension[3];
91 double Bounds[6];
92
93private:
95 void operator=(const vtkPResampleFilter&) = delete;
96};
97
98#endif
abstract class to specify dataset behavior
Definition: vtkDataSet.h:63
Generic algorithm superclass for image algs.
a simple class to control print indentation
Definition: vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Multiprocessing communication superclass.
probe dataset in parallel using a vtkImageData
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
double * CalculateBounds(vtkDataSet *input)
static vtkPResampleFilter * New()
~vtkPResampleFilter() override
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
vtkTypeBool UseInputBounds
virtual void SetController(vtkMultiProcessController *)
Set and get the controller.
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to translate the update extent requests from each output port ...
vtkMultiProcessController * Controller
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called in response to a REQUEST_DATA request from the executive.
int FillInputPortInformation(int port, vtkInformation *info) override
These method should be reimplemented by subclasses that have more than a single input or single outpu...
int vtkTypeBool
Definition: vtkABI.h:69