1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
/*=========================================================================
*
* Copyright UMC Utrecht and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#ifndef itkErodeMaskImageFilter_h
#define itkErodeMaskImageFilter_h
#include "itkImageToImageFilter.h"
#include "itkMultiResolutionPyramidImageFilter.h"
namespace itk
{
/**
* \class ErodeMaskImageFilter
*
* This filter computes the Erosion of a mask image.
* It makes only sense for masks used in a multiresolution registration procedure.
*
* The input to this filter is a scalar-valued itk::Image of arbitrary
* dimension. The output is a scalar-valued itk::Image, of the same type
* as the input image. This restriction is not really necessary,
* but easier for coding.
*
* If IsMovingMask == false:\n
* If more resolution levels are used, the image is subsampled. Before
* subsampling the image is smoothed with a Gaussian filter, with variance
* (schedule/2)^2. The 'schedule' depends on the resolution level.
* The 'radius' of the convolution filter is roughly twice the standard deviation.
* Thus, the parts in the edge with size 'radius' are influenced by the background.\n
* --> <tt>radius = static_cast<unsigned long>( schedule + 1 );</tt>
*
* If IsMovingMask == true:\n
* Same story as before. Now the size the of the eroding element is doubled.
* This is because the gradient of the moving image is used for calculating
* the derivative of the metric.\n
* --> <tt>radius = static_cast<unsigned long>( 2 * schedule + 1 );</tt>
*
*
* \sa ParabolicErodeImageFilter
*
**/
template <class TImage>
class ITK_TEMPLATE_EXPORT ErodeMaskImageFilter : public ImageToImageFilter<TImage, TImage>
{
public:
ITK_DISALLOW_COPY_AND_MOVE(ErodeMaskImageFilter);
/** Standard ITK stuff. */
using Self = ErodeMaskImageFilter;
using Superclass = ImageToImageFilter<TImage, TImage>;
using Pointer = SmartPointer<Self>;
using ConstPointer = SmartPointer<const Self>;
/** Run-time type information (and related methods). */
itkTypeMacro(ErodeMaskImageFilter, ImageToImageFilter);
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Typedefs. */
using InputImageType = TImage;
using OutputImageType = TImage;
using InputImagePointer = typename InputImageType::Pointer;
using OutputImagePointer = typename OutputImageType::Pointer;
using InputPixelType = typename InputImageType::PixelType;
using OutputPixelType = typename OutputImageType::PixelType;
/** Dimensionality of the two images is assumed to be the same. */
itkStaticConstMacro(InputImageDimension, unsigned int, InputImageType::ImageDimension);
itkStaticConstMacro(OutputImageDimension, unsigned int, OutputImageType::ImageDimension);
itkStaticConstMacro(ImageDimension, unsigned int, OutputImageType::ImageDimension);
/** Define the schedule type. */
using ImagePyramidFilterType = MultiResolutionPyramidImageFilter<InputImageType, OutputImageType>;
using ScheduleType = typename ImagePyramidFilterType::ScheduleType;
/** Set/Get the pyramid schedule used to downsample the image whose
* mask is the input of the ErodeMaskImageFilter
* Default: filled with ones, one resolution.
*/
virtual void
SetSchedule(const ScheduleType & schedule)
{
this->m_Schedule = schedule;
this->Modified();
}
itkGetConstReferenceMacro(Schedule, ScheduleType);
/** Set/Get whether the mask serves as a 'moving mask' in the registration
* Moving masks are eroded with a slightly larger kernel, because the
* derivative is usually taken on the moving image.
* Default: false
*/
itkSetMacro(IsMovingMask, bool);
itkGetConstMacro(IsMovingMask, bool);
/** Set the resolution level of the registration. Default: 0. */
itkSetMacro(ResolutionLevel, unsigned int);
itkGetConstMacro(ResolutionLevel, unsigned int);
#ifdef ITK_USE_CONCEPT_CHECKING
/** Begin concept checking */
itkConceptMacro(SameDimensionCheck, (Concept::SameDimension<InputImageDimension, OutputImageDimension>));
/** End concept checking */
#endif
protected:
/** Constructor. */
ErodeMaskImageFilter() = default;
/** Destructor */
~ErodeMaskImageFilter() override = default;
/** Standard pipeline method. While this class does not implement a
* ThreadedGenerateData(), its GenerateData() delegates all
* calculations to the ParabolicErodeImageFilter, which is multi-threaded.
*/
void
GenerateData() override;
private:
bool m_IsMovingMask{ false };
unsigned int m_ResolutionLevel{ 0 };
ScheduleType m_Schedule{ 1, InputImageDimension, 1u };
};
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
# include "itkErodeMaskImageFilter.hxx"
#endif
#endif
|