/usr/include/InsightToolkit/Common/itkGaussianOperator.txx is in libinsighttoolkit3-dev 3.20.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkGaussianOperator.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 __itkGaussianOperator_txx
#define __itkGaussianOperator_txx
#include "itkGaussianOperator.h"
#include "itkOutputWindow.h"
#include "itkMacro.h"
namespace itk
{
template<class TPixel,unsigned int VDimension, class TAllocator>
typename GaussianOperator<TPixel,VDimension, TAllocator>
::CoefficientVector
GaussianOperator<TPixel,VDimension, TAllocator>
::GenerateCoefficients()
{
CoefficientVector coeff;
double sum;
int i;
int j;
typename CoefficientVector::iterator it;
const double et = vcl_exp(-m_Variance);
const double cap = 1.0 - m_MaximumError;
// Create the kernel coefficients as a std::vector
sum = 0.0;
coeff.push_back(et * ModifiedBesselI0(m_Variance));
sum += coeff[0];
coeff.push_back(et * ModifiedBesselI1(m_Variance));
sum += coeff[1]* 2.0;
for (i=2; sum < cap; i++)
{
coeff.push_back(et* ModifiedBesselI(i, m_Variance));
sum += coeff[i] *2.0;
if (coeff[i] <= 0.0) break; // failsafe
if (coeff.size() > m_MaximumKernelWidth )
{
itkWarningMacro("Kernel size has exceeded the specified maximum width of "
<< m_MaximumKernelWidth << " and has been truncated to "
<< static_cast<unsigned long>( coeff.size() )
<< " elements. You can raise the maximum width using the SetMaximumKernelWidth method.");
break;
}
}
// Normalize the coefficients so that their sum is one.
for (it = coeff.begin(); it < coeff.end(); ++it)
{
*it /= sum;
}
// Make symmetric
j = static_cast<int>( coeff.size() ) - 1;
coeff.insert(coeff.begin(), j, 0);
for (i=0, it = coeff.end()-1; i < j; --it, ++i)
{
coeff[i] = *it;
}
return coeff;
}
template<class TPixel,unsigned int VDimension, class TAllocator>
double
GaussianOperator<TPixel,VDimension, TAllocator>
::ModifiedBesselI0(double y)
{
const double d = vcl_fabs(y);
double accumulator;
if ( d < 3.75 )
{
double m = y / 3.75;
m *= m;
accumulator = 1.0 + m *(3.5156229+m*(3.0899424+m*(1.2067492
+ m*(0.2659732+m*(0.360768e-1 +m*0.45813e-2)))));
}
else
{
const double m = 3.75 / d;
accumulator =(vcl_exp(d)/vcl_sqrt(d))*(0.39894228+m*(0.1328592e-1
+m*(0.225319e-2+m*(-0.157565e-2+m*(0.916281e-2
+m*(-0.2057706e-1+m*(0.2635537e-1+m*(-0.1647633e-1
+m*0.392377e-2))))))));
}
return accumulator;
}
template<class TPixel,unsigned int VDimension, class TAllocator>
double
GaussianOperator<TPixel,VDimension, TAllocator>
::ModifiedBesselI1(double y)
{
const double d = vcl_fabs(y);
double accumulator;
if ( d < 3.75 )
{
double m = y / 3.75;
m *= m;
accumulator = d*(0.5+m*(0.87890594+m*(0.51498869+m*(0.15084934
+m*(0.2658733e-1+m*(0.301532e-2+m*0.32411e-3))))));
}
else
{
const double m = 3.75 / d;
accumulator = 0.2282967e-1+m*(-0.2895312e-1+m*(0.1787654e-1
-m*0.420059e-2));
accumulator = 0.39894228+m*(-0.3988024e-1+m*(-0.362018e-2
+m*(0.163801e-2+m*(-0.1031555e-1+m*accumulator))));
accumulator *= (vcl_exp(d)/vcl_sqrt(d));
}
if( y<0.0 )
{
return -accumulator;
}
else
{
return accumulator;
}
}
template<class TPixel,unsigned int VDimension, class TAllocator>
double
GaussianOperator<TPixel,VDimension, TAllocator>
::ModifiedBesselI(int n, double y)
{
const double ACCURACY = 40.0;
int j;
double qim, qi, qip, toy;
double accumulator;
if (n<2)
{
throw ExceptionObject(__FILE__, __LINE__, "Order of modified bessel is > 2.", ITK_LOCATION); // placeholder
}
if (y==0.0)
{
return 0.0;
}
else
{
toy = 2.0 / vcl_fabs(y);
qip = accumulator=0.0;
qi = 1.0;
for( j = 2*(n+(int)vcl_sqrt(ACCURACY*n)); j > 0; j-- )
{
qim = qip+j*toy*qi;
qip = qi;
qi = qim;
if (vcl_fabs(qi) > 1.0e10)
{
accumulator *= 1.0e-10;
qi *= 1.0e-10;
qip *= 1.0e-10;
}
if (j==n)
{
accumulator=qip;
}
}
accumulator *= ModifiedBesselI0(y)/qi;
if( y<0.0 && (n&1) )
{
return -accumulator;
}
else
{
return accumulator;
}
}
}
}// end namespace itk
#endif
|