VTK
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 
29 class VTKFILTERSPARALLEL_EXPORT vtkPResampleFilter : public vtkImageAlgorithm
30 {
31 public:
33  void PrintSelf(ostream& os, vtkIndent indent) override;
34 
35  static vtkPResampleFilter *New();
36 
38 
41  virtual void SetController(vtkMultiProcessController*);
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 
72 protected:
74  ~vtkPResampleFilter() override;
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 
90 private:
91  vtkPResampleFilter(const vtkPResampleFilter&) = delete;
92  void operator=(const vtkPResampleFilter&) = delete;
93 
94 };
95 
96 #endif
vtkImageAlgorithm::RequestData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called in response to a REQUEST_DATA request from the executive.
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:35
vtkImageAlgorithm.h
vtkImageAlgorithm
Generic algorithm superclass for image algs.
Definition: vtkImageAlgorithm.h:37
vtkX3D::port
Definition: vtkX3D.h:447
vtkImageAlgorithm::RequestUpdateExtent
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Subclasses can reimplement this method to translate the update extent requests from each output port ...
vtkImageAlgorithm::RequestInformation
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
Subclasses can reimplement this method to collect information from their inputs and set information f...
vtkMultiProcessController
Multiprocessing communication superclass.
Definition: vtkMultiProcessController.h:76
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkDataSet
abstract class to specify dataset behavior
Definition: vtkDataSet.h:56
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:80
vtkX3D::info
Definition: vtkX3D.h:376
vtkImageAlgorithm::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkPResampleFilter
probe dataset in parallel using a vtkImageData
Definition: vtkPResampleFilter.h:29
vtkAlgorithm::New
static vtkAlgorithm * New()
vtkPResampleFilter::Controller
vtkMultiProcessController * Controller
Definition: vtkPResampleFilter.h:84
vtkImageAlgorithm::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkTypeBool
int vtkTypeBool
Definition: vtkABI.h:69
vtkPResampleFilter::UseInputBounds
vtkTypeBool UseInputBounds
Definition: vtkPResampleFilter.h:85