/usr/include/InsightToolkit/Common/itkLineConstIterator.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 | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkLineConstIterator.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 __itkLineConstIterator_txx
#define __itkLineConstIterator_txx
#include "itkLineConstIterator.h"
namespace itk
{
template<class TImage>
LineConstIterator<TImage>
::LineConstIterator(const ImageType *imagePtr, const IndexType &firstIndex, const IndexType &lastIndex)
{
unsigned int i;
m_Image = imagePtr;
m_StartIndex = firstIndex;
m_LastIndex = lastIndex;
IndexType difference;
for (i = 0; i < TImage::ImageDimension; ++i)
{
difference[i] = lastIndex[i] - firstIndex[i];
}
IndexValueType maxDistance = 0;
int maxDistanceDimension = 0;
for (i = 0; i < TImage::ImageDimension; ++i)
{
IndexValueType distance = vnl_math_abs(difference[i]);
if (distance > maxDistance)
{
maxDistance = distance;
maxDistanceDimension = i;
}
m_IncrementError[i] = 2*distance;
m_OverflowIncrement[i] = (difference[i] < 0 ? -1 : 1);
}
m_MainDirection = maxDistanceDimension;
m_MaximalError.Fill(maxDistance);
m_ReduceErrorAfterIncrement.Fill(2*maxDistance);
// Need to set m_EndIndex to be one pixel past the m_LastIndex along
// the bresenham line. THis is tricky to
// do. m_EndIndex[m_MainDirection] is always offset by one from the
// m_LastIndex[m_MainDirection]. The other indices may or may not
// be incremented depending on the accumulated error to that point.
//
// To avoid traversing the line to determine whether the other
// components need to be adjusted, we merely set the main direction
// to be incremented and keep the remaining indices to be same as
// LastIndex. THen in the test for IsAtEnd, we just check the
// MainDirection component of the index.
for (i = 0; i < TImage::ImageDimension; ++i)
{
if (i == m_MainDirection)
{
m_EndIndex[i] = m_LastIndex[i] + m_OverflowIncrement[i];
}
else
{
m_EndIndex[i] = m_LastIndex[i];
}
}
m_Region = m_Image->GetBufferedRegion();
this->GoToBegin();
}
template<class TImage>
LineConstIterator<TImage> &
LineConstIterator<TImage>
::operator=(const Self & it)
{
m_Image = it.m_Image; // copy the smart pointer
m_Region = it.m_Region;
m_IsAtEnd = it.m_IsAtEnd;
m_CurrentImageIndex = it.m_CurrentImageIndex;
m_StartIndex = it.m_StartIndex;
m_LastIndex = it.m_LastIndex;
m_EndIndex = it.m_EndIndex;
m_MainDirection = it.m_MainDirection;
m_AccumulateError = it.m_AccumulateError;
m_IncrementError = it.m_IncrementError;
m_MaximalError = it.m_MaximalError;
m_OverflowIncrement = it.m_OverflowIncrement;
m_ReduceErrorAfterIncrement = it.m_ReduceErrorAfterIncrement;
return *this;
}
template<class TImage>
void
LineConstIterator<TImage>
::GoToBegin()
{
m_CurrentImageIndex = m_StartIndex;
m_AccumulateError.Fill(0);
m_IsAtEnd = (m_StartIndex[m_MainDirection] == m_EndIndex[m_MainDirection]);
}
template<class TImage>
void
LineConstIterator<TImage>
::operator++()
{
// We need to modify m_AccumulateError, m_CurrentImageIndex, m_IsAtEnd
for (unsigned int i = 0; i < TImage::ImageDimension; ++i)
{
if (i == m_MainDirection)
{
m_CurrentImageIndex[i] += m_OverflowIncrement[i];
}
else
{
m_AccumulateError[i] += m_IncrementError[i];
if (m_AccumulateError[i] >= m_MaximalError[i])
{
m_CurrentImageIndex[i] += m_OverflowIncrement[i];
m_AccumulateError[i] -= m_ReduceErrorAfterIncrement[i];
}
}
}
if (m_CurrentImageIndex[m_MainDirection] == m_EndIndex[m_MainDirection])
{
m_IsAtEnd = true;
}
else if( ! m_Region.IsInside( m_CurrentImageIndex ) )
{
// The new index is outside the acceptable region. We can iterate no
// farther, call this the end. NOTE THAT INPUT IS STILL INCREMENTED.
m_IsAtEnd = true;
itkWarningMacro(<<"Line left region; unable to finish tracing it");
}
}
} // end namespace itk
#endif
|