ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkProgressAccumulator.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18#ifndef itkProgressAccumulator_h
19#define itkProgressAccumulator_h
20
21#include "itkCommand.h"
22#include "itkProcessObject.h"
23#include <vector>
24
25namespace itk
26{
40class ITKCommon_EXPORT ProgressAccumulator : public Object
41{
42public:
48
52
54 itkNewMacro(Self);
55
57 itkOverrideGetNameOfClassMacro(ProgressAccumulator);
58
60 itkGetConstMacro(AccumulatedProgress, float);
61
63 itkSetObjectMacro(MiniPipelineFilter, ProcessObject);
64
66 itkGetModifiableObjectMacro(MiniPipelineFilter, ProcessObject);
67
81 void
83
87 void
89
96#if !defined(ITK_LEGACY_REMOVE)
97 void
98 ResetProgress();
99#endif
100
113#if !defined(ITK_LEGACY_REMOVE)
114 void
115 ResetFilterProgressAndKeepAccumulatedProgress();
116#endif
117
118protected:
121 void
122 PrintSelf(std::ostream & os, Indent indent) const override;
123
124private:
128
131 {
132 // Pointer to the filter
134
135 // The weight of the filter in total progress of the mini-pipeline
136 float Weight;
137
138 // The tags for adding/removing observers to mini-pipeline filter
139 unsigned long ProgressObserverTag;
140 unsigned long StartObserverTag;
141
143 };
144
146 void
147 ReportProgress(Object * who, const EventObject & event);
148
151
153 using FilterRecordVector = std::vector<struct FilterRecord>;
154
157
160
166
169};
170} // End namespace itk
171
172#endif // itkProgressAccumulator_h_
Abstraction of the Events used to communicating among filters and with GUIs.
Control indentation during Print() invocation.
Definition itkIndent.h:50
A Command subclass that calls a pointer to a member function.
Definition itkCommand.h:87
SmartPointer< Self > Pointer
Definition itkCommand.h:98
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
SmartPointer< Self > Pointer
~ProgressAccumulator() override
GenericFilterType::Pointer GenericFilterPointer
SmartPointer< const Self > ConstPointer
void RegisterInternalFilter(GenericFilterType *filter, float weight)
std::vector< struct FilterRecord > FilterRecordVector
MemberCommand< Self > CommandType
GenericFilterPointer m_MiniPipelineFilter
void ReportProgress(Object *who, const EventObject &event)
void PrintSelf(std::ostream &os, Indent indent) const override
CommandType::Pointer CommandPointer
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....