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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkGrayscaleGeodesicDilateImageFilter.h,v $
Language: C++
Date: $Date: 2006-03-17 14:22:27 $
Version: $Revision: 1.5 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __itkGrayscaleGeodesicDilateImageFilter_h
#define __itkGrayscaleGeodesicDilateImageFilter_h
#include "itkImageToImageFilter.h"
namespace itk {
/** \class GrayscaleGeodesicDilateImageFilter
* \brief geodesic gray scale dilation of an image
*
* Geodesic dilation operates on a "marker" image and a "mask"
* image. The marker image is dilated using an elementary structuring
* element (neighborhood of radius one using only the face connected
* neighbors). The resulting image is then compared with the mask
* image. The output image is the pixelwise minimum of the dilated
* marker image and the mask image.
*
* Geodesic dilation is run either one iteration or until
* convergence. In the convergence case, the filter is equivalent to
* "reconstruction by dilation". This filter is implemented to handle
* both scenarios. The one iteration case is multi-threaded. The
* convergence case is delegated to another instance of the same
* filter (but configured to run a single iteration).
*
* The marker image must be less than or equal to the mask image
* (on a pixel by pixel basis).
*
* Geodesic morphology is described in Chapter 6 of Pierre Soille's
* book "Morphological Image Analysis: Principles and Applications",
* Second Edition, Springer, 2003.
*
* A noniterative version of this algorithm can be found in the
* ReconstructionByDilationImageFilter. This noniterative solution is
* much faster than the implementation provided here. All ITK filters
* that previously used GrayscaleGeodesicDiliateImageFilter as part of
* their implementation have been converted to use the
* ReconstructionByDilationImageFilter. The
* GrayscaleGeodesicDilateImageFilter is maintained for backward
* compatibility.
*
* \sa MorphologyImageFilter, GrayscaleDilateImageFilter,
* GrayscaleFunctionDilateImageFilter, BinaryDilateImageFilter, ReconstructionByDilationImageFilter
* \ingroup ImageEnhancement MathematicalMorphologyImageFilters
*/
template<class TInputImage, class TOutputImage>
class ITK_EXPORT GrayscaleGeodesicDilateImageFilter :
public ImageToImageFilter<TInputImage, TOutputImage>
{
public:
/** Standard class typedefs. */
typedef GrayscaleGeodesicDilateImageFilter Self;
typedef ImageToImageFilter<TInputImage, TOutputImage>
Superclass;
typedef SmartPointer<Self> Pointer;
typedef SmartPointer<const Self> ConstPointer;
/** Some convenient typedefs. */
typedef TInputImage MarkerImageType;
typedef TInputImage MaskImageType;
typedef TOutputImage OutputImageType;
typedef typename MarkerImageType::Pointer MarkerImagePointer;
typedef typename MarkerImageType::ConstPointer MarkerImageConstPointer;
typedef typename MarkerImageType::RegionType MarkerImageRegionType;
typedef typename MarkerImageType::PixelType MarkerImagePixelType;
typedef typename MaskImageType::Pointer MaskImagePointer;
typedef typename MaskImageType::ConstPointer MaskImageConstPointer;
typedef typename MaskImageType::RegionType MaskImageRegionType;
typedef typename MaskImageType::PixelType MaskImagePixelType;
typedef typename OutputImageType::Pointer OutputImagePointer;
typedef typename OutputImageType::ConstPointer OutputImageConstPointer;
typedef typename OutputImageType::RegionType OutputImageRegionType;
typedef typename OutputImageType::PixelType OutputImagePixelType;
/** ImageDimension constants */
itkStaticConstMacro(MarkerImageDimension, unsigned int,
TInputImage::ImageDimension);
itkStaticConstMacro(MaskImageDimension, unsigned int,
TInputImage::ImageDimension);
itkStaticConstMacro(OutputImageDimension, unsigned int,
TOutputImage::ImageDimension);
/** Standard New method. */
itkNewMacro(Self);
/** Runtime information support. */
itkTypeMacro(GrayscaleGeodesicDilateImageFilter,
ImageToImageFilter);
/** Set/Get the marker image. The marker image must be pixelwise
* less than or equal to the mask image. The marker image the
* image that is dilated by this filter. */
void SetMarkerImage(const MarkerImageType *);
const MarkerImageType* GetMarkerImage();
/** Set/Get the mask image. The mask image is used to "mask" the
* dilated marker image. The mask operation is a pixelwise
* minimum. */
void SetMaskImage(const MaskImageType *);
const MaskImageType* GetMaskImage();
/** Set/Get whether the filter should run one iteration or until
* convergence. When run to convergence, this filter is equivalent
* to "reconstruction by dilation". Default is off. */
itkSetMacro(RunOneIteration, bool);
itkGetMacro(RunOneIteration, bool);
itkBooleanMacro(RunOneIteration);
/** Get the number of iterations used to produce the current
* output. */
itkGetMacro(NumberOfIterationsUsed, unsigned long);
/**
* Set/Get whether the connected components are defined strictly by
* face connectivity or by face+edge+vertex connectivity. Default is
* FullyConnectedOff. For objects that are 1 pixel wide, use
* FullyConnectedOn.
*/
itkSetMacro(FullyConnected, bool);
itkGetConstReferenceMacro(FullyConnected, bool);
itkBooleanMacro(FullyConnected);
#ifdef ITK_USE_CONCEPT_CHECKING
/** Begin concept checking */
itkConceptMacro(SameDimensionCheck,
(Concept::SameDimension<MarkerImageDimension, OutputImageDimension>));
itkConceptMacro(InputComparableCheck,
(Concept::Comparable<MarkerImagePixelType>));
itkConceptMacro(InputConvertibleToOutputCheck,
(Concept::Convertible<MarkerImagePixelType, OutputImagePixelType>));
/** End concept checking */
#endif
protected:
GrayscaleGeodesicDilateImageFilter();
~GrayscaleGeodesicDilateImageFilter() {};
void PrintSelf(std::ostream& os, Indent indent) const;
/** GrayscaleGeodesicDilateImageFilter needs to request enough of the
* marker image to account for the elementary structuring element.
* The mask image does not need to be padded. Depending on whether
* the filter is configured to run a single iteration or until
* convergence, this method may request all of the marker and mask
* image be provided. */
void GenerateInputRequestedRegion();
/** This filter will enlarge the output requested region to produce
* all of the output if the filter is configured to run to
* convergence.
* \sa ProcessObject::EnlargeOutputRequestedRegion() */
void EnlargeOutputRequestedRegion(DataObject *itkNotUsed(output));
/** Single-threaded version of GenerateData. This version is used
* when the filter is configured to run to convergence. This method
* may delegate to the multithreaded version if the filter is
* configured to run a single iteration. Otherwise, it will
* delegate to a separate instance to run each iteration until the
* filter converges. */
void GenerateData();
/** Multi-thread version GenerateData. This version is used when the
* filter is configured to run a single iteration. When the filter
* is configured to run to convergence, the GenerateData() method is
* called. */
void ThreadedGenerateData (const OutputImageRegionType&
outputRegionForThread,
int threadId) ;
private:
GrayscaleGeodesicDilateImageFilter(const Self&); //purposely not implemented
void operator=(const Self&); //purposely not implemented
bool m_RunOneIteration;
unsigned long m_NumberOfIterationsUsed;
bool m_FullyConnected;
} ; // end of class
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
#include "itkGrayscaleGeodesicDilateImageFilter.txx"
#endif
#endif
|