18#ifndef itkMRIBiasFieldCorrectionFilter_h
19#define itkMRIBiasFieldCorrectionFilter_h
50template <
typename TImage,
typename TImageMask,
typename TBiasField>
225template <
typename TInputImage,
typename TOutputImage,
typename TMaskImage>
310#if defined(ITK_LEGACY_REMOVE)
325 itkSetMacro(BiasFieldMultiplicative,
bool);
326 itkGetConstMacro(BiasFieldMultiplicative,
bool);
327 itkBooleanMacro(BiasFieldMultiplicative);
330#if defined(ITK_LEGACY_REMOVE)
344 itkSetMacro(UsingInterSliceIntensityCorrection,
bool);
345 itkGetConstMacro(UsingInterSliceIntensityCorrection,
bool);
346 itkBooleanMacro(UsingInterSliceIntensityCorrection);
355 itkSetMacro(UsingSlabIdentification,
bool);
356 itkGetConstMacro(UsingSlabIdentification,
bool);
357 itkBooleanMacro(UsingSlabIdentification);
363 itkSetMacro(SlabNumberOfSamples,
unsigned int);
364 itkGetConstReferenceMacro(SlabNumberOfSamples,
unsigned int);
366 itkSetMacro(SlabTolerance,
double);
367 itkGetConstReferenceMacro(SlabTolerance,
double);
375 itkSetMacro(UsingBiasFieldCorrection,
bool);
376 itkGetConstMacro(UsingBiasFieldCorrection,
bool);
377 itkBooleanMacro(UsingBiasFieldCorrection);
383 itkSetMacro(GeneratingOutput,
bool);
384 itkGetConstMacro(GeneratingOutput,
bool);
385 itkBooleanMacro(GeneratingOutput);
391 itkSetMacro(SlicingDirection,
int);
392 itkGetConstMacro(SlicingDirection,
int);
397 itkSetMacro(BiasFieldDegree,
int);
398 itkGetConstMacro(BiasFieldDegree,
int);
413 BiasFieldType::CoefficientArrayType
428 itkSetMacro(VolumeCorrectionMaximumIteration,
int);
429 itkGetConstMacro(VolumeCorrectionMaximumIteration,
int);
435 itkSetMacro(InterSliceCorrectionMaximumIteration,
int);
436 itkGetConstMacro(InterSliceCorrectionMaximumIteration,
int);
441 itkSetMacro(OptimizerInitialRadius,
double);
442 itkGetConstMacro(OptimizerInitialRadius,
double);
447 itkSetMacro(OptimizerGrowthFactor,
double);
448 itkGetConstMacro(OptimizerGrowthFactor,
double);
453 itkSetMacro(OptimizerShrinkFactor,
double);
454 itkGetConstMacro(OptimizerShrinkFactor,
double);
467 itkGetConstMacro(NumberOfLevels,
unsigned int);
551 template <
typename TSource,
typename TTarget>
553 CopyAndConvertImage(
const TSource * source, TTarget * target,
typename TTarget::RegionType requestedRegion)
557 using TargetPixelType =
typename TTarget::PixelType;
559 SourceIterator s_iter(source, requestedRegion);
560 TargetIterator t_iter(target, requestedRegion);
564 while (!s_iter.IsAtEnd())
566 t_iter.Set(
static_cast<TargetPixelType
>(s_iter.Get()));
662#ifndef ITK_MANUAL_INSTANTIATION
663# include "itkMRIBiasFieldCorrectionFilter.hxx"
Array2D class representing a 2D array.
Array class with size defined at construction time.
Multiple valley shaped curve function.
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.
Templated n-dimensional image class.
ImageRegion< VImageDimension > RegionType
SmartPointer< Self > Pointer
Control indentation during Print() invocation.
Identifies slabs in MR images comparing minimum intensity averages.
std::vector< ImageRegionType > SlabRegionVectorType
Represents a cost function for MRI bias field correction optimization.
typename ImageType::IndexType ImageIndexType
CompositeValleyFunction InternalEnergyFunction
SamplingFactorType m_SamplingFactor
static constexpr unsigned int SpaceDimension
void SetSamplingFactors(const SamplingFactorType factor)
Superclass::DerivativeType DerivativeType
void GetDerivative(const ParametersType ¶meters, DerivativeType &derivative) const override
unsigned int[SpaceDimension] SamplingFactorType
SmartPointer< const Self > ConstPointer
SmartPointer< Self > Pointer
std::unique_ptr< InternalEnergyFunction > m_InternalEnergyFunction
~MRIBiasEnergyFunction() override=default
unsigned int GetNumberOfParameters() const override
void InitializeDistributions(Array< double > classMeans, Array< double > classSigmas)
typename ImageType::PixelType ImageElementType
typename ImageType::RegionType ImageRegionType
Superclass::MeasureType MeasureType
MRIBiasEnergyFunction Self
SingleValuedCostFunction Superclass
double GetEnergy0(double diff)
Superclass::ParametersType ParametersType
typename MaskType::PixelType MaskElementType
BiasFieldType * m_BiasField
void SetBiasField(BiasFieldType *bias)
MeasureType GetValue(const ParametersType ¶meters) const override
typename ImageType::Pointer ImagePointer
typename MaskType::Pointer MaskPointer
void SetNumberOfLevels(unsigned int num)
NormalVariateGeneratorType::Pointer m_NormalVariateGenerator
ImageToImageFilter< TInputImage, TOutputImage > Superclass
MRIBiasFieldCorrectionFilter()
Array< double > m_TissueClassMeans
void GenerateData() override
typename TOutputImage::IndexType OutputImageIndexType
EnergyFunctionPointer m_EnergyFunction
void SetStartingShrinkFactors(unsigned int factor)
ImageMaskPointer m_InputMask
Statistics::NormalVariateGenerator NormalVariateGeneratorType
MRASlabIdentifier< InputImageType > MRASlabIdentifierType
typename TInputImage::Pointer InputImagePointer
typename TInputImage::IndexType InputImageIndexType
void SetInitialBiasFieldCoefficients(const BiasFieldType::CoefficientArrayType &coefficients)
void CorrectImage(BiasFieldType &bias, InputImageRegionType region)
Array< double > m_TissueClassSigmas
void GetBiasFieldSize(InputImageRegionType region, BiasFieldType::DomainSizeType &biasSize)
static bool IsScheduleDownwardDivisible(const ScheduleType &schedule)
Array2D< unsigned int > ScheduleType
const unsigned int * GetStartingShrinkFactors() const
bool CheckMaskImage(ImageMaskType *mask)
void SetOutputMask(ImageMaskType *outputMask)
typename InternalImageType::PixelType InternalImagePixelType
Image< float, Self::ImageDimension > InternalImageType
ImageMaskPointer m_OutputMask
BiasFieldType EstimateBiasField(InputImageRegionType region, unsigned int degree, int maximumIteration)
typename ImageMaskType::Pointer ImageMaskPointer
MRIBiasEnergyFunction< InternalImageType, ImageMaskType, BiasFieldType > EnergyFunctionType
static constexpr unsigned int ImageDimension
void PrintSelf(std::ostream &os, Indent indent) const override
TOutputImage OutputImageType
OnePlusOneEvolutionaryOptimizer OptimizerType
typename TOutputImage::PixelType OutputImagePixelType
void SetSchedule(const ScheduleType &schedule)
BiasFieldType::CoefficientArrayType GetEstimatedBiasFieldCoefficients()
InputImagePixelType m_SlabBackgroundMinimumThreshold
typename MRASlabIdentifierType::SlabRegionVectorType SlabRegionVectorType
typename ImageMaskType::RegionType ImageMaskRegionType
typename TInputImage::SizeType InputImageSizeType
void CorrectInterSliceIntensityInhomogeneity(InputImageRegionType region)
double m_OptimizerGrowthFactor
bool m_BiasFieldMultiplicative
typename TOutputImage::SizeType OutputImageSizeType
unsigned int m_SlabNumberOfSamples
void ExpImage(InternalImageType *source, InternalImageType *target)
MRIBiasFieldCorrectionFilter Self
typename InternalImageType::Pointer InternalImagePointer
typename TInputImage::PixelType InputImagePixelType
TInputImage InputImageType
MultivariateLegendrePolynomial BiasFieldType
typename InternalImageType::RegionType InternalImageRegionType
SlabRegionVectorType m_Slabs
SmartPointer< Self > Pointer
SmartPointer< const Self > ConstPointer
bool m_UsingSlabIdentification
void AdjustSlabRegions(SlabRegionVectorType &slabs, OutputImageRegionType requestedRegion)
bool m_UsingBiasFieldCorrection
double m_OptimizerInitialRadius
int m_InterSliceCorrectionMaximumIteration
bool IsBiasFieldMultiplicative()
double m_OptimizerShrinkFactor
typename TOutputImage::Pointer OutputImagePointer
typename SlabRegionVectorType::iterator SlabRegionVectorIteratorType
typename TOutputImage::RegionType OutputImageRegionType
void IsBiasFieldMultiplicative(bool flag)
BiasFieldType::CoefficientArrayType m_EstimatedBiasFieldCoefficients
unsigned int m_NumberOfLevels
void SetStartingShrinkFactors(const unsigned int *factors)
BiasFieldType::CoefficientArrayType m_BiasFieldCoefficients
void CopyAndConvertImage(const TSource *source, TTarget *target, typename TTarget::RegionType requestedRegion)
int m_VolumeCorrectionMaximumIteration
~MRIBiasFieldCorrectionFilter() override=default
typename EnergyFunctionType::Pointer EnergyFunctionPointer
void Log1PImage(InternalImageType *source, InternalImageType *target)
bool m_UsingInterSliceIntensityCorrection
InternalImagePointer m_InternalInput
void SetInputMask(ImageMaskType *inputMask)
void SetTissueClassStatistics(const Array< double > &means, const Array< double > &sigmas)
typename TInputImage::RegionType InputImageRegionType
2D and 3D multivariate Legendre Polynomial
ULongArrayType DomainSizeType
DoubleArrayType CoefficientArrayType
virtual void Modified() const
1+1 evolutionary strategy optimizer
A region represents some portion or piece of data.
Array< ParametersValueType > DerivativeType
SingleValuedCostFunction()=default
Superclass::ParametersType ParametersType
Implements transparent reference counting.
Normal random variate generator.
SmartPointer< Self > Pointer
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....