Loading [MathJax]/jax/output/HTML-CSS/config.js
ITK 6.0.0
Insight Toolkit
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Loading...
Searching...
No Matches
itkMRFImageFilter.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 itkMRFImageFilter_h
19#define itkMRFImageFilter_h
20
21#include "vnl/vnl_vector.h"
22#include "vnl/vnl_matrix.h"
23
25
27
30#include "itkSize.h"
31#include "ITKMarkovRandomFieldsClassifiersExport.h"
32
33namespace itk
34{
40{
41public:
47 enum class MRFStop : uint8_t
48 {
51 };
52};
53
54// Define how to print enumeration
55extern ITKMarkovRandomFieldsClassifiers_EXPORT std::ostream &
56 operator<<(std::ostream & out, const MRFImageFilterEnums::MRFStop value);
147template <typename TInputImage, typename TClassifiedImage>
148class ITK_TEMPLATE_EXPORT MRFImageFilter : public ImageToImageFilter<TInputImage, TClassifiedImage>
149{
150public:
151 ITK_DISALLOW_COPY_AND_MOVE(MRFImageFilter);
152
158 using typename Superclass::OutputImagePointer;
159
161 itkNewMacro(Self);
162
164 itkOverrideGetNameOfClassMacro(MRFImageFilter);
165
167 using InputImageType = TInputImage;
168 using InputImagePointer = typename TInputImage::Pointer;
169 using InputImageConstPointer = typename TInputImage::ConstPointer;
170
172 using InputImagePixelType = typename TInputImage::PixelType;
173
175 using InputImageRegionType = typename TInputImage::RegionType;
176
180
182 static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
183
185 using TrainingImagePointer = typename TClassifiedImage::Pointer;
186
188 using TrainingImagePixelType = typename TClassifiedImage::PixelType;
189
192 using LabelledImagePointer = typename TClassifiedImage::Pointer;
193
196 using LabelledImagePixelType = typename TClassifiedImage::PixelType;
197
200 using LabelledImageRegionType = typename TClassifiedImage::RegionType;
201
203 using LabelledImageIndexType = typename TClassifiedImage::IndexType;
204 using IndexValueType = typename LabelledImageIndexType::IndexValueType;
205
207 using LabelledImageOffsetType = typename TClassifiedImage::OffsetType;
208
211
213 static constexpr unsigned int ClassifiedImageDimension = TClassifiedImage::ImageDimension;
214
217
219 using SizeType = typename TInputImage::SizeType;
220
222 using NeighborhoodRadiusType = typename TInputImage::SizeType;
223
226
228
230
232
233 using InputImageFaceListIterator = typename InputImageFaceListType::iterator;
234
237
239
241
243
244 using LabelledImageFaceListIterator = typename LabelledImageFaceListType::iterator;
245
247 void
248 SetClassifier(typename ClassifierType::Pointer ptrToClassifier);
249
252 itkSetMacro(NumberOfClasses, unsigned int);
253 itkGetConstMacro(NumberOfClasses, unsigned int);
258 itkSetMacro(MaximumNumberOfIterations, unsigned int);
259 itkGetConstMacro(MaximumNumberOfIterations, unsigned int);
264 itkSetMacro(ErrorTolerance, double);
265 itkGetConstMacro(ErrorTolerance, double);
270 itkSetMacro(SmoothingFactor, double);
271 itkGetConstMacro(SmoothingFactor, double);
274 void
276
281 void
283
284 void
286
290 {
292
293 for (int i = 0; i < InputImageDimension; ++i)
294 {
295 radius[i] = m_InputImageNeighborhoodRadius[i];
296 }
297 return radius;
298 }
299
305 virtual void
306 SetMRFNeighborhoodWeight(std::vector<double> betaMatrix);
307
308 virtual std::vector<double>
313
315#if !defined(ITK_LEGACY_REMOVE)
317 // We need to expose the enum values at the class level
318 // for backwards compatibility
319 static constexpr MRFStopEnum MaximumNumberOfIterations = MRFStopEnum::MaximumNumberOfIterations;
320 static constexpr MRFStopEnum ErrorTolerance = MRFStopEnum::ErrorTolerance;
321#endif
322
325 itkGetConstReferenceMacro(StopCondition, MRFStopEnum);
326
327 /* Get macro for number of iterations */
328 itkGetConstReferenceMacro(NumberOfIterations, unsigned int);
329
330 itkConceptMacro(UnsignedIntConvertibleToClassifiedCheck,
332 itkConceptMacro(ClassifiedConvertibleToUnsignedIntCheck,
334 itkConceptMacro(ClassifiedConvertibleToIntCheck, (Concept::Convertible<LabelledImagePixelType, int>));
335 itkConceptMacro(IntConvertibleToClassifiedCheck, (Concept::Convertible<int, LabelledImagePixelType>));
337
338protected:
340 ~MRFImageFilter() override = default;
341 void
342 PrintSelf(std::ostream & os, Indent indent) const override;
343
345 void
347
350 virtual void
352
354 virtual void
356
362
365
367 virtual void
370 LabelStatusImageNeighborhoodIterator & labelStatusIter);
371
372 void
373 GenerateData() override;
374
375 void
377
378 void
380
381 void
383
384private:
385 using InputImageSizeType = typename TInputImage::SizeType;
386
388
390
392
393 using LabelStatusImageFaceListIterator = typename LabelStatusImageFaceListType::iterator;
394
398
399 unsigned int m_NumberOfClasses{ 0 };
400 unsigned int m_MaximumNumberOfIterations{ 50 };
401 unsigned int m_KernelSize{};
402
407 double m_ErrorTolerance{ 0.2 };
408 double m_SmoothingFactor{ 1 };
409 double * m_ClassProbability{ nullptr }; // Class likelihood
410 unsigned int m_NumberOfIterations{ 0 };
411 MRFStopEnum m_StopCondition{ MRFStopEnum::MaximumNumberOfIterations };
412
414
415 std::vector<double> m_MRFNeighborhoodWeight{};
416 std::vector<double> m_NeighborInfluence{};
417 std::vector<double> m_MahalanobisDistance{};
418 std::vector<double> m_DummyVector{};
419
422
426 virtual void
428
430 void
432}; // class MRFImageFilter
433} // namespace itk
434
435#ifndef ITK_MANUAL_INSTANTIATION
436# include "itkMRFImageFilter.hxx"
437#endif
438
439#endif
Const version of NeighborhoodIterator, defining iteration of a local N-dimensional neighborhood of pi...
Base class for all data objects in ITK.
Base class for the ImageClassifierBase object.
A multi-dimensional iterator templated over image type that walks a region of pixels.
A multi-dimensional iterator templated over image type that walks a region of pixels.
typename OutputImageType::Pointer OutputImagePointer
Templated n-dimensional image class.
Definition itkImage.h:89
ImageRegion< VImageDimension > RegionType
Control indentation during Print() invocation.
Definition itkIndent.h:50
Contains all enum classes in MRFImageFilter class;.
ImageRegionIterator< TClassifiedImage > LabelledImageRegionIterator
std::vector< double > m_MRFNeighborhoodWeight
ImageRegionConstIterator< TInputImage > InputImageRegionConstIterator
virtual void SetMRFNeighborhoodWeight(std::vector< double > betaMatrix)
NeighborhoodIterator< LabelStatusImageType > LabelStatusImageNeighborhoodIterator
LabelledImageNeighborhoodRadiusType m_LabelledImageNeighborhoodRadius
ImageToImageFilter< TInputImage, TClassifiedImage > Superclass
typename TClassifiedImage::OffsetType LabelledImageOffsetType
SmartPointer< Self > Pointer
typename LabelledImageIndexType::IndexValueType IndexValueType
void GenerateData() override
virtual void DoNeighborhoodOperation(const InputImageNeighborhoodIterator &imageIter, LabelledImageNeighborhoodIterator &labelledIter, LabelStatusImageNeighborhoodIterator &labelStatusIter)
ClassifierType::Pointer m_ClassifierPtr
unsigned int m_MaximumNumberOfIterations
void SetNeighborhoodRadius(const SizeValueType)
ImageRegionIterator< TInputImage > InputImageRegionIterator
typename InputImageNeighborhoodIterator::RadiusType InputImageNeighborhoodRadiusType
void SetClassifier(typename ClassifierType::Pointer ptrToClassifier)
std::vector< double > m_MahalanobisDistance
typename TInputImage::RegionType InputImageRegionType
typename TClassifiedImage::Pointer TrainingImagePointer
void SetNeighborhoodRadius(const NeighborhoodRadiusType &)
LabelStatusImagePointer m_LabelStatusImage
LabelStatusImageNeighborhoodRadiusType m_LabelStatusImageNeighborhoodRadius
void GenerateOutputInformation() override
typename InputImageFacesCalculator::FaceListType InputImageFaceListType
typename TInputImage::SizeType SizeType
ImageRegionIterator< LabelStatusImageType > LabelStatusImageIterator
InputImageNeighborhoodRadiusType m_InputImageNeighborhoodRadius
unsigned int m_NumberOfIterations
virtual void MinimizeFunctional()
const NeighborhoodRadiusType GetNeighborhoodRadius() const
typename TInputImage::ConstPointer InputImageConstPointer
NeighborhoodAlgorithm::ImageBoundaryFacesCalculator< TClassifiedImage > LabelledImageFacesCalculator
static constexpr unsigned int ClassifiedImageDimension
typename InputImageFaceListType::iterator InputImageFaceListIterator
typename LabelStatusImageType::RegionType LabelStatusRegionType
virtual void SetDefaultMRFNeighborhoodWeight()
typename TInputImage::SizeType InputImageSizeType
SmartPointer< const Self > ConstPointer
void GenerateInputRequestedRegion() override
Image< int, Self::InputImageDimension > LabelStatusImageType
typename TClassifiedImage::PixelType LabelledImagePixelType
typename TInputImage::SizeType NeighborhoodRadiusType
NeighborhoodAlgorithm::ImageBoundaryFacesCalculator< TInputImage > InputImageFacesCalculator
void PrintSelf(std::ostream &os, Indent indent) const override
static constexpr unsigned int InputImageDimension
NeighborhoodAlgorithm::ImageBoundaryFacesCalculator< LabelStatusImageType > LabelStatusImageFacesCalculator
typename LabelStatusImageFacesCalculator::FaceListType LabelStatusImageFaceListType
NeighborhoodIterator< TClassifiedImage > LabelledImageNeighborhoodIterator
void SetNeighborhoodRadius(const SizeValueType *radiusArray)
typename TClassifiedImage::IndexType LabelledImageIndexType
~MRFImageFilter() override=default
typename TInputImage::Pointer InputImagePointer
typename TClassifiedImage::Pointer LabelledImagePointer
unsigned int m_NumberOfClasses
typename TClassifiedImage::RegionType LabelledImageRegionType
MRFImageFilterEnums::MRFStop MRFStopEnum
std::vector< double > m_DummyVector
typename TClassifiedImage::PixelType TrainingImagePixelType
typename LabelledImageFaceListType::iterator LabelledImageFaceListIterator
void EnlargeOutputRequestedRegion(DataObject *) override
typename TInputImage::PixelType InputImagePixelType
virtual void ApplyMRFImageFilter()
typename LabelStatusImageFaceListType::iterator LabelStatusImageFaceListIterator
typename LabelStatusImageNeighborhoodIterator::RadiusType LabelStatusImageNeighborhoodRadiusType
typename LabelStatusImageType::IndexType LabelStatusIndexType
ImageClassifierBase< TInputImage, TClassifiedImage > ClassifierType
typename LabelledImageFacesCalculator::FaceListType LabelledImageFaceListType
std::vector< double > m_NeighborInfluence
typename LabelStatusImageType::Pointer LabelStatusImagePointer
typename LabelledImageNeighborhoodIterator::RadiusType LabelledImageNeighborhoodRadiusType
ConstNeighborhoodIterator< TInputImage > InputImageNeighborhoodIterator
virtual std::vector< double > GetMRFNeighborhoodWeight()
Defines iteration of a local N-dimensional neighborhood of pixels across an itk::Image.
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
ITKCommon_EXPORT std::ostream & operator<<(std::ostream &out, typename AnatomicalOrientation::CoordinateEnum value)
Splits an image into a main region and several "face" regions which are used to handle computations o...