VTK  9.5.20251207
vtkPackLabels.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
51
52#ifndef vtkPackLabels_h
53#define vtkPackLabels_h
54
55#include "vtkDataArray.h" // For returning list of labels
56#include "vtkDataSetAlgorithm.h"
57#include "vtkFiltersCoreModule.h" // For export macro
58#include "vtkIdTypeArray.h" // For returning count of labels
59#include "vtkSmartPointer.h" // For returning list of labels
60#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
61
62VTK_ABI_NAMESPACE_BEGIN
63struct vtkLabelMap;
64
65class VTKFILTERSCORE_EXPORT VTK_MARSHALAUTO vtkPackLabels : public vtkDataSetAlgorithm
66{
67public:
69
73 static vtkPackLabels* New();
75 void PrintSelf(ostream& os, vtkIndent indent) override;
77
79
87 vtkDataArray* GetLabels() { return this->LabelsArray; }
89 {
90 return (this->LabelsArray ? this->LabelsArray->GetNumberOfTuples() : 0);
91 }
92
93
107
116
118
127 vtkGetMacro(SortBy, int);
131
133
148 vtkSetMacro(OutputScalarType, int);
149 vtkGetMacro(OutputScalarType, int);
156
158
165 vtkSetMacro(BackgroundValue, unsigned long);
166 vtkGetMacro(BackgroundValue, unsigned long);
168
170
176 vtkSetMacro(PassPointData, bool);
177 vtkGetMacro(PassPointData, bool);
178 vtkBooleanMacro(PassPointData, bool);
179 vtkSetMacro(PassCellData, bool);
180 vtkGetMacro(PassCellData, bool);
181 vtkBooleanMacro(PassCellData, bool);
182 vtkSetMacro(PassFieldData, bool);
183 vtkGetMacro(PassFieldData, bool);
184 vtkBooleanMacro(PassFieldData, bool);
186
187protected:
189 ~vtkPackLabels() override = default;
190
195 unsigned long BackgroundValue;
199
201
202private:
203 vtkPackLabels(const vtkPackLabels&) = delete;
204 void operator=(const vtkPackLabels&) = delete;
205};
206
207VTK_ABI_NAMESPACE_END
208#endif
dynamic, self-adjusting array of vtkIdType
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiation, obtaining type information, and printing an object.
void SetOutputScalarTypeToUnsignedChar()
Specify the data type of the output image.
void SetOutputScalarTypeToUnsignedShort()
Specify the data type of the output image.
~vtkPackLabels() override=default
void SortByLabelValue()
Indicate whether to sort the output labels by their input scalars label value (SortByLabelValue),...
void SetOutputScalarTypeToDefault()
Specify the data type of the output image.
vtkIdType GetNumberOfLabels()
Return the number of and list of labels found in the input label map.
unsigned long BackgroundValue
virtual void SetOutputScalarType(int)
Specify the data type of the output image.
vtkSmartPointer< vtkIdTypeArray > LabelsCount
void SetOutputScalarTypeToUnsignedInt()
Specify the data type of the output image.
vtkIdTypeArray * GetLabelsCount()
Return the frequency of occurrence (i.e., the count) of each label returned in the LabelsArray.
SortBy
Flags to control how sorting of the labels is performed.
void SortByLabelCount()
Indicate whether to sort the output labels by their input scalars label value (SortByLabelValue),...
vtkDataArray * GetLabels()
Return the number of and list of labels found in the input label map.
static vtkPackLabels * New()
Standard methods for instantiation, obtaining type information, and printing an object.
DefaultScalarType
Specify the data type of the output image.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
vtkSmartPointer< vtkDataArray > LabelsArray
virtual void SetSortBy(int)
Indicate whether to sort the output labels by their input scalars label value (SortByLabelValue),...
void SetOutputScalarTypeToUnsignedLong()
Specify the data type of the output image.
Hold a reference to a vtkObjectBase instance.
#define vtkDataArray
int vtkIdType
Definition vtkType.h:367
#define VTK_UNSIGNED_INT
Definition vtkType.h:40
#define VTK_UNSIGNED_CHAR
Definition vtkType.h:36
#define VTK_UNSIGNED_SHORT
Definition vtkType.h:38
#define VTK_UNSIGNED_LONG
Definition vtkType.h:42
#define VTK_MARSHALAUTO