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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkObjectMorphologyImageFilter.txx,v $
Language: C++
Date: $Date: 2006-03-19 04:36:56 $
Version: $Revision: 1.15 $
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 __itkObjectMorphologyImageFilter_txx
#define __itkObjectMorphologyImageFilter_txx
#include <limits.h>
#include "itkConstantBoundaryCondition.h"
#include "itkNumericTraits.h"
#include "itkObjectMorphologyImageFilter.h"
#include "itkNeighborhoodAlgorithm.h"
#include "itkProgressReporter.h"
#include "itkImageRegionConstIterator.h"
namespace itk {
template<class TInputImage, class TOutputImage, class TKernel>
ObjectMorphologyImageFilter<TInputImage, TOutputImage, TKernel>
::ObjectMorphologyImageFilter()
: m_Kernel()
{
m_DefaultBoundaryCondition.SetConstant( NumericTraits<PixelType>::Zero );
m_BoundaryCondition = &m_DefaultBoundaryCondition;
m_UseBoundaryCondition = false;
m_ObjectValue = NumericTraits<PixelType>::One;
//this->SetNumberOfThreads(1);
}
template <class TInputImage, class TOutputImage, class TKernel>
void
ObjectMorphologyImageFilter<TInputImage, TOutputImage, TKernel>
::GenerateInputRequestedRegion()
{
// call the superclass' implementation of this method
Superclass::GenerateInputRequestedRegion();
// get pointers to the input and output
typename Superclass::InputImagePointer inputPtr =
const_cast< TInputImage * >( this->GetInput() );
if ( !inputPtr )
{
return;
}
// get a copy of the input requested region (should equal the output
// requested region)
typename TInputImage::RegionType inputRequestedRegion;
inputRequestedRegion = inputPtr->GetRequestedRegion();
// pad the input requested region by the operator radius
inputRequestedRegion.PadByRadius( m_Kernel.GetRadius() );
// crop the input requested region at the input's largest possible region
if ( inputRequestedRegion.Crop(inputPtr->GetLargestPossibleRegion()) )
{
inputPtr->SetRequestedRegion( inputRequestedRegion );
return;
}
else
{
// Couldn't crop the region (requested region is outside the largest
// possible region). Throw an exception.
// store what we tried to request (prior to trying to crop)
inputPtr->SetRequestedRegion( inputRequestedRegion );
// build an exception
InvalidRequestedRegionError e(__FILE__, __LINE__);
e.SetLocation(ITK_LOCATION);
e.SetDescription("Requested region is outside largest possible region.");
e.SetDataObject(inputPtr);
throw e;
}
}
template<class TInputImage, class TOutputImage, class TKernel>
void
ObjectMorphologyImageFilter<TInputImage, TOutputImage, TKernel>
::BeforeThreadedGenerateData()
{
if(m_ObjectValue == 0)
{
this->GetOutput()->FillBuffer(1);
}
else
{
this->GetOutput()->FillBuffer(0);
}
}
template<class TInputImage, class TOutputImage, class TKernel>
void
ObjectMorphologyImageFilter<TInputImage, TOutputImage, TKernel>
::ThreadedGenerateData(const OutputImageRegionType& outputRegionForThread,
int threadId)
{
ImageRegionConstIterator<TInputImage> iRegIter;
ImageRegionIterator<TOutputImage> oRegIter;
iRegIter = ImageRegionConstIterator<InputImageType>(this->GetInput(),
outputRegionForThread);
oRegIter = ImageRegionIterator<OutputImageType>(this->GetOutput(),
outputRegionForThread);
/* Copy the input image to the output image - then only boundary pixels
* need to be changed in the output image */
iRegIter.GoToBegin();
oRegIter.GoToBegin();
while(!oRegIter.IsAtEnd())
{
if(oRegIter.Get()!=m_ObjectValue)
{
oRegIter.Set(iRegIter.Get());
}
++oRegIter;
++iRegIter;
}
// Find the boundary "faces"
typename NeighborhoodAlgorithm::ImageBoundaryFacesCalculator<InputImageType>
::FaceListType faceList;
NeighborhoodAlgorithm::ImageBoundaryFacesCalculator<InputImageType> fC;
faceList = fC(this->GetInput(), outputRegionForThread, m_Kernel.GetRadius());
typename NeighborhoodAlgorithm::ImageBoundaryFacesCalculator<InputImageType>
::FaceListType::iterator fit;
// Setup the kernel that spans the immediate neighbors of the current
// input pixel - used to determine if that pixel abuts a non-object
// pixel, i.e., is a boundary pixel
RadiusType bKernelSize;
bKernelSize.Fill(1);
ProgressReporter progress(this, threadId,
outputRegionForThread.GetNumberOfPixels());
OutputNeighborhoodIteratorType oSNIter;
InputNeighborhoodIteratorType iSNIter;
for (fit = faceList.begin(); fit != faceList.end(); ++fit)
{
oSNIter = OutputNeighborhoodIteratorType(m_Kernel.GetRadius(),
this->GetOutput(), *fit);
oSNIter.OverrideBoundaryCondition(m_BoundaryCondition);
oSNIter.GoToBegin();
iSNIter = InputNeighborhoodIteratorType(bKernelSize,
this->GetInput(), *fit);
iSNIter.OverrideBoundaryCondition(m_BoundaryCondition);
iSNIter.GoToBegin();
while ( ! iSNIter.IsAtEnd() )
{
if (iSNIter.GetCenterPixel() == m_ObjectValue)
{
if(this->IsObjectPixelOnBoundary(iSNIter))
{
this->Evaluate(oSNIter, m_Kernel);
}
}
++iSNIter;
++oSNIter;
progress.CompletedPixel();
}
}
}
// Use neighborhood iter to determine if pixel touches a non-object pixel
template<class TInputImage, class TOutputImage, class TKernel>
bool
ObjectMorphologyImageFilter<TInputImage, TOutputImage, TKernel>
::IsObjectPixelOnBoundary(const InputNeighborhoodIteratorType &iNIter)
{
static const unsigned int s =
(unsigned int)vcl_pow((double)3.0,
(double)(ImageDimension));
PixelType tf;
unsigned int i;
bool isInside = true;
if(m_UseBoundaryCondition)
{
for(i=0; i<s; i++)
{
tf = iNIter.GetPixel(i);
if(tf != m_ObjectValue)
{
return true;
}
}
}
else
{
for(i=0; i<s; i++)
{
tf = iNIter.GetPixel(i, isInside);
if(tf != m_ObjectValue && isInside)
{
return true;
}
}
}
return false;
}
template<class TInputImage, class TOutputImage, class TKernel>
void
ObjectMorphologyImageFilter<TInputImage, TOutputImage, TKernel>
::PrintSelf(std::ostream &os, Indent indent) const
{
Superclass::PrintSelf(os, indent);
os << indent << "Boundary condition: "
<< typeid( *m_BoundaryCondition ).name() << std::endl;
os << indent << "Use boundary condition: "
<< m_UseBoundaryCondition << std::endl;
os << indent << "ObjectValue: " << m_ObjectValue << std::endl;
os << indent << "Kernel: " << m_Kernel << std::endl;
}
}// end namespace itk
#endif
|