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
Store vtkAlgorithm input/output information.
abstract class to specify dataset behavior
Definition: vtkDataSet.h:56
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Subclasses can reimplement this method to translate the update extent requests from each output port ...
vtkMultiProcessController * Controller
vtkTypeBool UseInputBounds
int vtkTypeBool
Definition: vtkABI.h:69
a simple class to control print indentation
Definition: vtkIndent.h:33
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
Subclasses can reimplement this method to collect information from their inputs and set information f...
probe dataset in parallel using a vtkImageData
int FillInputPortInformation(int port, vtkInformation *info) override
These method should be reimplemented by subclasses that have more than a single input or single outpu...
Generic algorithm superclass for image algs.
Store zero or more vtkInformation instances.
static vtkAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called in response to a REQUEST_DATA request from the executive.
Multiprocessing communication superclass.