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 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkBinaryMorphologyImageFilter.h,v $
Language: C++
Date: $Date: 2007-09-12 09:20:29 $
Version: $Revision: 1.4 $
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 __itkBinaryMorphologyImageFilter_h
#define __itkBinaryMorphologyImageFilter_h
#include <vector>
#include <queue>
#include "itkImageToImageFilter.h"
#include "itkImage.h"
#include "itkNumericTraits.h"
#include "itkNeighborhoodIterator.h"
#include "itkConstNeighborhoodIterator.h"
#include "itkNeighborhood.h"
#include "itkImageBoundaryCondition.h"
#include "itkImageRegionIterator.h"
#include "itkConceptChecking.h"
namespace itk
{
/**
* \class BinaryMorphologyImageFilter
* \brief Base class for fast binary dilation and erosion
*
* BinaryMorphologyImageFilter is a base class for fast binary
* morphological operations. The implementation of this class and its
* subclasses are based on the papers:
*
* L.Vincent "Morphological transformations of binary images with
* arbitrary structuring elements", and
*
* N.Nikopoulos et al. "An efficient algorithm for 3d binary
* morphological transformations with 3d structuring elements
* for arbitrary size and shape". IEEE Transactions on Image
* Processing. Vol. 9. No. 3. 2000. pp. 283-286.
*
* Gray scale images can be processed as binary images by selecting a
* "ForegroundValued" (which subclasses may alias as "DilateValue" or
* "ErodeValue"). Pixel not matching the foreground value are
* considered "background". This is useful in processing segmented
* images where all pixels in segment #1 have value 1 and pixels in
* segment #2 have value 2, etc. A particular "segment number" can be
* processed. ForegroundValue defaults to the maximum possible value
* of the PixelType.
*
* The structuring element is assumed to be composed of binary values
* (zero or one). Only elements of the structuring element having
* values > 0 are candidates for affecting the center pixel. A
* reasonable choice of structuring element is
* itk::BinaryBallStructuringElement.
*
*
* Description of the algorithm:
* ----------------------------------------------
* Let's consider the set of the ON elements of the input image as X.
*
* Let's consider the structuring element as B = {B0, B1, ..., Bn},
* where Bi denotes a connected component of B.
*
* Let's consider bi, i in [0,n], an arbitrary point of Bi.
*
* We use hence the next property in order to compute minkoswki
* addition ( which will be written (+) ):
*
* X (+) B = ( Xb0 UNION Xb1 UNION ... Xbn ) UNION ( BORDER(X) (+) B ),
*
* where Xbi is the set X translated with respect to vector bi :
*
* Xbi ={ x + bi, x belongs to X }
*
* where BORDER(X) is the extracted border of X ( 8 connectivity in
* 2D, 26 in 3D )
*
* Our implementation for dilation is defined as:
*
* X (+) SYM(B) = DILATION(X)_B
*
* Where DILATION(X)_B is the dilation of set with structuring element B.
* Where SYM(B) is the symmetric of the structuring element relatively
* to its center.
*
* This code was contributed by Jerome Schmid from the University of
* Strasbourg who provided a fast dilation implementation. Gaetan
* Lehmann from INRA de Jouy-en-Josas then provided a fast erosion
* implementaton based on Jerome's implementation. The common
* portions of these two implementations were then placed in this
* superclass.
*
* \sa ImageToImageFilter BinaryErodeImageFilter BinaryDilateImageFilter
*/
template <class TInputImage, class TOutputImage, class TKernel>
class ITK_EXPORT BinaryMorphologyImageFilter :
public ImageToImageFilter< TInputImage, TOutputImage >
{
public:
/** Extract dimension from input and output image. */
itkStaticConstMacro(InputImageDimension, unsigned int,
TInputImage::ImageDimension);
itkStaticConstMacro(OutputImageDimension, unsigned int,
TOutputImage::ImageDimension);
/** Extract the dimension of the kernel */
itkStaticConstMacro(KernelDimension, unsigned int,
TKernel::NeighborhoodDimension);
/** Convenient typedefs for simplifying declarations. */
typedef TInputImage InputImageType;
typedef TOutputImage OutputImageType;
/** Standard class typedefs. */
typedef BinaryMorphologyImageFilter Self;
typedef ImageToImageFilter< InputImageType, OutputImageType> Superclass;
typedef SmartPointer<Self> Pointer;
typedef SmartPointer<const Self> ConstPointer;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(BinaryMorphologyImageFilter, ImageToImageFilter);
/** Kernel typedef. */
typedef TKernel KernelType;
/** Kernel (structuring element) iterator. */
typedef typename KernelType::ConstIterator KernelIteratorType;
/** Image typedef support. */
typedef typename InputImageType::PixelType InputPixelType;
typedef typename OutputImageType::PixelType OutputPixelType;
typedef typename NumericTraits<InputPixelType>::RealType InputRealType;
typedef typename InputImageType::OffsetType OffsetType;
typedef typename InputImageType::IndexType IndexType;
typedef typename InputImageType::RegionType InputImageRegionType;
typedef typename OutputImageType::RegionType OutputImageRegionType;
typedef typename InputImageType::SizeType InputSizeType;
/** Input and output images must be the same dimension. */
itkConceptMacro(ImageDimensionCheck,
(Concept::SameDimension<itkGetStaticConstMacro(InputImageDimension),
itkGetStaticConstMacro(OutputImageDimension)>));
// Cannot get this to work with gcc compiler
#if 0
/** Input and structuring element must be the same dimnesion. */
itkConceptMacro(KernelDimensionCheck,
(Concept::SameDimension<itkGetStaticConstMacro(KernelDimension),
itkGetStaticConstMacro(InputImageDimension)>));
#endif
/** Set kernel (structuring element).*/
void SetKernel( const KernelType& kernel );
/** Get the kernel (structuring element). */
itkGetConstReferenceMacro(Kernel, KernelType);
/** Set the value in the image to consider as "foreground". Defaults to
* maximum value of PixelType. Subclasses may alias this to
* DilateValue or ErodeValue.*/
itkSetMacro(ForegroundValue, InputPixelType);
/** Get the value in the image considered as "foreground". Defaults to
* maximum value of PixelType. */
itkGetConstMacro(ForegroundValue, InputPixelType);
/** Set the value used as "background". Any pixel value which is
* not DilateValue is considered background. BackgroundValue is used
* to fill the removed pixels.
*/
itkSetMacro(BackgroundValue, OutputPixelType);
/** Get the value used as "background". Any pixel value which is
* not DilateValue is considered background. BackgroundValue is used
* to fill the removed pixels.
*/
itkGetConstMacro(BackgroundValue, OutputPixelType);
/** Get/Set the borders as foreground (true) or background (false).
*/
itkSetMacro(BoundaryToForeground, bool);
itkGetConstReferenceMacro(BoundaryToForeground, bool);
itkBooleanMacro(BoundaryToForeground);
protected:
BinaryMorphologyImageFilter();
virtual ~BinaryMorphologyImageFilter(){}
void PrintSelf(std::ostream& os, Indent indent) const;
/**
* Analyze kernel and prepare data for GenerateData() function
*/
void AnalyzeKernel();
/**
* BinaryMorphologyImageFilter needs to request enough of
* an input image to account for the structuring element and
* connectivity element size. The input requested region is
* expanded by the maximum of the radius of the structuring element
* and the radius used to determine connectivity (typically one).
* If the request extends past the LargestPossibleRegion for the
* input, the request is cropped by the LargestPossibleRegion. */
void GenerateInputRequestedRegion() throw (InvalidRequestedRegionError);
// type definition of container of neighbourhood index
typedef std::vector< OffsetType > NeighborIndexContainer;
// type definition of container of container of neighbourhood index
typedef std::vector<NeighborIndexContainer> NeighborIndexContainerContainer;
// type definition of the container for indices
typedef std::vector< OffsetType > ComponentVectorType;
// iterator for ComponentVectorType
typedef typename ComponentVectorType::const_iterator
ComponentVectorConstIterator;
/**
* Get the difference set for a particular offset
*/
NeighborIndexContainer& GetDifferenceSet(unsigned int code)
{ return m_KernelDifferenceSets[code]; }
/**
* Get an iterator to the start of the connected component vector
*/
ComponentVectorConstIterator KernelCCVectorBegin()
{ return m_KernelCCVector.begin(); }
/**
* Get an iterator to the end of the connected component vector
*/
ComponentVectorConstIterator KernelCCVectorEnd()
{ return m_KernelCCVector.end(); }
/**
* Get the connectivity radius
*/
InputSizeType GetRadius() const
{ return m_Radius; }
bool m_BoundaryToForeground;
private:
BinaryMorphologyImageFilter(const Self&); //purposely not implemented
void operator=(const Self&); //purposely not implemented
/** radius of neighborhood used in order to define connectivity
* neighborhood */
InputSizeType m_Radius;
/** kernel or structuring element to use. */
KernelType m_Kernel;
/** Pixel value to dilate */
InputPixelType m_ForegroundValue;
/** Pixel value for background */
OutputPixelType m_BackgroundValue;
// Difference sets definition
NeighborIndexContainerContainer m_KernelDifferenceSets;
// For each Connected Component ( CC ) of structuring element we
// store the position of one element, arbitrary chosen, which
// belongs to the CC
std::vector< OffsetType > m_KernelCCVector;
};
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
#include "itkBinaryMorphologyImageFilter.txx"
#endif
#endif
|