ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLabelGeometryImageFilter.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 itkLabelGeometryImageFilter_h
19#define itkLabelGeometryImageFilter_h
20
22#include "itkNumericTraits.h"
23#include "itkArray.h"
25#include <map>
26#include <vector>
27#include "vnl/algo/vnl_symmetric_eigensystem.h"
28#include "vnl/vnl_det.h"
29#include "itkMath.h"
30
31namespace itk
32{
80template <typename TLabelImage, typename TIntensityImage = TLabelImage>
81class ITK_TEMPLATE_EXPORT
82#if !defined(ITK_LEGACY_SILENT)
83 [[deprecated("This class contains known computational bugs. See class documentation for details.")]]
84#endif
85 LabelGeometryImageFilter : public ImageToImageFilter<TLabelImage, TIntensityImage>
86{
87public:
88 ITK_DISALLOW_COPY_AND_MOVE(LabelGeometryImageFilter);
89
95
97 itkNewMacro(Self);
98
100 itkOverrideGetNameOfClassMacro(LabelGeometryImageFilter);
101
103 using IntensityImageType = TIntensityImage;
104 using InputImagePointer = typename TIntensityImage::Pointer;
105 using RegionType = typename TIntensityImage::RegionType;
106 using SizeType = typename TIntensityImage::SizeType;
107 using IndexType = typename TIntensityImage::IndexType;
108 using PixelType = typename TIntensityImage::PixelType;
109
111 using LabelImageType = TLabelImage;
112 using LabelImagePointer = typename TLabelImage::Pointer;
113 using LabelRegionType = typename TLabelImage::RegionType;
114 using LabelSizeType = typename TLabelImage::SizeType;
115 using LabelIndexType = typename TLabelImage::IndexType;
116 using LabelPixelType = typename TLabelImage::PixelType;
117 using LabelPointType = typename TLabelImage::PointType;
118
120 static constexpr unsigned int ImageDimension = TLabelImage::ImageDimension;
121
124
127
130
134
135 // using BoundingBoxVerticesType = itk::FixedArray<
136 // LabelPointType,std::pow(2.0,Self::ImageDimension)>;
137 using BoundingBoxVerticesType = std::vector<LabelPointType>;
138
141
144
146 using LabelsType = std::vector<LabelPixelType>;
147
149 using LabelIndicesType = std::vector<LabelIndexType>;
150
152 using VectorType = std::vector<double>;
153
155 using MatrixType = vnl_matrix<double>;
156
162 {
163 public:
164 // default constructor
166 {
167 // initialized to the default values
168 this->m_Label = 0;
169 this->m_Sum = RealType{};
170
171 const unsigned int imageDimension = Self::ImageDimension;
172
173 // m_BoundingBox.resize(imageDimension*2);
174 for (unsigned int i = 0; i < imageDimension * 2; i += 2)
175 {
178 }
179
181 m_BoundingBoxSize.Fill(0);
182 m_PixelIndices.clear();
183 m_Centroid.Fill(0);
184 m_WeightedCentroid.Fill(0);
189 m_Eigenvalues.clear();
191 m_Eigenvectors.fill(0);
192 m_AxesLength.Fill(0);
193 m_Eccentricity = 1;
194 m_Elongation = 1;
195 m_Orientation = 0;
196 LabelPointType emptyPoint{};
197 unsigned int numberOfVertices = 1 << ImageDimension;
198 m_OrientedBoundingBoxVertices.resize(numberOfVertices, emptyPoint);
201 m_OrientedLabelImage = LabelImageType::New();
202 m_OrientedIntensityImage = IntensityImageType::New();
205 m_RotationMatrix.fill(0.0);
206
209 for (unsigned int i = 0; i < ImageDimension; ++i)
210 {
211 for (unsigned int j = 0; j < ImageDimension; ++j)
212 {
213 m_SecondOrderRawMoments(i, j) = 0;
215 }
216 }
217 }
218
243 typename LabelImageType::Pointer m_OrientedLabelImage;
244 typename IntensityImageType::Pointer m_OrientedIntensityImage;
247 };
248
250 // Map from the label to the class storing all of the geometry information.
251 using MapType = std::map<LabelPixelType, LabelGeometry>;
252 using MapIterator = typename std::map<LabelPixelType, LabelGeometry>::iterator;
253 using MapConstIterator = typename std::map<LabelPixelType, LabelGeometry>::const_iterator;
254
255 // Macros for enabling the calculation of additional features.
256 itkGetMacro(CalculatePixelIndices, bool);
257 itkBooleanMacro(CalculatePixelIndices);
258 void
259 SetCalculatePixelIndices(const bool value)
260 {
261 // CalculateOrientedBoundingBox, CalculateOrientedLabelImage, and
262 // CalculateOrientedIntensityImage all need CalculatePixelIndices to be
263 // turned
264 // on if they are turned on. So, CalculatePixelIndices cannot be
265 // turned off if any of these flags are turned on.
266 if (value == false)
267 {
270 {
271 // We cannot change the value, so return.
272 return;
273 }
274 }
275
276 if (this->m_CalculatePixelIndices != value)
277 {
278 this->m_CalculatePixelIndices = value;
279 this->Modified();
280 }
281 }
282
283 itkGetMacro(CalculateOrientedBoundingBox, bool);
284 itkBooleanMacro(CalculateOrientedBoundingBox);
285 void
287 {
288 if (this->m_CalculateOrientedBoundingBox != value)
289 {
290 this->m_CalculateOrientedBoundingBox = value;
291 this->Modified();
292 }
293
294 // CalculateOrientedBoundingBox needs
295 // CalculatePixelIndices to be turned on.
296 if (value)
297 {
298 this->SetCalculatePixelIndices(true);
299 }
300 }
301
302 itkGetMacro(CalculateOrientedLabelRegions, bool);
303 itkBooleanMacro(CalculateOrientedLabelRegions);
304 void
306 {
307 if (this->m_CalculateOrientedLabelRegions != value)
308 {
310 this->Modified();
311
312 // CalculateOrientedLabelImage needs
313 // CalculateOrientedBoundingBox to be turned on.
314 if (value)
315 {
317 }
318 }
319 }
320
321 itkGetMacro(CalculateOrientedIntensityRegions, bool);
322 itkBooleanMacro(CalculateOrientedIntensityRegions);
323 void
325 {
326 if (this->m_CalculateOrientedIntensityRegions != value)
327 {
329 this->Modified();
330
331 // CalculateOrientedIntensityImage needs
332 // CalculateOrientedBoundingBox to be turned on.
333 if (value)
334 {
336 }
337 }
338 }
339
341 void
342 SetIntensityInput(const TIntensityImage * input)
343 {
344 // Process object is not const-correct so the const casting is required.
345 this->SetNthInput(1, const_cast<TIntensityImage *>(input));
346 }
347
349 const TIntensityImage *
351 {
352 return static_cast<TIntensityImage *>(const_cast<DataObject *>(this->ProcessObject::GetInput(1)));
353 }
354
357 bool
359 {
360 return m_LabelGeometryMapper.find(label) != m_LabelGeometryMapper.end();
361 }
362
366 {
367 return m_LabelGeometryMapper.size();
368 }
369
372 {
373 return this->GetNumberOfObjects();
374 }
375
377 std::vector<LabelPixelType>
378 GetLabels() const
379 {
380 return m_AllLabels;
381 }
382
384 LabelIndicesType
386
391
395
399
403
407
411
415
420
425
429
434
438
444
448
452
461
465
469
473
478
482
484 TLabelImage *
486
489 TIntensityImage *
491
492 itkConceptMacro(InputHasNumericTraitsCheck, (Concept::HasNumericTraits<PixelType>));
493
494protected:
496 ~LabelGeometryImageFilter() override = default;
497 void
498 PrintSelf(std::ostream & os, Indent indent) const override;
499
500 void
501 GenerateData() override;
502
503private:
504 bool
505 CalculateOrientedBoundingBoxVertices(vnl_symmetric_eigensystem<double> eig, LabelGeometry & m_LabelGeometry);
506
511
515}; // end of class
516
517} // end namespace itk
518
519#ifndef ITK_MANUAL_INSTANTIATION
520# include "itkLabelGeometryImageFilter.hxx"
521#endif
522
523#endif
Base class for all data objects in ITK.
SmartPointer< Self > Pointer
Simulate a standard C array with copy semantics.
Control indentation during Print() invocation.
Definition itkIndent.h:50
FixedArray< float, Self::ImageDimension > m_AxesLength
typename TLabelImage::RegionType LabelRegionType
void SetCalculateOrientedIntensityRegions(const bool value)
RealType GetMajorAxisLength(LabelPixelType label) const
const TIntensityImage * GetIntensityInput() const
RealType GetElongation(LabelPixelType label) const
SmartPointer< const Self > ConstPointer
typename std::map< LabelPixelType, LabelGeometry >::iterator MapIterator
LabelSizeType GetBoundingBoxSize(LabelPixelType label) const
VectorType GetEigenvalues(LabelPixelType label) const
typename TLabelImage::SizeType LabelSizeType
typename TIntensityImage::SizeType SizeType
typename TIntensityImage::Pointer InputImagePointer
typename DataObject::Pointer DataObjectPointer
ImageToImageFilter< TLabelImage, TIntensityImage > Superclass
RealType GetEccentricity(LabelPixelType label) const
SimpleDataObjectDecorator< RealType > RealObjectType
void SetCalculateOrientedBoundingBox(const bool value)
itk::FixedArray< typename LabelIndexType::IndexValueType, Self::ImageDimension > IndexArrayType
typename TIntensityImage::PixelType PixelType
typename TLabelImage::Pointer LabelImagePointer
LabelPointType GetCentroid(LabelPixelType label) const
void PrintSelf(std::ostream &os, Indent indent) const override
BoundingBoxVerticesType GetOrientedBoundingBoxVertices(LabelPixelType label) const
std::vector< LabelPixelType > LabelsType
LabelIndicesType GetPixelIndices(LabelPixelType label) const
typename TLabelImage::PixelType LabelPixelType
bool CalculateOrientedBoundingBoxVertices(vnl_symmetric_eigensystem< double > eig, LabelGeometry &m_LabelGeometry)
std::vector< LabelPixelType > GetLabels() const
std::vector< LabelPointType > BoundingBoxVerticesType
RealType GetIntegratedIntensity(LabelPixelType label) const
SizeValueType GetVolume(LabelPixelType label) const
MatrixType GetRotationMatrix(LabelPixelType label) const
AxesLengthType GetAxesLength(LabelPixelType label) const
typename TIntensityImage::IndexType IndexType
itk::FixedArray< float, Self::ImageDimension *2 > BoundingBoxFloatType
RealType GetBoundingBoxVolume(LabelPixelType label) const
TLabelImage * GetOrientedLabelImage(LabelPixelType label) const
bool HasLabel(LabelPixelType label) const
LabelPointType GetWeightedCentroid(LabelPixelType label) const
itk::FixedArray< typename LabelIndexType::IndexValueType, Self::ImageDimension *2 > BoundingBoxType
TIntensityImage * GetOrientedIntensityImage(LabelPixelType label) const
typename TIntensityImage::RegionType RegionType
RealType GetOrientedBoundingBoxVolume(LabelPixelType label) const
RealType GetMinorAxisLength(LabelPixelType label) const
MatrixType GetEigenvectors(LabelPixelType label) const
itk::FixedArray< RealType, Self::ImageDimension > AxesLengthType
BoundingBoxType GetBoundingBox(LabelPixelType label) const
typename TLabelImage::PointType LabelPointType
static constexpr unsigned int ImageDimension
LabelPointType GetOrientedBoundingBoxSize(LabelPixelType label) const
std::vector< LabelIndexType > LabelIndicesType
typename TLabelImage::IndexType LabelIndexType
typename std::map< LabelPixelType, LabelGeometry >::const_iterator MapConstIterator
std::map< LabelPixelType, LabelGeometry > MapType
void SetIntensityInput(const TIntensityImage *input)
~LabelGeometryImageFilter() override=default
LabelPointType GetOrientedBoundingBoxOrigin(LabelPixelType label) const
void SetCalculateOrientedLabelRegions(const bool value)
RealType GetOrientation(LabelPixelType label) const
typename NumericTraits< PixelType >::RealType RealType
RegionType GetRegion(LabelPixelType label) const
static constexpr T NonpositiveMin()
static constexpr T max(const T &)
virtual void Modified() const
virtual void SetNthInput(DataObjectPointerArraySizeType idx, DataObject *input)
DataObject * GetInput(const DataObjectIdentifierType &key)
Return an input.
Decorates any "simple" data type (data types without smart pointers) with a DataObject API.
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