VTK  9.1.0
vtkImageNonMaximumSuppression.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageNonMaximumSuppression.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 =========================================================================*/
56 #ifndef vtkImageNonMaximumSuppression_h
57 #define vtkImageNonMaximumSuppression_h
58 
59 #define VTK_IMAGE_NON_MAXIMUM_SUPPRESSION_MAGNITUDE_INPUT 0
60 #define VTK_IMAGE_NON_MAXIMUM_SUPPRESSION_VECTOR_INPUT 1
61 
62 #include "vtkImageData.h" // makes things a bit easier
63 #include "vtkImagingMorphologicalModule.h" // For export macro
65 
66 class VTKIMAGINGMORPHOLOGICAL_EXPORT vtkImageNonMaximumSuppression
68 {
69 public:
72  void PrintSelf(ostream& os, vtkIndent indent) override;
73 
75 
78  void SetMagnitudeInputData(vtkImageData* input) { this->SetInputData(0, input); }
79  void SetVectorInputData(vtkImageData* input) { this->SetInputData(1, input); }
81 
83 
87  vtkSetMacro(HandleBoundaries, vtkTypeBool);
88  vtkGetMacro(HandleBoundaries, vtkTypeBool);
89  vtkBooleanMacro(HandleBoundaries, vtkTypeBool);
91 
93 
96  vtkSetClampMacro(Dimensionality, int, 2, 3);
97  vtkGetMacro(Dimensionality, int);
99 
100 protected:
102  ~vtkImageNonMaximumSuppression() override = default;
103 
106 
108 
110 
112  vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData,
113  int outExt[6], int threadId) override;
114 
115 private:
117  void operator=(const vtkImageNonMaximumSuppression&) = delete;
118 };
119 
120 #endif
vtkImageData.h
vtkImageNonMaximumSuppression::RequestUpdateExtent
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to translate the update extent requests from each output port ...
vtkImageNonMaximumSuppression
Performs non-maximum suppression.
Definition: vtkImageNonMaximumSuppression.h:68
vtkImageNonMaximumSuppression::Dimensionality
int Dimensionality
Definition: vtkImageNonMaximumSuppression.h:105
vtkImageNonMaximumSuppression::SetVectorInputData
void SetVectorInputData(vtkImageData *input)
Set the magnitude and vector inputs.
Definition: vtkImageNonMaximumSuppression.h:79
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:145
vtkImageNonMaximumSuppression::New
static vtkImageNonMaximumSuppression * New()
vtkThreadedImageAlgorithm
Generic filter that has one input.
Definition: vtkThreadedImageAlgorithm.h:39
vtkImageNonMaximumSuppression::SetMagnitudeInputData
void SetMagnitudeInputData(vtkImageData *input)
Set the magnitude and vector inputs.
Definition: vtkImageNonMaximumSuppression.h:78
vtkThreadedImageAlgorithm.h
vtkImageAlgorithm::SetInputData
void SetInputData(vtkDataObject *)
Assign a data object as input.
vtkImageNonMaximumSuppression::RequestInformation
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
vtkImageNonMaximumSuppression::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkImageData
topologically and geometrically regular array of data
Definition: vtkImageData.h:157
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:113
vtkImageNonMaximumSuppression::ThreadedRequestData
void ThreadedRequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector, vtkImageData ***inData, vtkImageData **outData, int outExt[6], int threadId) override
If the subclass does not define an Execute method, then the task will be broken up,...
vtkImageNonMaximumSuppression::~vtkImageNonMaximumSuppression
~vtkImageNonMaximumSuppression() override=default
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:183
vtkImageNonMaximumSuppression::HandleBoundaries
vtkTypeBool HandleBoundaries
Definition: vtkImageNonMaximumSuppression.h:104
vtkImageNonMaximumSuppression::vtkImageNonMaximumSuppression
vtkImageNonMaximumSuppression()
vtkTypeBool
int vtkTypeBool
Definition: vtkABI.h:69