VTK  9.1.0
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=========================================================================*/
21#ifndef vtkPResampleFilter_h
22#define vtkPResampleFilter_h
23
24#include "vtkFiltersParallelModule.h" // For export macro
25#include "vtkImageAlgorithm.h"
26
28
29class VTKFILTERSPARALLEL_EXPORT vtkPResampleFilter : public vtkImageAlgorithm
30{
31public:
33 void PrintSelf(ostream& os, vtkIndent indent) override;
34
36
38
42 vtkGetObjectMacro(Controller, vtkMultiProcessController);
44
46
50 vtkSetMacro(UseInputBounds, vtkTypeBool);
51 vtkGetMacro(UseInputBounds, vtkTypeBool);
52 vtkBooleanMacro(UseInputBounds, vtkTypeBool);
54
56
60 vtkSetVector6Macro(CustomSamplingBounds, double);
61 vtkGetVector6Macro(CustomSamplingBounds, double);
63
65
68 vtkSetVector3Macro(SamplingDimension, int);
69 vtkGetVector3Macro(SamplingDimension, int);
71
72protected:
75
76 // Usual data generation method
81
82 double* CalculateBounds(vtkDataSet* input);
83
86 double CustomSamplingBounds[6];
87 int SamplingDimension[3];
88 double Bounds[6];
89
90private:
92 void operator=(const vtkPResampleFilter&) = delete;
93};
94
95#endif
abstract class to specify dataset behavior
Definition: vtkDataSet.h:166
Generic algorithm superclass for image algs.
a simple class to control print indentation
Definition: vtkIndent.h:113
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...
@ info
Definition: vtkX3D.h:382
@ port
Definition: vtkX3D.h:453
int vtkTypeBool
Definition: vtkABI.h:69