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) VTK_OVERRIDE;
34 
35  static vtkPResampleFilter *New();
36 
38 
41  virtual void SetController(vtkMultiProcessController*);
42  vtkGetObjectMacro(Controller, vtkMultiProcessController);
44 
46 
50  vtkSetMacro(UseInputBounds, int);
51  vtkGetMacro(UseInputBounds, int);
52  vtkBooleanMacro(UseInputBounds, int);
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() VTK_OVERRIDE;
75 
76  // Usual data generation method
77  int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
78  int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
79  int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
80  int FillInputPortInformation(int port, vtkInformation *info) VTK_OVERRIDE;
81 
82  double* CalculateBounds(vtkDataSet* input);
83 
85  int UseInputBounds;
86  double CustomSamplingBounds[6];
87  int SamplingDimension[3];
88  double Bounds[6];
89 
90 private:
91  vtkPResampleFilter(const vtkPResampleFilter&) VTK_DELETE_FUNCTION;
92  void operator=(const vtkPResampleFilter&) VTK_DELETE_FUNCTION;
93 
94 };
95 
96 #endif
Store vtkAlgorithm input/output information.
abstract class to specify dataset behavior
Definition: vtkDataSet.h:56
a simple class to control print indentation
Definition: vtkIndent.h:33
probe dataset in parallel using a vtkImageData
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
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.
vtkBooleanMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
Multiprocessing communication superclass.