ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLabelOverlapMeasuresImageFilter.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 itkLabelOverlapMeasuresImageFilter_h
19#define itkLabelOverlapMeasuresImageFilter_h
20
21#include "itkImageSink.h"
22#include "itkNumericTraits.h"
23#include <mutex>
24#include <unordered_map>
25
26namespace itk
27{
28
42template <typename TLabelImage>
43class ITK_TEMPLATE_EXPORT LabelOverlapMeasuresImageFilter : public ImageSink<TLabelImage>
44{
45public:
46 ITK_DISALLOW_COPY_AND_MOVE(LabelOverlapMeasuresImageFilter);
47
53
55 itkNewMacro(Self);
56
58 itkOverrideGetNameOfClassMacro(LabelOverlapMeasuresImageFilter);
59
61 using LabelImageType = TLabelImage;
62 using LabelImagePointer = typename TLabelImage::Pointer;
63 using LabelImageConstPointer = typename TLabelImage::ConstPointer;
64
65 using RegionType = typename TLabelImage::RegionType;
66 using SizeType = typename TLabelImage::SizeType;
67 using IndexType = typename TLabelImage::IndexType;
68
69 using LabelType = typename TLabelImage::PixelType;
70
73
90
92 using MapType = std::unordered_map<LabelType, LabelSetMeasures>;
93 using MapIterator = typename MapType::iterator;
94 using MapConstIterator = typename MapType::const_iterator;
95
97 static constexpr unsigned int ImageDimension = TLabelImage::ImageDimension;
98
106
108 MapType
110 {
111 return this->m_LabelSetMeasures;
112 }
113
114 // Overlap agreement metrics
115
119
122
129 {
130 return this->GetUnionOverlap();
131 }
132
139 {
140 return this->GetUnionOverlap(label);
141 }
142
149 {
150 return this->GetMeanOverlap();
151 }
152
159 {
160 return this->GetMeanOverlap(label);
161 }
162
166
169
170 // Overlap error metrics
171
175
178
182
185
189
192
193 itkConceptMacro(Input1HasNumericTraitsCheck, (Concept::HasNumericTraits<LabelType>));
194
195protected:
198
201
202 void
203 PrintSelf(std::ostream & os, Indent indent) const override;
204
205 void
207
208 void
210
211 void
212 MergeMap(MapType & m1, MapType & m2) const;
213
214private:
216
217 std::mutex m_Mutex{};
218}; // end of class
219
220} // end namespace itk
221
222#ifndef ITK_MANUAL_INSTANTIATION
223# include "itkLabelOverlapMeasuresImageFilter.hxx"
224#endif
225
226#endif
Control indentation during Print() invocation.
Definition itkIndent.h:50
typename TLabelImage::ConstPointer LabelImageConstPointer
typename NumericTraits< LabelType >::RealType RealType
itkSetInputMacro(SourceImage, LabelImageType)
RealType GetUnionOverlap(LabelType) const
itkSetInputMacro(TargetImage, LabelImageType)
RealType GetFalsePositiveError(LabelType) const
RealType GetFalseDiscoveryRate(LabelType) const
RealType GetVolumeSimilarity(LabelType) const
RealType GetMeanOverlap(LabelType) const
void ThreadedStreamedGenerateData(const RegionType &) override
RealType GetTargetOverlap(LabelType) const
~LabelOverlapMeasuresImageFilter() override=default
typename NumericTraits< LabelType >::PrintType PrintType
itkGetInputMacro(SourceImage, LabelImageType)
void PrintSelf(std::ostream &os, Indent indent) const override
RealType GetFalseNegativeError(LabelType) const
itkGetInputMacro(TargetImage, LabelImageType)
std::unordered_map< LabelType, LabelSetMeasures > MapType
void MergeMap(MapType &m1, MapType &m2) const
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86