VTK
vtkImageContinuousErode3D.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageContinuousErode3D.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 =========================================================================*/
24 #ifndef vtkImageContinuousErode3D_h
25 #define vtkImageContinuousErode3D_h
26 
27 
28 #include "vtkImagingMorphologicalModule.h" // For export macro
30 
32 
33 class VTKIMAGINGMORPHOLOGICAL_EXPORT vtkImageContinuousErode3D : public vtkImageSpatialAlgorithm
34 {
35 public:
37 
43  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
45 
50  void SetKernelSize(int size0, int size1, int size2);
51 
52 protected:
54  ~vtkImageContinuousErode3D() VTK_OVERRIDE;
55 
57 
58  void ThreadedRequestData(vtkInformation *request,
59  vtkInformationVector **inputVector,
60  vtkInformationVector *outputVector,
61  vtkImageData ***inData, vtkImageData **outData,
62  int extent[6], int id) VTK_OVERRIDE;
63  int RequestData(vtkInformation *request,
64  vtkInformationVector **inputVector,
65  vtkInformationVector *outputVector) VTK_OVERRIDE;
66 
67 private:
68  vtkImageContinuousErode3D(const vtkImageContinuousErode3D&) VTK_DELETE_FUNCTION;
69  void operator=(const vtkImageContinuousErode3D&) VTK_DELETE_FUNCTION;
70 };
71 
72 #endif
Store vtkAlgorithm input/output information.
Create a binary image of an ellipsoid.
a simple class to control print indentation
Definition: vtkIndent.h:33
topologically and geometrically regular array of data
Definition: vtkImageData.h:39
Filters that operate on pixel neighborhoods.
Erosion implemented as a minimum.
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkImageSpatialAlgorithm * New()