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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkOptNoiseImageFilter.txx
Language: C++
Date: $Date$
Version: $Revision$
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 __itkOptNoiseImageFilter_txx
#define __itkOptNoiseImageFilter_txx
#include "itkNoiseImageFilter.h"
#include "itkConstNeighborhoodIterator.h"
#include "itkNeighborhoodInnerProduct.h"
#include "itkImageRegionIterator.h"
#include "itkNeighborhoodAlgorithm.h"
#include "itkZeroFluxNeumannBoundaryCondition.h"
#include "itkOffset.h"
#include "itkProgressReporter.h"
namespace itk
{
template <class TInputImage, class TOutputImage>
NoiseImageFilter<TInputImage, TOutputImage>
::NoiseImageFilter()
{
}
template< class TInputImage, class TOutputImage>
void
NoiseImageFilter< TInputImage, TOutputImage>
::ThreadedGenerateData(const OutputImageRegionType& outputRegionForThread,
int threadId)
{
unsigned int i;
ZeroFluxNeumannBoundaryCondition<InputImageType> nbc;
ConstNeighborhoodIterator<InputImageType> bit;
ImageRegionIterator<OutputImageType> it;
// Allocate output
typename OutputImageType::Pointer output = this->GetOutput();
typename InputImageType::ConstPointer input = this->GetInput();
// Find the data-set boundary "faces"
typename NeighborhoodAlgorithm::ImageBoundaryFacesCalculator<InputImageType>::FaceListType faceList;
NeighborhoodAlgorithm::ImageBoundaryFacesCalculator<InputImageType> bC;
faceList = bC(input, outputRegionForThread, this->GetRadius());
typename NeighborhoodAlgorithm::ImageBoundaryFacesCalculator<InputImageType>::FaceListType::iterator fit;
// support progress methods/callbacks
ProgressReporter progress(this, threadId, outputRegionForThread.GetNumberOfPixels());
InputRealType value;
InputRealType sum;
InputRealType sumOfSquares;
InputRealType var;
InputRealType num;
// Process each of the boundary faces. These are N-d regions which border
// the edge of the buffer.
for (fit=faceList.begin(); fit != faceList.end(); ++fit)
{
bit = ConstNeighborhoodIterator<InputImageType>(this->GetRadius(),
input, *fit);
unsigned int neighborhoodSize = bit.Size();
num = static_cast<InputRealType>( bit.Size() );
it = ImageRegionIterator<OutputImageType>(output, *fit);
bit.OverrideBoundaryCondition(&nbc);
bit.GoToBegin();
while ( ! bit.IsAtEnd() )
{
sum = NumericTraits<InputRealType>::Zero;
sumOfSquares = NumericTraits<InputRealType>::Zero;
for (i = 0; i < neighborhoodSize; ++i)
{
value = static_cast<InputRealType>( bit.GetPixel(i) );
sum += value;
sumOfSquares += (value*value);
}
// calculate the standard deviation value
var = (sumOfSquares - (sum*sum/num)) / (num - 1.0);
it.Set( static_cast<OutputPixelType>(vcl_sqrt(var)) );
++bit;
++it;
progress.CompletedPixel();
}
}
}
} // end namespace itk
#endif
|