VTK  9.1.0
vtkImageAccumulate.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageAccumulate.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 =========================================================================*/
37 #ifndef vtkImageAccumulate_h
38 #define vtkImageAccumulate_h
39 
40 #include "vtkImageAlgorithm.h"
41 #include "vtkImagingStatisticsModule.h" // For export macro
42 
44 
45 class VTKIMAGINGSTATISTICS_EXPORT vtkImageAccumulate : public vtkImageAlgorithm
46 {
47 public:
50  void PrintSelf(ostream& os, vtkIndent indent) override;
51 
53 
62  vtkSetVector3Macro(ComponentSpacing, double);
63  vtkGetVector3Macro(ComponentSpacing, double);
65 
67 
76  vtkSetVector3Macro(ComponentOrigin, double);
77  vtkGetVector3Macro(ComponentOrigin, double);
79 
81 
89  void SetComponentExtent(int extent[6]);
90  void SetComponentExtent(int minX, int maxX, int minY, int maxY, int minZ, int maxZ);
91  void GetComponentExtent(int extent[6]);
92  int* GetComponentExtent() VTK_SIZEHINT(6) { return this->ComponentExtent; }
94 
96 
105 
107 
110  vtkSetClampMacro(ReverseStencil, vtkTypeBool, 0, 1);
111  vtkBooleanMacro(ReverseStencil, vtkTypeBool);
112  vtkGetMacro(ReverseStencil, vtkTypeBool);
114 
116 
121  vtkGetVector3Macro(Min, double);
122  vtkGetVector3Macro(Max, double);
123  vtkGetVector3Macro(Mean, double);
124  vtkGetVector3Macro(StandardDeviation, double);
125  vtkGetMacro(VoxelCount, vtkIdType);
127 
129 
132  vtkSetClampMacro(IgnoreZero, vtkTypeBool, 0, 1);
133  vtkGetMacro(IgnoreZero, vtkTypeBool);
134  vtkBooleanMacro(IgnoreZero, vtkTypeBool);
136 
137 protected:
140 
141  double ComponentSpacing[3];
142  double ComponentOrigin[3];
143  int ComponentExtent[6];
144 
147  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
148  vtkInformationVector* outputVector) override;
149 
151  double Min[3];
152  double Max[3];
153  double Mean[3];
154  double StandardDeviation[3];
156 
158 
160 
161 private:
162  vtkImageAccumulate(const vtkImageAccumulate&) = delete;
163  void operator=(const vtkImageAccumulate&) = delete;
164 };
165 
166 #endif
Generalized histograms up to 3 dimensions.
void SetStencilData(vtkImageStencilData *stencil)
Use a stencil to specify which voxels to accumulate.
~vtkImageAccumulate() override
vtkImageStencilData * GetStencil()
Use a stencil to specify which voxels to accumulate.
static vtkImageAccumulate * New()
int * GetComponentExtent()
Set/Get - The component extent sets the number/extent of the bins.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void GetComponentExtent(int extent[6])
Set/Get - The component extent sets the number/extent of the bins.
void SetComponentExtent(int minX, int maxX, int minY, int maxY, int minZ, int maxZ)
Set/Get - The component extent sets the number/extent of the bins.
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to translate the update extent requests from each output port ...
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 RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called in response to a REQUEST_DATA request from the executive.
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
void SetComponentExtent(int extent[6])
Set/Get - The component extent sets the number/extent of the bins.
Generic algorithm superclass for image algs.
efficient description of an image stencil
a simple class to control print indentation
Definition: vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
@ info
Definition: vtkX3D.h:382
@ port
Definition: vtkX3D.h:453
@ extent
Definition: vtkX3D.h:351
int vtkTypeBool
Definition: vtkABI.h:69
int vtkIdType
Definition: vtkType.h:332
#define VTK_SIZEHINT(...)