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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkDifferenceImageFilter.txx,v $
Language: C++
Date: $Date: 2006-10-09 12:07:49 $
Version: $Revision: 1.14 $
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 _itkDifferenceImageFilter_txx
#define _itkDifferenceImageFilter_txx
#include "itkDifferenceImageFilter.h"
#include "itkConstNeighborhoodIterator.h"
#include "itkImageRegionConstIterator.h"
#include "itkImageRegionIterator.h"
#include "itkNeighborhoodAlgorithm.h"
#include "itkProgressReporter.h"
#include "itkZeroFluxNeumannBoundaryCondition.h"
namespace itk
{
//----------------------------------------------------------------------------
template <class TInputImage, class TOutputImage>
DifferenceImageFilter<TInputImage, TOutputImage>
::DifferenceImageFilter()
{
// We require two inputs to execute.
this->SetNumberOfRequiredInputs(2);
// Set the default DifferenceThreshold.
m_DifferenceThreshold = NumericTraits<OutputPixelType>::Zero;
// Set the default ToleranceRadius.
m_ToleranceRadius = 0;
// Initialize statistics about difference image.
m_MeanDifference = NumericTraits<RealType>::Zero;
m_TotalDifference = NumericTraits<AccumulateType>::Zero;
m_NumberOfPixelsWithDifferences = 0;
}
//----------------------------------------------------------------------------
template<class TInputImage, class TOutputImage>
void
DifferenceImageFilter<TInputImage, TOutputImage>
::PrintSelf(std::ostream& os, Indent indent) const
{
this->Superclass::PrintSelf(os, indent);
os << indent << "ToleranceRadius: " << m_ToleranceRadius << "\n";
os << indent << "DifferenceThreshold: " << m_DifferenceThreshold << "\n";
os << indent << "MeanDifference: " << m_MeanDifference << "\n";
os << indent << "TotalDifference: " << m_TotalDifference << "\n";
os << indent << "NumberOfPixelsWithDifferences: "
<< m_NumberOfPixelsWithDifferences << "\n";
}
//----------------------------------------------------------------------------
template <class TInputImage, class TOutputImage>
void
DifferenceImageFilter<TInputImage, TOutputImage>
::SetValidInput(const InputImageType* validImage)
{
// The valid image should be input 0.
this->SetInput(0, validImage);
}
//----------------------------------------------------------------------------
template <class TInputImage, class TOutputImage>
void
DifferenceImageFilter<TInputImage, TOutputImage>
::SetTestInput(const InputImageType* testImage)
{
// The test image should be input 1.
this->SetInput(1, testImage);
}
//----------------------------------------------------------------------------
template<class TInputImage, class TOutputImage>
void
DifferenceImageFilter<TInputImage, TOutputImage>
::BeforeThreadedGenerateData()
{
int numberOfThreads = this->GetNumberOfThreads();
// Initialize statistics about difference image.
m_MeanDifference = NumericTraits<RealType>::Zero;
m_TotalDifference = NumericTraits<AccumulateType>::Zero;
m_NumberOfPixelsWithDifferences = 0;
// Resize the thread temporaries
m_ThreadDifferenceSum.SetSize(numberOfThreads);
m_ThreadNumberOfPixels.SetSize(numberOfThreads);
// Initialize the temporaries
m_ThreadDifferenceSum.Fill(NumericTraits<AccumulateType>::Zero);
m_ThreadNumberOfPixels.Fill(0);
}
//----------------------------------------------------------------------------
template <class TInputImage, class TOutputImage>
void
DifferenceImageFilter<TInputImage, TOutputImage>
::ThreadedGenerateData(const OutputImageRegionType &threadRegion, int threadId)
{
typedef ConstNeighborhoodIterator<InputImageType> SmartIterator;
typedef ImageRegionConstIterator<InputImageType> InputIterator;
typedef ImageRegionIterator<OutputImageType> OutputIterator;
typedef NeighborhoodAlgorithm::ImageBoundaryFacesCalculator<InputImageType> FacesCalculator;
typedef typename FacesCalculator::RadiusType RadiusType;
typedef typename FacesCalculator::FaceListType FaceListType;
typedef typename FaceListType::iterator FaceListIterator;
typedef typename InputImageType::PixelType InputPixelType;
// Prepare standard boundary condition.
ZeroFluxNeumannBoundaryCondition<InputImageType> nbc;
// Get a pointer to each image.
const InputImageType* validImage = this->GetInput(0);
const InputImageType* testImage = this->GetInput(1);
OutputImageType* outputPtr = this->GetOutput();
// Create a radius of pixels.
RadiusType radius;
if(m_ToleranceRadius > 0)
{
radius.Fill(m_ToleranceRadius);
}
else
{
radius.Fill(0);
}
// Find the data-set boundary faces.
FacesCalculator boundaryCalculator;
FaceListType faceList = boundaryCalculator(testImage, threadRegion, radius);
// Support progress methods/callbacks.
ProgressReporter progress(this, threadId, threadRegion.GetNumberOfPixels());
// Process the internal face and each of the boundary faces.
for (FaceListIterator face = faceList.begin(); face != faceList.end(); ++face)
{
SmartIterator test(radius, testImage, *face); // Iterate over test image.
InputIterator valid(validImage, *face); // Iterate over valid image.
OutputIterator out(outputPtr, *face); // Iterate over output image.
test.OverrideBoundaryCondition(&nbc);
for(valid.GoToBegin(), test.GoToBegin(), out.GoToBegin();
!valid.IsAtEnd();
++valid, ++test, ++out)
{
// Get the current valid pixel.
InputPixelType t = valid.Get();
// Find the closest-valued pixel in the neighborhood of the test
// image.
OutputPixelType minimumDifference = NumericTraits<OutputPixelType>::max();
unsigned int neighborhoodSize = test.Size();
for (unsigned int i=0; i < neighborhoodSize; ++i)
{
// Use the RealType for the difference to make sure we get the
// sign.
RealType difference = static_cast<RealType>(t) - test.GetPixel(i);
if(NumericTraits<RealType>::IsNegative(difference))
{
difference = -difference;
}
OutputPixelType d = static_cast<OutputPixelType>(difference);
if(d < minimumDifference)
{
minimumDifference = d;
}
}
// Check if difference is above threshold.
if(minimumDifference > m_DifferenceThreshold)
{
// Store the minimum difference value in the output image.
out.Set(minimumDifference);
// Update difference image statistics.
m_ThreadDifferenceSum[threadId] += minimumDifference;
m_ThreadNumberOfPixels[threadId]++;
}
else
{
// Difference is below threshold.
out.Set(NumericTraits<OutputPixelType>::Zero);
}
// Update progress.
progress.CompletedPixel();
}
}
}
//----------------------------------------------------------------------------
template <class TInputImage, class TOutputImage>
void
DifferenceImageFilter<TInputImage, TOutputImage>
::AfterThreadedGenerateData()
{
// Set statistics about difference image.
int numberOfThreads = this->GetNumberOfThreads();
for(int i=0; i < numberOfThreads; ++i)
{
m_TotalDifference += m_ThreadDifferenceSum[i];
m_NumberOfPixelsWithDifferences += m_ThreadNumberOfPixels[i];
}
// Get the total number of pixels processed in the region.
// This is different from the m_TotalNumberOfPixels which
// is the number of pixels that actually have differences
// above the intensity threshold.
OutputImageRegionType region = this->GetOutput()->GetRequestedRegion();
AccumulateType numberOfPixels = region.GetNumberOfPixels();
// Calculate the mean difference.
m_MeanDifference = m_TotalDifference / numberOfPixels;
}
} // end namespace itk
#endif
|